body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
form p:last-of-type {
    margin: 0;
}
.site-header {
    background: #000;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a img {
    height: 50px;
}
.logo a{
font-size: 20px;
    font-weight: bold;
    color: #ff6600;

    text-decoration: unset;
    display: flex;
    align-items: center;
}
.footer-logo a {
font-size: 20px;
    font-weight: bold;
    color: #ff6600;
    text-decoration: unset;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.main-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.main-menu a:hover {
    color: #ff6600;
}

.burger {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}
.burger .icon {
    width: 24px;
    height: 24px;
    color: #fff;
}

.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    padding: 10px 0;
    list-style: none;
    min-width: 180px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 100;
        text-align: center;

    display: flex;
    flex-direction: column;
    gap: 0;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.main-menu .sub-menu li {
    padding: 0;
    margin: 0;
}

.main-menu .sub-menu a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}

.main-menu .sub-menu a:hover {
    background: #ff6600;
    color: #fff;
}


.main-menu li:hover > .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.main-menu li {
    position: relative;
	margin-bottom: 15px;
}

.burger .icon {
    width: 28px;
    height: 28px;
    color: #ff6600;
}


@media (max-width: 768px) {
    .site-header .main-menu {
        position: fixed;
        top: 0;
        left: -100%; 
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #111;
        box-shadow: 2px 0 10px rgba(0,0,0,0.6);
        padding: 60px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        flex-direction: column;
    }

    .site-header .main-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .site-header .main-menu li {
        margin: 0;
    }

    .site-header .main-menu a {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        display: block;
        padding: 10px 0;
        transition: color 0.3s;
    }

    .site-header .main-menu a:hover {
        color: #fff;
    }

    /* Активное состояние (открыто) */
    .site-header .main-menu.active {
        left: 0;
    }
    .burger {
        display: block;
        z-index: 1100;
    }
}

.site-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    text-align: center;
	    flex-direction: column;
}

.site-footer {
    background: #000;
    color: #777;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #222;
}

.custom-hero {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.custom-hero-container {
    display: flex;
    justify-content: center;
    align-items: start;
    text-align: start;
    min-height: 500px;
    padding: 60px 20px;
    flex-direction: column;
}

.custom-hero-content {
    padding: 40px 20px;
    width: 50%;
    text-align: left;
}
.custom-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 20px;
    background: #00000059;
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 25px 35px;

}
.hero {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
section .container {
	    flex-direction: column;
}
.hero .container {
    display: flex;
    justify-content: center;
    align-items: start;
    text-align: start;
    min-height: 500px;
    padding: 60px 20px;
}
.hero-content {
    padding: 40px 20px;
    width: 50%;
    text-align: left;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 800px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ff6600;
    color: #000;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.hero-btn:hover {
    background: #e65c00;
}
@media (max-width: 768px) {
        .custom-hero-content, .hero-content {
        padding: unset;
        width: 100%;
        text-align: center;
    }
    .site-content {
        padding: unset;
    }
}
.team {
    max-width: 1440px;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;
}

.team-title {
    font-size: 36px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: #111;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

.team-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}

.team-name {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 16px;
    color: #ccc;
}


@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-title {
        font-size: 28px;
    }
}

.blog {
    max-width: 1440px;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;
}

