:root {
    /* Color variables */
    --color-primary: #158e3a;
    --color-dark: #232323;
    --color-light: #ffffff;
    --color-gray: #f5f5f5;
    --color-text: #333333;

    /* Measurement variables */
    --header-height: 80px;
    --transition: all 0.3s ease;
}

/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, Verdana, sans-serif;
    color: var(--color-text);
    background: var(--color-light);
    /*padding-top: var(--header-height);*/
    padding-top: 118px;
}

/* Container for content centering */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* First row styles - always visible */
.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 5px 0;*/
    /*border-bottom: 1px solid var(--color-gray);*/
}

/* Logo styles */
.header__logo img {
    height: 40px;
    width: auto;
    padding: 10px 0;
}

/* Contacts block styles */
.header__contacts {
    display: flex;
    gap: 30px;
}

.header__address,
.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
}

.header__address:hover, .header__phone:hover {
    color: var(--color-primary);
}

.header__icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Header divider */
.header__divider {
    height: 1px;
    box-shadow: inset 0 -1px #e0e0e0;
}

/* Second row styles - hidden on tablet/mobile */
.header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

/* Navigation styles */
.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-list__link {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-list__link:hover {
    color: var(--color-primary);
}

/* No-scroll class for body when menu is open */
.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Burger menu styles - hidden by default */
.burger {
    display: none;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
    margin-left: 20px;
}

.burger__line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.burger::before,
.burger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.burger::before {
    top: 0;
}

.burger::after {
    bottom: 0;
}

/* Tablet styles (768px-992px) */
@media (max-width: 992px) {
    /* Navigation styles for mobile */
    .header__nav {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--color-light);
        transform: translateX(100%);
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
    }

    .header__nav.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    /*    body.no-scroll {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }*/
    /* Header top row adjustments */
    .header__top {
        padding: 10px 0;
        border-bottom: none;
    }

    /* Contacts adjustments */
    .header__contacts {
        margin-left: auto;
        margin-right: 20px;
        gap: 15px;
    }

    /* Hide second row on mobile */
    .header__bottom {
        display: block;
        height: 0;
        padding: 0;
        overflow: visible;
    }

    /* Show burger button */
    .burger {
        display: block;
        order: 1;
    }

    /* Mobile menu list styles */
    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
    }

    .nav-list__item {
        width: 100%;
        text-align: center;
    }

    .nav-list__link {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }

    /* Burger animation when active */
    .burger.active .burger__line {
        opacity: 0;
    }

    .burger.active::before {
        transform: rotate(45deg);
        top: 11px;
    }

    .burger.active::after {
        transform: rotate(-45deg);
        bottom: 11px;
    }
}

/* Mobile styles (<768px) */
@media (max-width: 768px) {
    .header__contacts {
        margin-right: 10px;
    }

    .burger {
        margin-left: 10px;
    }

    /* Hide text in contacts, show only icons */
    .header__address span,
    .header__phone span {
        display: none;
    }

    .header__icon {
        width: 20px;
        height: 20px;
    }

    /* Smaller logo on mobile */
    /*    .header__logo img {
            height: 30px;
        }*/
}

/* Small mobile devices (<576px) */
@media (max-width: 576px) {
    .header__contacts {
        gap: 10px;
    }
}

/* SLIDER SECTION */

/* Main slider container */
.slider {
    max-width: 1420px; /* Maximum width */
    width: 100%; /* Full width */
    margin: 0 auto; /* Center alignment */
    position: relative; /* Positioning context */
    overflow: hidden; /* Hide overflow */
    z-index: 5; /* Ensure proper stacking */
}

/* Swiper main container */
.swiper {
    width: 100%; /* Full width */
    height: 600px; /* Content height */
}

/* Individual slide */
.swiper-slide {
    background-size: cover; /* Cover entire slide */
    background-position: center; /* Center background */
    height: 100%; /* Full height */
    display: flex; /* Flex layout */
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    padding: 40px; /* Inner spacing */
    box-sizing: border-box; /* Include padding in height */
}

/* Slide content container */
.slide-content {
    max-width: 600px; /* Maximum content width */
    color: white; /* Text color */
    text-align: left; /* Text alignment */
    padding: 40px; /* Inner spacing */
}

/* Slide title */
.slide-title {
    font-size: 2.5rem; /* Large font size */
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 20px; /* Bottom margin */
    font-weight: 700; /* Bold weight */
    line-height: 1.2; /* Line height */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow */
}

/* Slide text */
.slide-text {
    font-size: 1.2rem; /* Medium font size */
    margin-bottom: 30px; /* Bottom margin */
    line-height: 1.5; /* Line height */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow */
}

