@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --green-dark: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #40916C;
    --green-accent: #52B788;
    --green-pale: #B7E4C7;
    --green-bg: #D8F3DC;
    --gold: #a3e635;
    --gold-light: #bef264;
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --gray-100: #F1F3F2;
    --gray-200: #E2E5E4;
    --gray-300: #C5CAC8;
    --gray-500: #4A5553;
    --gray-700: #3A4541;
    --gray-900: #1A1F1D;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--green-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-accent), var(--gold));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 650px;
    margin: 20px auto 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--green-dark);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--gray-900);
    box-shadow: 0 4px 15px rgba(163, 230, 53, 0.4);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 230, 53, 0.5);
}

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--green-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: var(--green-pale);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ====== HEADER ====== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--green-dark);
    line-height: 1.2;
}

.logo-text span {
    /*color: var(--gold); */
    color: var(--green-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--green-mid);
}

/* ====== NAV DROPDOWN ====== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    /* Reset browser button defaults */
    background: none;
    border: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-accent);
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    width: 100%;
}

.nav-dropdown-toggle:hover {
    color: var(--green-mid);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    padding: 8px 0;
    padding-top: 18px;
    min-width: 210px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    border-radius: 0;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: var(--green-bg);
    color: var(--green-dark);
    padding-left: 26px;
}

.nav-dropdown-menu a.featured {
    color: var(--green-mid);
    font-weight: 600;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 4px;
    padding-bottom: 12px;
}

/* ====== BTN OUTLINE GREEN ====== */
.btn-outline-green {
    background: transparent;
    color: var(--green-mid);
    border: 2px solid var(--green-mid);
    box-shadow: none;
}

.btn-outline-green:hover {
    background: var(--green-mid);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1.05rem;
}

.header-phone svg {
    color: var(--green-accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Nav close button — hidden on desktop, shown only in mobile media query */
.nav-close {
    display: none;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.92), rgba(45, 106, 79, 0.25)), url('img_webp/30.webp') center/cover no-repeat;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 190px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(82, 183, 136, 0.15), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 67, 50, 0.6);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hero-stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== QUICK ESTIMATE FORM STRIP ====== */
.quick-form-strip {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    padding: 22px 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.quick-form-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-form-title {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    flex-shrink: 0;
    min-width: 200px;
}

.quick-form-title strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.quick-form-title span {
    font-size: 0.82rem;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

.quick-form-icon {
    font-size: 2rem;
    line-height: 1;
}

.quick-form {
    flex: 1;
}

.quick-form-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-form-group {
    flex: 1;
    min-width: 160px;
}

.quick-form-group input,
.quick-form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    font-family: 'Inter', sans-serif;
}

.quick-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.quick-form-group select {
    color: var(--white);
}

.quick-form-group select option {
    background: var(--green-dark);
    color: var(--white);
}

.quick-form-group input:focus,
.quick-form-group select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.2);
}