.blog-title {
    font-size: 36px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: #111;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

.blog-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.blog-name a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-name a:hover {
    color: #ff6600;
}

.blog-excerpt {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #ff6600;
    color: #000;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    align-self: flex-start;
}

.blog-btn:hover {
    background: #e65c00;
}
.single-post .site-main a {
	color: #ff6600;
	text-decoration: none;
}
.single-post .site-main a:hover {
	color: #e65c00;
}
    
.reviews {
  max-width: 1440px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.reviews-title {
  font-size: 36px;
  font-weight: 800;
  color: #ff6600;
  margin-bottom: 50px;
}

/* Slick wrapper */
section.reviews {
    width: 100%;
    box-sizing: border-box;
}
section.reviews .container {
    width: 100%;
    box-sizing: border-box;
}
.reviews-slider {
    width: 100%;
    box-sizing: border-box;
}
.reviews-slider {
  max-width: 1330px;
  margin: 0 auto;
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex !important;   
  align-items: stretch;
}

.slick-slide {
  height: auto !important;    
  display: flex !important;
  justify-content: center;  
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #ff6600;
  background: transparent;
  border: none;
  font-size: 45px;
  cursor: pointer;
  transition: 0.3s;
}

.slick-prev { left: -60px; }
.slick-next { right: -60px; }

.slick-prev:hover,
.slick-next:hover {
  color: #e65c00;
}
@media (max-width:1366px) {
    .slick-next {
    right: -40px;
    }
        .slick-prev {
    left: -40px;
    }
}

.review-card {
  width: 100%;        
  box-sizing: border-box;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 15px;       
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}


.review-photo {
  width: fit-content;
  margin: 0 auto 20px;
}
.review-photo img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff6600;
}

.review-rating {
  margin-bottom: 15px;
}
.star {
  font-size: 20px;
  color: #777;
  margin: 0 2px;
}
.star.filled {
  color: #ff6600;
}


.review-text {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}


.review-meta {
  font-size: 14px;
  color: #777;
}
.review-name {
  font-weight: bold;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}
.review-date {
  font-size: 13px;
  color: #999;
}

@media (max-width: 1024px) {
  .reviews-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .slick-prev { left: -40px; }
  .slick-next { right: -40px; }
}
@media (max-width: 768px) {
  .reviews {
    padding: 20px 10px;
  }
  .review-card {
    margin: 10px;      
  }
  .slick-prev,
  .slick-next {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
    .reviews .container {
        max-width: 100%;
        padding: 0 10px;
    }
    .reviews-slider,
    .slick-list {
        width: 100%;
        max-width: 100%;
    }
    .review-card {
        max-width: 100%;
        margin: 0 5px;
    }
    .slick-prev { left: 0; font-size: 30px; }
    .slick-next { right: 0; font-size: 30px; }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 22px;
  }
  .review-card {
    padding: 20px 15px;
  }
  .review-text {
    font-size: 14px;
  }
}

 
.site-footer {
    background: #000;
    color: #777;
    font-size: 14px;
    padding: 60px 20px 20px;
    border-top: 1px solid #222;
}

.site-footer .container {
    max-width: 1440px;
    margin: 0 auto;
	flex-direction: column;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 1 1 400px;
}
.footer-logo {
	margin-bottom: 20px;
}
.footer-logo img {
    height: 50px;
}

.footer-desc {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-item .icon {
    margin-right: 8px;
    color: #ff6600;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ff6600;
}

.footer-contacts {
    margin-top: 20px;
	    display: flex;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.contact-city {
    color: #ff6600;
    font-weight: bold;
    margin: 0 0 5px;
    font-size: 16px;
	float: left;
}
.contact-info {
	display: flex;
	flex-direction: column;
	    text-align: start;
}
.contact-text {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    flex: 1 1 250px;
}
.footer-links .main-menu {
	padding: unset;
	list-style-type: none;
}
.footer-links h3 {
    color: #ff6600;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.footer-menu a:hover {
    color: #ff6600;
    transform: translateX(5px);
}

.footer-social {
    flex: 1 1 250px;
}

.footer-social h3 {
    color: #ff6600;
    margin-bottom: 20px;
    font-size: 18px;
}

.social-links a {
    margin-right: 15px;
    display: inline-block;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links img {
    width: 24px;
    height: 24px;
	filter: invert(1);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
	width: 100%;
}
.faq-section {
    background: #000;
    padding: 60px 20px;
    color: #fff;
}

.faq-section .container {
    max-width: 1440px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 40px;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #ff6600;
}
.faq-icon {
    font-size: 20px;
    color: #ff6600;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); 
}

.faq-answer {
    max-height: 0;               
    overflow: hidden;
    padding: 0 15px;
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;          
    padding: 15px;
}

.entry-meta {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.post-author {
    font-weight: 600;
    color: #ff6600;
}

.post-date {
    color: #777;
}

.related-posts {
    background: #111;
    padding: 60px 20px;
    color: #fff;
}

.related-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 40px;
}

.related-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: #000;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.8);
}

.related-thumb img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.related-name a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    margin-bottom: 8px;
}

.related-name a:hover {
    color: #ff6600;
}

.related-date {
    display: block;
    font-size: 14px;
    color: #aaa;
}
@media (max-width:1280px) {
    .related-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
.subscription {
	padding: 80px 20px;
	text-align: center;
	color: #fff;
	background: #111;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgb(0 0 0 / 70%);
}

.subscription .wpcf7-form {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
	    flex-direction: column;
    align-items: normal;
}

.subscription .wpcf7-form label {
    display: flex;
    flex: 1 1 auto;
    position: relative;
    margin: 0;
}

.subscription .wpcf7-form input.wpcf7-email {
    width: 100%;
    padding: 12px 15px 12px 40px; 
    border-radius: 50px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border 0.3s, background 0.3s;
	    box-sizing: border-box;
}

.subscription .wpcf7-form input.wpcf7-email:focus {
    border-color: #ff6600;
    background: #222;
}
.subscription .wpcf7-form-control-wrap[data-name="your-email"]:before {
    content: "@";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
    font-size: 18px;
    pointer-events: none;
}
.subscription .invalid .wpcf7-form-control-wrap[data-name="your-email"]:before {
	top: 34%;
}
.subscription .wpcf7-submit {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: #ff6600;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.subscription .wpcf7-submit:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
    color: #ff6600;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.wpcf7-form.invalid input.wpcf7-email {
    border-color: #ff6600;
}

@media (max-width: 768px) {
    .subscription .wpcf7-form {
        flex-direction: column;
        align-items: stretch;
    }
    .subscription .wpcf7-submit {
        width: 100%;
    }
}

.contact-form {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    background: #111;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 70%);
	margin: 40px 0px 120px;
}

.contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    gap: 20px;
}

.contact-form .wpcf7-form label {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    text-align: left;
	gap: 10px;
}

.contact-form .wpcf7-form input.wpcf7-text,
.contact-form .wpcf7-form input.wpcf7-email,
.contact-form .wpcf7-form textarea.wpcf7-textarea {
    width: 100%;
    padding: 12px 15px 12px 15px;
    border-radius: 20px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: border 0.3s, background 0.3s;
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus {
    border-color: #ff6600;
    background: #222;
}

.contact-form .wpcf7-submit {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: #ff6600;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form .wpcf7-submit:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

.contact-form .wpcf7-not-valid-tip,
.contact-form .wpcf7-response-output {
    color: #ff6600;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}
.breadcrumbs {
    background: #000;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
}

.breadcrumbs .container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li + li:before {
    content: ">";
    margin: 0 8px;
    color: #ff6600;
}

.breadcrumb-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: #ff6600;
}

.breadcrumb-list li span {
    color: #ff6600;
    font-weight: bold;
}

@media (max-width: 768px) {
    .contact-form .wpcf7-form {
        flex-direction: column;
    }
    .contact-form .wpcf7-submit {
        width: 100%;
    }
}
.post-sharing {
    padding: 60px 20px;
    background: #111;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
  margin-top: 40px; 
    text-align: center;
    color: #fff;
}

.post-sharing .sharing-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6600;
}

.post-sharing .sharing-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.post-sharing .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.post-sharing .share-btn svg {
    width: 24px;
    height: 24px;
}

.post-sharing .share-btn:hover {
    background: #ff6600;
    color: #000;
    transform: translateY(-2px);
}
.footer-social {
    text-align: center;
    margin-top: 30px;
    color: #fff;
}

.footer-social h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff6600;
}

.footer-social .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.footer-social .social-links a img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1) invert(1);
}