/* Slide button */
.slide-button {
    position: relative; /* Positioning */
    z-index: 1; /* Stacking order */
    display: inline-block; /* Inline block */
    min-width: 152px; /* Minimum width */
    padding: 15px 16px; /* Button padding */
    transition: .15s cubic-bezier(.4, 0, .6, 1); /* Smooth transition */
    text-align: center; /* Center text */
    vertical-align: middle; /* Vertical alignment */
    text-decoration: none; /* No underline */
    color: #1ab248; /* Text color */
    border: 1px solid #2cd35f; /* Border */
    border-radius: 8px; /* Rounded corners */
    outline: none; /* Remove outline */
    background-color: #fff; /* Background */
    font-family: Roboto, sans-serif; /* Font family */
    font-size: 16px; /* Font size */
    font-weight: 600; /* Font weight */
    line-height: 1; /* Line height */
}

/* Button hover state */
.slide-button:hover {
    color: #2cd35f; /* Hover text color */
    background-color: #eafbef; /* Hover background */
    box-shadow: 0 4px 12px rgba(44, 211, 95, 0.2); /* Hover shadow */
}

/* Pagination container */
.swiper-pagination {
    bottom: 20px !important; /* Position from bottom */
}

/* Pagination bullets */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important; /* Inactive color */
    opacity: 1 !important; /* Full opacity */
    width: 10px; /* Bullet width */
    height: 10px; /* Bullet height */
    transition: all 0.3s ease; /* Smooth transition */
}

/* Active bullet */
.swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.7) !important; /* Active color */
    width: 20px !important; /* Wider active bullet */
    border-radius: 5px !important; /* Rounded rectangle */
}

/* Tablet and mobile (768px and below) */
@media (max-width: 992px) {
    body {
        padding-top: 65px;
    }

    /*    .slider {
            margin-top: -80px; !* Mobile header compensation *!
            padding-top: 65px;
        }*/
    .swiper {
        height: 400px; /* Adjusted height */
    }

    .swiper-slide {
        padding: 20px; /* Reduced padding */
    }

    .slide-content {
        padding: 25px; /* Reduced padding */
    }

    .slide-title {
        font-size: 1.8rem; /* Smaller font */
    }

    .slide-text {
        font-size: 1rem; /* Smaller font */
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    .swiper {
        height: 350px; /* Smaller height */
    }

    .swiper-slide {
        padding: 15px; /* Minimal padding */
    }

    .slide-content {
        padding: 20px; /* Minimal padding */
    }

    .slide-title {
        font-size: 1.5rem; /* Smallest font */
        margin-bottom: 15px; /* Smaller margin */
    }

    .slide-button {
        padding: 12px 16px; /* Smaller button */
        min-width: 120px; /* Smaller min-width */
        font-size: 14px; /* Smaller font */
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

.services__title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 60px;
    color: #1ab248;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1ab248, transparent);
    border-radius: 3px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services__item {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1ab248;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services__item:hover::before {
    transform: scaleX(1);
}

.services__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
}

.services__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
}

.services__name {
    font-size: 1.5rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 15px;
    color: #232323;
    transition: color 0.3s ease;
}

.services__item:hover .services__name {
    color: #1ab248;
}

.services__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* SVG Path Animations */
.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: none;
    animation-fill-mode: forwards;
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.8s;
}

.delay-3 {
    animation-delay: 1.2s;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-opacity: 1;
    }
}

/* Smooth icon appearance */
.icon-animate {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.icon-animate.animated {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .services__icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .services__item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }

    .services__title {
        font-size: 1.8rem;
    }
}

/* Stats section styles */
.stats-section {
    padding-bottom: 5rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-title {
    font-size: 2.5rem;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #1ab248;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1ab248, transparent);
    border-radius: 3px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stats-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stats-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stats-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats-item-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #232323;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stats-item:hover .stats-item-number {
    color: #343434;
}

.stats-item-text {
    display: block;
    font-size: 1rem;
    color: #232323;
}

.stats-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-image-wrapper.visible {
    opacity: 1;
    transform: scale(1);
}

.stats-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: contain;
}


.stats-image:hover {
    transform: scale(1.03);
}

/* Responsive styles */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-image-wrapper {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-items {
        grid-template-columns: 1fr;
    }

    .stats-title {
        font-size: 2rem;
    }

    .stats-item-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 3rem 0;
    }

    .stats-image-wrapper {
        max-width: 100%;
    }
}