.quick-form-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 1024px) {
    .quick-form-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .quick-form-title {
        justify-content: center;
        text-align: center;
        min-width: unset;
    }

    .quick-form {
        width: 100%;
    }

    .quick-form-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-form-btn {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .quick-form-strip {
        padding: 20px 0;
    }

    .quick-form-title {
        gap: 10px;
    }

    .quick-form-icon {
        font-size: 1.5rem;
    }

    .quick-form-title strong {
        font-size: 1rem;
    }

    .quick-form-fields {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .quick-form-group input,
    .quick-form-group select {
        padding: 13px 16px;
        font-size: 1rem;
    }

    .quick-form-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ====== TRUST BADGES ====== */
.trust-section {
    padding: 50px 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
}

.trust-item h2 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ====== WHY CHOOSE US ====== */
.why-section {
    background: var(--white);
}

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

.why-card {
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    background: var(--green-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-accent), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    border-color: var(--green-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFF, #FFF);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.why-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ====== SERVICES OVERVIEW ====== */
.services-section {
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card-body p {
    color: var(--gray-500);
    font-size: 0.93rem;
    margin-bottom: 15px;
}

.service-link {
    font-weight: 600;
    color: var(--green-mid);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    align-self: flex-start;
}

.service-link:hover {
    gap: 12px;
    color: var(--green-dark);
}

/* ====== SERVICE DETAIL BLOCKS ====== */
.service-detail {
    border-bottom: 1px solid var(--gray-200);
}

.service-detail:nth-child(even) {
    background: var(--off-white);
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-inner {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-inner>* {
    direction: ltr;
}

.service-detail-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 15px;
}

.service-detail-content p {
    color: var(--gray-500);
    margin-bottom: 15px;
    font-size: 0.98rem;
}

.service-detail-content ul {
    margin: 15px 0 25px;
}

.service-detail-content li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-700);
}

.service-detail-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: 700;
}

.service-detail-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-detail-gallery img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.service-detail-gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.service-detail-gallery img:first-child {
    grid-column: 1 / -1;
    max-height: 360px;
}

/* ====== GALLERY ====== */
.gallery-section {
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(27, 67, 50, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ====== LIGHTBOX ====== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* ====== REVIEWS ====== */
.reviews-section {
    background: var(--off-white);
}

.reviews-header-info {
    text-align: center;
    margin-bottom: 15px;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.google-rating img {
    height: 28px;
}

.stars {
    color: #FBBC04;
    font-size: 1.2rem;
}

.google-rating strong {
    font-size: 1.3rem;
    color: var(--gray-900);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-pale);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-mid);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-author {
    font-weight: 600;
}

.review-location {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.review-stars {
    color: #FBBC04;
    margin-bottom: 12px;
}

.review-text {
    color: var(--gray-700);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-response {
    background: var(--green-bg);
    border-left: 3px solid var(--green-accent);
    padding: 15px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 12px;
}

.review-response strong {
    font-size: 0.82rem;
    color: var(--green-mid);
    display: block;
    margin-bottom: 6px;
}

.review-response p {
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ====== FAQ ====== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--green-pale);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--green-mid);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--green-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-item.active .faq-question {
    color: var(--green-mid);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ====== SERVICE AREAS ====== */
.areas-section {
    background: var(--off-white);
}

.areas-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.areas-text p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.98rem;
}

.cities-table-section {
    background: var(--white);
}

.cities-table-wrap {
    overflow-x: auto;
}

.cities-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cities-table thead th {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 18px 20px;
    text-align: left;
    border-bottom: 3px solid var(--gold);
    white-space: nowrap;
}

.cities-table tbody td {
    padding: 13px 20px;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.cities-table tbody tr:nth-child(even) td {
    background: var(--green-bg);
}

.cities-table tbody tr:hover td {
    background: var(--green-pale);
    color: var(--green-dark);
}

.cities-table tbody tr:last-child td {
    font-weight: 600;
    color: var(--green-mid);
}

.areas-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.areas-map iframe {
    width: 100%;
    min-height: 600px;
    display: block;
}


/* ====== CONTACT SECTION ====== */
.contact-section {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--green-accent);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-left-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.cic-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-bg);
    border-radius: 50%;
}

.contact-info-card h3 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-info-card a {
    color: var(--green-mid);
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--green-mid);
    color: var(--white) !important;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 0.88rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    color: var(--gray-900);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-accent);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236B7775'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-500);
    margin-top: 12px;
}

.form-note a {
    color: var(--green-mid);
    font-weight: 600;
}

.form-status {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ====== CONTACT / CTA ====== */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green-accent);
    transform: translateY(-3px);
}

.footer-grid h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--green-accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--green-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--green-accent);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ====== FLOATING CALL WIDGET ====== */
.call-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: none;
}

.call-widget a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(45, 106, 79, 0.5);
    animation: pulse-ring 1.7s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(82, 183, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(82, 183, 136, 0);
    }
}

/* ====== VIDEO SHOWCASE ====== */
.video-section {
    background: var(--green-dark);
    color: var(--white);
}

.video-section .section-header h2 {
    color: var(--white);
}

.video-section .section-header p {
    color: var(--green-pale);
}

.video-section .section-header h2::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

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

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    background: var(--green-dark);
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-card video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.video-card-caption {
    padding: 15px 18px;
    font-size: 0.9rem;
    color: var(--green-pale);
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, 0.4);
    transition: var(--transition);
    pointer-events: none;
}

.video-card:hover .play-overlay {
    background: rgba(27, 67, 50, 0.1);
}

.play-overlay svg {
    width: 60px;
    height: 60px;
    fill: var(--white);
    opacity: 0.85;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.video-card:hover .play-overlay svg {
    transform: scale(1.15);
    opacity: 1;
}

/* ====== VERTICAL VIDEO CARD (9:16) ====== */
.video-card--vertical video {
    height: 560px;
    object-fit: cover;
    object-position: center;
}

.video-card--vertical .play-overlay {
    height: 560px;
}

/* ====== VIDEO + TEXT SPLIT LAYOUT ====== */
.video-text-split {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
}

.video-text-content {
    color: var(--green-pale);
}

.video-text-content h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.video-text-content p {
    color: var(--green-pale);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 16px;
    opacity: 0.92;
}

.video-text-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-text-content ul li {
    color: var(--green-pale);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.video-text-content ul li strong {
    color: var(--gold-light);
}

@media (max-width: 900px) {
    .video-text-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .video-card--vertical video,
    .video-card--vertical .play-overlay {
        height: 320px;
    }
}

@media (max-width: 768px) {

    .video-card--vertical video,
    .video-card--vertical .play-overlay {
        height: 260px;
    }
}

/* ====== SEO CONTENT BLOCK ====== */
.seo-content-section {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.seo-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content-inner h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: block;
}

.seo-content-inner h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-accent), var(--gold));
    border-radius: 2px;
    margin: 12px auto 0;
}