.footer-social .social-links a:hover {
    background: #ff6600; 
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.footer-social .social-links a:hover img {
    filter: brightness(0) invert(0); 
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-social .social-links {
        gap: 12px;
    }
    .footer-social .social-links a {
        width: 45px;
        height: 45px;
    }
    .footer-social .social-links a img {
        width: 20px;
        height: 20px;
    }
}



@media (max-width: 768px) {
    .post-sharing .sharing-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .post-sharing .share-btn {
        width: 45px;
        height: 45px;
    }
}

.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

#ajax-search {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 16px;
	    box-sizing: border-box;
}

#ajax-search:focus {
    border-color: #ff6600;
    outline: none;
}

.search-results {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.7);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
    list-style: none;
    padding: 0;
    margin: 0;
}
.search-results li:not(:has(a)) {
  padding: 10px 20px;
}

.search-results li {
    border-bottom: 1px solid #222;
    cursor: pointer;
    transition: background 0.3s;
}

.search-results li:hover {
    background: #222;
}

.search-results li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 10px;
}

.search-results li:last-child {
    border-bottom: none;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-filters .filter-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.blog-filters .filter-btn:hover,
.blog-filters .filter-btn.active {
    background: #ff6600;
    color: #000;
}

@media (max-width: 1024px) {
	.search-wrapper {
		display: none;
	}
}

@media (max-width: 1024px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
	.search-wrapper {
		display: none;
	}
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .reviews-slider {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .reviews-title {
        font-size: 28px;
    }

}
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero .container {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    .welcome-box {
        padding: 40px 20px;
    }
    .welcome-box h1 {
        font-size: 28px;
    }
    .welcome-box p {
        font-size: 16px;
    }

    .slide-text {
        max-width: 80%;
        font-size: 14px;
        padding: 15px 20px;
    }
}