/* Fix display on small screens */
@media (max-width: 400px) {
    .header__contacts {
        gap: 5px;
        margin-right: 5px;
    }

    .burger {
        margin-left: 5px;
    }
}

@media (max-width: 360px) {
    body {
        padding-top: 55px;
    }

    .header__nav {
        top: 55px;
    }

    .header__logo img {
        height: 30px;
    }

    .header__icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .stats-image-wrapper {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }
}

.stats-item {
    will-change: transform, opacity;
}

.stats-image-wrapper {
    will-change: transform, opacity;
}

/* Featured section */
.featured {
    padding: 3.75rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.featured__title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 60px;
    color: #1ab248;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.featured__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1ab248, transparent);
    border-radius: 3px;
}

/*.featured__title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 80px;
    color: #1ab248;
    position: relative;
}

.featured__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1ab248;
    border-radius: 3px;
}*/

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    counter-reset: feature-number;
    position: relative;
    z-index: 2;
}

.features-list__item {
    position: relative;
    padding: 40px 30px 30px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.features-list__item::before {
    position: absolute;
    z-index: 0;
    top: 10px;
    left: 30px;
    content: counter(feature-number);
    counter-increment: feature-number 1;
    color: #f5f5f5;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    font-family: 'Open Sans Condensed', sans-serif;
    pointer-events: none;
}

.features-list__content {
    position: relative;
    z-index: 1;
}

.features-list__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #232323;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

/*.features-list__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #1ab248;
}*/

.features-list__text {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Decorative elements */
.featured::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 178, 72, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.featured::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 178, 72, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 992px) {
    .featured {
        padding: 2.75rem 0;
    }

    .features-list {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .featured__title {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .features-list__item::before {
        font-size: 100px;
    }
}

@media (max-width: 576px) {
    .features-list {
        grid-template-columns: 1fr;
    }

    .features-list__item {
        padding: 30px 25px 25px;
    }

    .features-list__item::before {
        left: 20px;
        font-size: 80px;
    }
}

/* Footer styles */
.footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 60px 0 30px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer__col {
    margin-bottom: 20px;
}

.footer__logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer__title {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #1ab248;
}

.footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__menu li {
    margin-bottom: 12px;
}

.footer__link {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #1ab248;
}

.footer__contacts {
    margin-bottom: 20px;
}

.footer__phone,
.footer__email {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer__phone:hover,
.footer__email:hover {
    color: #1ab248;
}

.footer__address {
    color: #bbb;
    font-style: normal;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer__subscribe {
    margin-top: 25px;
}

.footer__subscribe p {
    margin-bottom: 15px;
    color: #bbb;
}

.subscribe-form {
    display: flex;
    max-width: 280px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.subscribe-btn {
    background: #1ab248;
    color: white;
    border: none;
    padding: 0 18px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #158e3a;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: #777;
    font-size: 13px;
}

.footer__payments {
    display: flex;
    gap: 15px;
}

.footer__payments img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer__payments img:hover {
    opacity: 1;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .subscribe-form {
        max-width: 100%;
    }
}

/* Footer Social Block */
.footer__social-block {
    margin-top: 30px;
}

.footer__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

.footer__social-links {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer__social-icon {
    width: 20px;
    height: 20px;
}

/* Specific colors for each social */
.footer__social-link[aria-label="Telegram"] .footer__social-icon {
    color: #2AABEE;
}

.footer__social-link[aria-label="VK"] .footer__social-icon {
    color: #4C75A3;
}

.footer__social-link[aria-label="Instagram"] .footer__social-icon {
    color: #E4405F;
}

/* Contacts page styles */
.contacts-hero {
    background-color: #1ab248;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.contacts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.contacts-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.contacts-hero__title {
    font-size: 3rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.contacts-hero__text {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

/* Contact form section */
.contact-form-section {
    padding-bottom: 5rem;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form__info {
    padding-right: 30px;
}

.contact-form__title {
    font-size: 2.2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #232323;
    margin-bottom: 20px;
    position: relative;
}

.contact-form__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1ab248;
    border-radius: 3px;
}

.contact-form__description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Contact info styles */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(26, 178, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__title {
    font-size: 1.1rem;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #232323;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info__text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-info__text a {
    color: #1ab248;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info__text a:hover {
    color: #158e3a;
    text-decoration: underline;
}

/* Form styles */
.wpcf7-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #1ab248;
    box-shadow: 0 0 0 3px rgba(26, 178, 72, 0.1);
    background: white;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    background: #1ab248;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: #158e3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 178, 72, 0.2);
}

.form-privacy {
    font-size: 0.8rem;
    color: #777;
    margin-top: 20px;
    text-align: center;
}

.form-privacy a {
    color: #1ab248;
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* Map section */
.map-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.map-section__title {
    text-align: center;
    font-size: 2.2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #232323;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.map-section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1ab248, transparent);
    border-radius: 3px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ section */
.faq-section {
    padding: 80px 0;
}

.faq-section__title {
    text-align: center;
    font-size: 2.2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #232323;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1ab248, transparent);
    border-radius: 3px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: white;
    border: none;
}

/* Services page styles */
.services-hero {
    background-color: #1ab248;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.services-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.services-hero__title {
    font-size: 3rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.services-hero__text {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

/* Services section */
.services-section {
    padding: 80px 0;
}

.services-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.services-section__title {
    font-size: 2.5rem;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #1ab248;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1ab248, transparent);
    border-radius: 3px;
}

.services-section__subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Updated services grid */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services__item {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.services__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1ab248;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services__item:hover::before {
    transform: scaleX(1);
}

.services__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
}

.services__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
}

.services__name {
    font-size: 1.5rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 15px;
    color: #232323;
    transition: color 0.3s ease;
}

.services__item:hover .services__name {
    color: #1ab248;
}

.services__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.services__features {
    text-align: left;
    margin: 0 0 25px 0;
    padding: 0 0 0 20px;
    list-style: none;
    flex-grow: 1;
}

.services__features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.services__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #1ab248;
    border-radius: 50%;
}

.services__button {
    display: inline-block;
    padding: 12px 24px;
    background: #1ab248;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.services__button:hover {
    background: #158e3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 178, 72, 0.2);
}

/* Additional services */
.additional-services {
    padding: 80px 0;
    background: #f9f9f9;
}

.additional-services__header {
    text-align: center;
    margin-bottom: 60px;
}

.additional-services__title {
    font-size: 2.2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #232323;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.additional-services__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1ab248, transparent);
    border-radius: 3px;
}

.additional-services__subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.additional-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.additional-service {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.additional-service:hover {
    transform: translateY(-5px);
}

.additional-service__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.additional-service__name {
    font-size: 1.2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 15px;
    color: #232323;
}

.additional-service__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Price section */
.price-section {
    padding: 80px 0;
}

.price-section__header {
    text-align: center;
    margin-bottom: 40px;
}

.price-section__title {
    font-size: 2.2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #232323;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.price-section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1ab248, transparent);
    border-radius: 3px;
}

.price-section__subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.price-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.price-table th, .price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background: #f5f5f5;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #232323;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover td {
    background: rgba(26, 178, 72, 0.05);
}

.price-notice {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Order section */
.order-section {
    padding: 80px 0;
    background: #1ab248;
    color: white;
}

.order-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-section__content {
    max-width: 500px;
}

.order-section__title {
    font-size: 2.2rem;
    font-family: 'Open Sans Condensed', sans-serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.order-section__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.order-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.order-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.order-section__form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 992px) {
    .contacts-hero {
        margin-bottom: 2rem;
    }

    .services-hero {
        margin-bottom: 0;
    }

    .order-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-section__content {
        max-width: 100%;
        text-align: center;
    }

    .order-features {
        justify-content: center;
    }

    .services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero__title {
        font-size: 2.5rem;
    }

    .services-section__title,
    .additional-services__title,
    .price-section__title {
        font-size: 2rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .additional-services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 80px 0;
    }

    .services-hero__title {
        font-size: 2rem;
    }

    .services-section,
    .additional-services,
    .price-section,
    .order-section {
        padding: 60px 0;
    }

    .additional-services__grid {
        grid-template-columns: 1fr;
    }

    .price-table th, .price-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Responsive styles for Contacts page */
@media (max-width: 992px) {
    /* Adjust hero section padding */
    .contacts-hero {
        padding: 60px 0;
    }

    /* Stack contact form grid */
    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Adjust map height */
    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    /* Reduce hero section padding */
    .contacts-hero {
        padding: 40px 0;
    }

    /* Adjust contact info layout */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Form field adjustments */
    .form-input, .form-textarea {
        font-size: 16px;
        padding: 14px 16px;
    }

    /* FAQ item styling */
    .faq-item {
        border-width: 1px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    /* Further reduce hero padding */
    .contacts-hero {
        padding: 30px 0;
    }

    /* Adjust map height for small screens */
    .map-wrapper iframe {
        height: 300px;
    }

    /* Optimize contact info items */
    .contact-info__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info__icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    /* Optimize for smallest screens */
    .contact-form__title {
        font-size: 1.8rem;
    }

    .form-submit {
        font-size: 16px;
        padding: 14px 28px;
    }
}