/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #7CB342;
    --light-green: #AED581;
    --dark-grey: #2C2C2C;
    --medium-grey: #424242;
    --light-grey: #757575;
    --white: #FFFFFF;
    --overlay-dark: rgba(44, 44, 44, 0.85);
    --overlay-light: rgba(66, 66, 66, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: #2c2c2c url("../assets/images/about-bg.jpg") center / cover fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
}

.logo-image {
    display: block;
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--light-green);
    border-radius: 50%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--light-green);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icons img:hover {
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--light-green);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px 8px;
}

.lang-link:hover {
    color: var(--primary-green);
}

.lang-link.active {
    color: var(--primary-green);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.lang-separator {
    color: #ccc;
    font-weight: 300;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    z-index: 1;
}

.hero-title {
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.phone_hero {
    text-decoration: none;
    color: var(--light-green);
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.title-main {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.title-sub {
    font-size: 24px;
    color: var(--light-green);
    margin-top: 10px;
}

.hero-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-form-wrapper {
    z-index: 1;
}

.consultation-form {
    background: rgba(44, 44, 44, 0.8);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    background: var(--medium-grey);
    color: var(--white);
    font-size: 16px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

.btn-submit {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--light-green);
}

/* Section Styles */
.section {
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.section-background img {
    display: block;
    opacity: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-about {
    background: rgba(66, 66, 66, 0.5);
}

.overlay-services {
    background: rgba(44, 66, 44, 0.5);
}

.overlay-advantages {
    background: rgba(66, 44, 66, 0.5);
}

.overlay-team {
    background: rgba(44, 44, 66, 0.5);
}

.overlay-prices {
    background: rgba(66, 66, 44, 0.65);
}

.overlay-gallery {
    background: rgba(44, 66, 66, 0.5);
}

.overlay-reviews {
    background: rgba(66, 44, 44, 0.5);
}

.overlay-consultation {
    background: rgba(44, 44, 44, 0.8);
}

.overlay-offer {
    background: rgba(66, 44, 44, 0.6);
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
}

.section-title-center {
    text-align: center;
    color: var(--light-green);
}

.section-title-left {
    text-align: left;
    color: var(--light-green);
} 

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible,
.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
}

.service-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

.btn-service {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: auto;
}

.btn-service:hover {
    background: var(--light-green);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.advantage-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantage-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-green);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 5px;
}

.member-specialty {
    font-size: 14px;
    color: var(--light-green);
}

/* Prices Section */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.price-card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: var(--white);
}

.price-list li span:last-child{
    min-width: 60px;
    text-align: right;
}

.price-list li:last-child {
    border-bottom: none;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 10px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--light-green);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    padding: 10px 20px;
    transition: color 0.3s;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--light-green);
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: min(520px, 95vw);
    background: var(--dark-grey);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--light-green);
}

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.modal-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.modal-message,
.modal-time {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-wrapper {
    display: flex;
    gap: 30px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: transform 0.5s ease;
    flex: 1;
    overflow: hidden;
}

.reviews-wrapper::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}


.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.review-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 5px;
}

.review-rating {
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.review-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
}

.carousel-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--light-green);
}

/* Consultation Section */
.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.consultation-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line-1 {
    font-size: 48px;
    font-weight: bold;
    color: var(--light-green);
    line-height: 1.2;
}

.title-line-2 {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    line-height: 1.2;
}

/* Offer of the Month Section */
.offer-month {
    position: relative;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.offer-month .container {
    position: relative;
    z-index: 1;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-width: 0;
}

.offer-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 0;
}

.offer-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(44, 44, 44, 0.85);
    padding: 35px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    min-width: 0;
}

.offer-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--light-green);
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.offer-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.discount-price {
    font-size: 42px;
    font-weight: bold;
    color: var(--light-green);
}

.offer-note {
    font-size: 16px;
    color: var(--light-green);
    font-style: italic;
    font-weight: bold;
}

.btn-offer {
    align-self: flex-start;
    padding: 15px 40px;
    font-size: 16px;
    margin-top: 20px;
}

/* Offer of the Month Responsive */
@media (max-width: 900px) {
    .offer-month {
        min-height: auto;
        padding: 64px 0;
    }

    .offer-month .section-title {
        margin-bottom: 26px;
        font-size: 34px;
        line-height: 1.2;
    }

    .offer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .offer-image {
        max-width: 620px;
        margin: 0 auto;
    }

    .offer-image img {
        max-height: 420px;
        object-fit: cover;
        object-position: center;
    }

    .offer-details {
        padding: 24px;
        border-width: 2px;
        gap: 16px;
        width: 100%;
        margin: 0 auto;
    }

    .offer-title {
        font-size: 30px;
    }

    .offer-description {
        font-size: 16px;
        line-height: 1.55;
    }

    .offer-price {
        gap: 12px;
        margin: 10px 0;
        flex-wrap: wrap;
    }

    .original-price {
        font-size: 20px;
    }

    .discount-price {
        font-size: 34px;
    }

    .btn-offer {
        width: 100%;
        align-self: stretch;
        text-align: center;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .offer-month {
        padding: 52px 0;
    }

    .offer-month .section-title {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .offer-image img {
        max-height: 340px;
    }

    .offer-details {
        padding: 18px;
        gap: 14px;
        width: 100%;
    }

    .offer-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .offer-description {
        font-size: 15px;
    }

    .offer-price {
        margin: 8px 0;
    }

    .original-price {
        font-size: 18px;
    }

    .discount-price {
        font-size: 30px;
    }
}

/* Footer */
.footer {
    background: var(--dark-grey);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--light-green);
}

.working-hours {
    margin-top: 15px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--light-green);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 30px;
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-social img:hover {
    opacity: 1;
}

/* Map Section */
.footer-extra {
    min-height: 50px;
}

.footer-map {
    grid-column: auto;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-list {
        gap: 20px;
    }

    .contact-info {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultation-content {
        grid-template-columns: 1fr;
    }

    .offer-content {
        grid-template-columns: 1fr;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 36px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        width: 100%;
        order: 4;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .header-contact {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-appointment {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .title-main {
        font-size: 32px;
    }

    .title-sub {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-form-wrapper {
        margin-top: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .offer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offer-title {
        font-size: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-width: 280px;
    }

    .carousel-btn {
        display: none;
    }

    .title-line-1,
    .title-line-2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        height: 250px;
    }

    .consultation-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

}