.seo-content-inner h3 {
    font-size: 1.3rem;
    margin: 35px 0 12px;
    color: var(--green-mid);
}

.seo-content-inner p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.seo-content-inner strong {
    color: var(--green-dark);
}

.seo-content-inner .seo-highlight {
    background: var(--green-bg);
    border-left: 4px solid var(--green-accent);
    padding: 20px 25px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 25px 0;
    font-style: italic;
    color: var(--green-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.seo-content-inner .seo-cta-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--green-bg), var(--off-white));
    border-radius: var(--radius-md);
}

.seo-content-inner .seo-cta-bottom p {
    font-size: 1.1rem;
    color: var(--green-dark);
    font-weight: 500;
    margin-bottom: 15px;
}

/* ====== ANIMATIONS ====== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1140px) {
    .nav-menu {
        gap: clamp(15px, 1.1vw, 30px);
    }

    .nav-menu a {
        font-size: clamp(0.8rem, 1.25vw, 0.95rem);
    }

    .header-phone {
        font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    }

    .logo-text {
        font-size: clamp(1rem, 1.5vw, 1.3rem);
    }

    .logo img {
        height: clamp(45px, 5vw, 60px);
    }

    .header-cta {
        gap: clamp(8px, 1.5vw, 15px);
    }

    .header-cta .btn {
        padding: clamp(10px, 1.2vw, 14px) clamp(16px, 2.5vw, 32px);
        font-size: clamp(0.8rem, 1.2vw, 1rem);
    }
}

@media (max-width: 875px) {
    .nav-menu {
        gap: clamp(8px, 1vw, 15px);
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .header-phone {
        font-size: 0.8rem;
        gap: 5px;
    }

    .header-phone svg {
        width: 14px;
        height: 14px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .logo img {
        height: 40px;
    }

    .logo {
        gap: 6px;
    }

    .header-cta {
        gap: 8px;
    }

    .header-cta .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .hero-stats .container {
        /*  grid-template-columns: repeat(2, 1fr);*/
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail:nth-child(even) .service-detail-inner {
        direction: ltr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    /* ── HAMBURGER ── */
    .hamburger {
        display: flex;
    }

    .header-cta .btn-primary {
        display: none;
    }

    /* ── SLIDE-IN PANEL FROM LEFT ── */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        right: auto;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        box-shadow: 6px 0 40px rgba(0, 0, 0, .22);
        transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        left: 0;
    }

    /* ── LOGO BLOCK INSIDE MENU ── */
    .nav-menu-logo {
        display: flex !important;
        align-items: center;
        gap: 14px;
        padding: 24px 20px 18px;
        border-bottom: 1px solid var(--gray-200);
        background: var(--off-white);
        flex-shrink: 0;
    }

    .nav-menu-logo img {
        width: 54px;
        height: 54px;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 4px 12px rgba(27, 67, 50, .2);
    }

    .nav-menu-logo-text {
        display: flex;
        flex-direction: column;
    }

    .nav-menu-logo-name {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: var(--green-dark);
        line-height: 1.2;
    }

    .nav-menu-logo-sub {
        font-size: 10px;
        font-weight: 500;
        color: #6a9b6a;
        letter-spacing: .3px;
        margin-top: 2px;
    }

    .nav-menu-logo-phone {
        font-size: 11px;
        font-weight: 700;
        color: var(--green-mid);
        margin-top: 4px;
    }

    /* ── CLOSE BUTTON ── */
    .nav-close {
        display: flex;
        position: absolute;
        top: 16px;
        right: 14px;
        width: 34px;
        height: 34px;
        background: var(--gray-100);
        border: none;
        border-radius: 50%;
        font-size: 17px;
        color: var(--gray-700);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: background .2s, transform .2s;
        z-index: 5;
        padding: 0;
        margin: 0;
    }

    .nav-close:hover {
        background: var(--green-bg);
        color: var(--green-dark);
        transform: rotate(90deg);
    }

    /* ── NAV LINKS BODY ── */
    .nav-links-body {
        flex: 1;
        padding: 10px 0;
        display: flex;
        flex-direction: column;
    }

    .nav-menu>a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 20px;
        font-size: 14.5px;
        font-weight: 600;
        color: var(--gray-900);
        border-left: 3px solid transparent;
        transition: background .2s, color .2s, border-color .2s;
        text-decoration: none;
    }

    .nav-menu>a::after {
        display: none;
    }

    .nav-menu>a:hover,
    .nav-menu>a.active {
        background: #f0f8f0;
        color: var(--green-dark);
        border-left-color: var(--green-accent);
    }

    .nav-menu>a .mob-icon {
        width: 30px;
        height: 30px;
        background: var(--green-bg);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
        transition: background .2s;
    }

    .nav-menu>a:hover .mob-icon,
    .nav-menu>a.active .mob-icon {
        background: var(--green-pale);
    }

    /* ── MOBILE DROPDOWN ── */
    .nav-dropdown {
        width: 100%;
        text-align: left;
    }

    .nav-dropdown-toggle {
        font-size: 14.5px;
        font-weight: 600;
        width: 100%;
        justify-content: flex-start;
        background: none;
        border: none;
        border-left: 3px solid transparent;
        font-family: 'Inter', sans-serif;
        color: var(--gray-900);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 20px;
        transition: background .2s, color .2s, border-color .2s;
    }

    .nav-dropdown-toggle:hover {
        background: #f0f8f0;
        color: var(--green-dark);
        border-left-color: var(--green-accent);
    }

    .nav-dropdown-toggle .mob-icon {
        width: 30px;
        height: 30px;
        background: var(--green-bg);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
        transition: background .2s;
    }

    .nav-dropdown-toggle:hover .mob-icon {
        background: var(--green-pale);
    }

    .nav-dropdown-toggle .dropdown-arrow {
        display: inline-block;
        transition: transform 0.3s ease;
        font-size: 11px;
        margin-left: auto;
        color: #aaa;
    }

    .nav-dropdown.open .nav-dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown.open .nav-dropdown-toggle {
        background: #f0f8f0;
        color: var(--green-dark);
        border-left-color: var(--green-accent);
    }

    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--green-pale);
        margin-left: 24px;
        background: #f9fdf9;
        border-radius: 0 0 var(--radius-sm) 0;
        padding: 0;
        transform: none;
        min-width: unset;
        width: calc(100% - 24px);
        transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        max-height: 400px;
        padding: 4px 0;
    }

    .nav-dropdown-menu a {
        font-size: 13px;
        font-weight: 500;
        padding: 10px 16px 10px 20px;
        justify-content: flex-start;
        color: var(--green-mid);
        border-left: none;
    }

    .nav-dropdown-menu a::after {
        display: none;
    }

    .nav-dropdown-menu a:hover {
        padding-left: 20px;
        background: #e8f5e9;
        color: var(--green-dark);
    }

    /* ── MENU DIVIDER ── */
    .mob-divider {
        height: 1px;
        background: var(--gray-200);
        margin: 6px 20px;
    }

    /* ── MENU FOOTER: CALL + SOCIAL ── */
    .nav-menu-footer {
        display: flex !important;
        flex-direction: column;
        padding: 14px 16px 20px;
        border-top: 1px solid var(--gray-200);
        gap: 12px;
        flex-shrink: 0;
    }

    .mob-call-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px 20px;
        background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .8px;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: var(--radius-md);
        box-shadow: 0 6px 20px rgba(45, 106, 79, .4);
        transition: transform .2s, box-shadow .2s;
    }

    .mob-call-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(45, 106, 79, .5);
    }

    .mob-call-btn svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
        animation: mob-ring 3s ease infinite;
    }

    @keyframes mob-ring {

        0%,
        88%,
        100% {
            transform: rotate(0deg);
        }

        90% {
            transform: rotate(-14deg);
        }

        92% {
            transform: rotate(14deg);
        }

        94% {
            transform: rotate(-9deg);
        }

        96% {
            transform: rotate(7deg);
        }
    }

    .mob-social-row {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }

    .mob-social-label {
        font-size: 10px;
        font-weight: 700;
        color: #bbb;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-right: 2px;
    }

    .mob-social-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform .2s, box-shadow .2s;
    }

    .mob-social-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
    }

    .mob-social-btn.fb {
        background: #1877f2;
        color: #fff;
    }

    .mob-social-btn.ig {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        color: #fff;
    }

    .mob-social-btn svg {
        width: 18px;
        height: 18px;
    }

    /* ── PAGE LAYOUT ADJUSTMENTS ── */
    .hero {
        display: block;
        padding-top: 60px;
        padding-bottom: 0px;
        min-height: auto;
    }

    .hero>.container {
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        position: relative;
    }

    .hero-stats .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card video,
    .video-card .play-overlay {
        height: 220px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 50px 0;
    }

    .call-widget {
        display: block;
    }

    .cities-table thead th {
        font-size: 0.85rem;
        padding: 12px 10px;
    }

    .cities-table tbody td {
        padding: 10px;
        font-size: 0.85rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Nav overlay — must be BELOW header z-index (1000) so the nav-menu panel
   (inside header's stacking context) renders above it */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Elements hidden on desktop, shown only inside mobile menu */
.nav-menu-logo,
.nav-menu-footer,
.mob-call-btn,
.mob-social-row,
.mob-divider {
    display: none;
}