    :root {
        --mint: #CFFFE5;
        --mint-light: #E8FFF3;
        --mint-dark: #A8F0CB;
        --mint-deep: #6EDBA8;
        --black: #0D1A14;
        --charcoal: #1C2E25;
        --green-dark: #1A4A30;
        --green-mid: #2D6B48;
        --white: #FFFFFF;
        --gray-soft: #F4FBF7;
        --gray-text: #6B8A76;
        --accent: #00C96A;
        --radius: 16px;
        --radius-lg: 28px;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--white);
        color: var(--black);
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: 'Playfair Display', serif;
    }

    /* ───── BOTTOM DOCK NAVBAR ───── */
    .dock-nav {
        position: fixed;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(13, 26, 20, 0.92);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(207, 255, 229, 0.18);
        border-radius: 999px;
        padding: 10px 24px;
        display: flex;
        gap: 6px;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(207, 255, 229, 0.08);
    }

    .dock-logo {
        width: 84px;
        height: 84px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: rgba(207, 255, 229, 0.12);
        border: 1px solid rgba(207, 255, 229, 0.22);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        margin-right: 6px;
        flex: 0 0 auto;
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s, border-color 0.25s;
    }

    .dock-logo:hover {
        transform: translateY(-8px) scale(1.08);
        background: rgba(207, 255, 229, 0.18);
        border-color: rgba(207, 255, 229, 0.35);
    }

    .dock-logo img {
        width: 84px;
        height: 84px;
        display: block;
    }

    .dock-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 8px 14px;
        border-radius: 999px;
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        text-decoration: none;
        color: rgba(207, 255, 229, 0.7);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.03em;
        position: relative;
    }

    .dock-item:hover {
        transform: translateY(-8px) scale(1.15);
        color: var(--mint);
        background: rgba(207, 255, 229, 0.1);
    }

    .dock-item.active {
        color: var(--mint);
    }

    .dock-icon {
        font-size: 20px;
        line-height: 1;
        transition: inherit;
    }

    .dock-divider {
        width: 1px;
        height: 32px;
        background: rgba(207, 255, 229, 0.15);
        margin: 0 4px;
    }

    /* ───── HERO ───── */
    #home {
        min-height: 100vh;
        background: var(--charcoal);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 100px 0 80px;
    }

    .hero-bg-circle {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(207, 255, 229, 0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero-bg-circle.c1 {
        width: 700px;
        height: 700px;
        top: -200px;
        right: -150px;
    }

    .hero-bg-circle.c2 {
        width: 400px;
        height: 400px;
        bottom: -100px;
        left: -100px;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(207, 255, 229, 0.1);
        border: 1px solid rgba(207, 255, 229, 0.25);
        color: var(--mint);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 7px 16px;
        border-radius: 999px;
        margin-bottom: 28px;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1)
        }

        50% {
            opacity: 0.5;
            transform: scale(1.3)
        }
    }

    .hero-title {
        font-size: clamp(44px, 5vw, 70px);
        line-height: 1.08;
        color: var(--white);
        margin-bottom: 24px;
    }

    .hero-title span {
        color: var(--mint);
    }

    .hero-desc {
        font-size: 17px;
        line-height: 1.7;
        color: rgba(207, 255, 229, 0.65);
        margin-bottom: 40px;
        max-width: 440px;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--mint);
        color: var(--black);
        padding: 15px 32px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.25s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 24px rgba(207, 255, 229, 0.25);
    }

    .btn-primary:hover {
        background: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(207, 255, 229, 0.35);
    }

    .btn-outline {
        border: 1.5px solid rgba(207, 255, 229, 0.35);
        color: var(--mint);
        padding: 15px 32px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.25s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-outline:hover {
        border-color: var(--mint);
        background: rgba(207, 255, 229, 0.08);
    }

    .hero-image-wrap {
        position: relative;
        transform: translateX(32px);
    }

    .hero-img-card {
        background: linear-gradient(145deg, var(--green-dark), var(--charcoal));
        border: 1px solid rgba(207, 255, 229, 0.15);
        border-radius: var(--radius-lg);
        overflow: hidden;
        position: relative;
        aspect-ratio: 4/5;
        max-height: 520px;
    }

    .hero-img-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
        mix-blend-mode: normal;
        image-rendering: -webkit-optimize-contrast;
    }

    .hero-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(13, 26, 20, 0.8) 0%, transparent 60%);
    }

    .hero-float-card {
        position: absolute;
        background: var(--mint);
        border-radius: 16px;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }

    .hero-float-card.fc1 {
        bottom: 40px;
        left: -50px;
    }

    .hero-float-card.fc2 {
        top: 40px;
        left: -60px;
    }

    .fc-icon {
        font-size: 26px;
    }

    .fc-text strong {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: var(--black);
    }

    .fc-text span {
        font-size: 12px;
        color: var(--green-mid);
    }

    .hero-stats {
        display: flex;
        gap: 36px;
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid rgba(207, 255, 229, 0.12);
    }

    .stat-item strong {
        display: block;
        font-size: 28px;
        font-weight: 900;
        font-family: 'Playfair Display', serif;
        color: var(--mint);
    }

    .stat-item span {
        font-size: 12px;
        color: rgba(207, 255, 229, 0.5);
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    /* ───── SECTION BASE ───── */
    .section {
        padding: 96px 0;
    }

    .section-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 48px;
    }

    .section-tag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .section-tag::before {
        content: '';
        width: 28px;
        height: 2px;
        background: var(--accent);
    }

    .section-title {
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.12;
        color: var(--black);
        margin-bottom: 20px;
    }

    .section-title.light {
        color: var(--white);
    }

    .section-desc {
        font-size: 16px;
        line-height: 1.75;
        color: var(--gray-text);
        max-width: 520px;
    }

    .section-desc.light {
        color: rgba(207, 255, 229, 0.6);
    }

    /* ───── WHY CHOOSE US ───── */
    #why {
        background: var(--gray-soft);
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

    .why-image-block {
        position: relative;
    }

    .why-main-img {
        border-radius: var(--radius-lg);
        overflow: hidden;
        aspect-ratio: 3/4;
        background: linear-gradient(145deg, var(--green-dark), var(--charcoal));
    }

    .why-main-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .why-accent-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .why-accent-img {
        position: absolute;
        bottom: -28px;
        right: -28px;
        width: 200px;
        height: 200px;
        border-radius: 20px;
        overflow: hidden;
        border: 4px solid var(--white);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        background: var(--charcoal);
    }

    .why-accent-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .why-rating-badge {
        position: absolute;
        top: -16px;
        left: -16px;
        background: var(--mint);
        border-radius: 16px;
        padding: 16px 20px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    }

    .why-rating-badge strong {
        display: block;
        font-size: 28px;
        font-family: 'Playfair Display', serif;
        color: var(--black);
    }

    .why-rating-badge span {
        font-size: 11px;
        font-weight: 600;
        color: var(--green-mid);
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .feature-box {
        background: var(--white);
        border: 1px solid rgba(207, 255, 229, 0.5);
        border-radius: var(--radius);
        padding: 24px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--mint-deep), var(--accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
    }

    .feature-box:hover::before {
        transform: scaleX(1);
    }

    .feature-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(110, 219, 168, 0.15);
    }

    .feat-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .feat-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 6px;
    }

    .feat-desc {
        font-size: 13px;
        color: var(--gray-text);
        line-height: 1.6;
    }

    /* ───── SERVICES ───── */
    #services {
        background: var(--charcoal);
    }

    .services-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 52px;
        gap: 32px;
    }

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

    .service-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        position: relative;
        aspect-ratio: 3/4;
        cursor: pointer;
        group: '';
    }

    .service-card-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s ease;
    }

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

    .service-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(13, 26, 20, 0.92) 0%, rgba(13, 26, 20, 0.2) 60%, transparent 100%);
        transition: all 0.3s;
    }

    .service-card:hover .service-card-overlay {
        background: linear-gradient(to top, rgba(13, 26, 20, 0.97) 0%, rgba(13, 26, 20, 0.5) 70%, rgba(207, 255, 229, 0.05) 100%);
    }

    .service-card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 28px 20px;
    }

    .service-card-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .service-card-title {
        font-size: 17px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
        font-family: 'Playfair Display', serif;
    }

    .service-card-desc {
        font-size: 13px;
        color: rgba(207, 255, 229, 0.65);
        line-height: 1.55;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s;
        opacity: 0;
    }

    .service-card:hover .service-card-desc {
        max-height: 80px;
        opacity: 1;
    }

    .service-card-tag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--mint);
        color: var(--black);
        font-size: 10px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 999px;
        letter-spacing: 0.05em;
    }

    /* service card placeholder backgrounds */
    .sc1 {
        background: linear-gradient(135deg, #1a3a28 0%, #0d2018 100%);
    }

    .sc2 {
        background: linear-gradient(135deg, #0f2a1f 0%, #1a3830 100%);
    }

    .sc3 {
        background: linear-gradient(135deg, #1c3525 0%, #0d2a20 100%);
    }

    .sc4 {
        background: linear-gradient(135deg, #162e22 0%, #1a3020 100%);
    }

    .sc5 {
        background: linear-gradient(135deg, #1e3828 0%, #112218 100%);
    }

    .sc-icon-big {
        font-size: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        opacity: 0.25;
    }

    /* ───── FAQ ───── */
    #faq {
        background: var(--white);
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 52px;
    }

    .faq-item {
        border: 1.5px solid rgba(207, 255, 229, 0.5);
        border-radius: var(--radius);
        overflow: hidden;
        transition: all 0.3s;
        background: var(--white);
    }

    .faq-item:hover {
        border-color: var(--mint-deep);
    }

    .faq-item.open {
        border-color: var(--mint-deep);
        box-shadow: 0 4px 24px rgba(110, 219, 168, 0.1);
    }

    .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 24px;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        color: var(--black);
        gap: 16px;
        transition: color 0.2s;
        user-select: none;
    }

    .faq-item.open .faq-q {
        color: var(--green-mid);
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: var(--mint);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        color: var(--black);
        transition: all 0.3s;
    }

    .faq-item.open .faq-toggle {
        background: var(--green-mid);
        color: var(--white);
        transform: rotate(45deg);
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        font-size: 14px;
        color: var(--gray-text);
        line-height: 1.7;
    }

    .faq-item.open .faq-a {
        max-height: 200px;
    }

    .faq-a-inner {
        padding: 0 24px 22px;
        border-top: 1px solid rgba(207, 255, 229, 0.4);
        padding-top: 16px;
    }

    /* ───── SERVICE AREAS ───── */
    #areas {
        background: var(--charcoal);
    }

    .areas-header {
        text-align: center;
        margin-bottom: 52px;
    }

    .areas-header .section-desc {
        margin: 0 auto;
    }

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

    .area-chip {
        background: rgba(207, 255, 229, 0.07);
        border: 1px solid rgba(207, 255, 229, 0.12);
        color: rgba(207, 255, 229, 0.75);
        font-size: 13px;
        font-weight: 500;
        padding: 11px 16px;
        border-radius: 999px;
        text-align: center;
        transition: all 0.25s;
        cursor: default;
    }

    .area-chip:hover {
        background: rgba(207, 255, 229, 0.14);
        border-color: var(--mint-deep);
        color: var(--mint);
        transform: translateY(-2px);
    }

    .area-chip.featured {
        background: rgba(207, 255, 229, 0.15);
        border-color: var(--mint-deep);
        color: var(--mint);
        font-weight: 700;
    }

    /* ───── ADDITIONAL / SPLIT SERVICES ───── */
    #additional {
        background: var(--gray-soft);
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 64px;
        align-items: center;
    }

    .split-text .section-desc {
        margin-bottom: 32px;
    }

    .add-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .add-card {
        background: var(--white);
        border: 1px solid rgba(207, 255, 229, 0.5);
        border-radius: var(--radius);
        padding: 24px 28px;
        display: flex;
        gap: 20px;
        align-items: center;
        transition: all 0.3s;
    }

    .add-card:hover {
        border-color: var(--mint-deep);
        transform: translateX(6px);
        box-shadow: 0 6px 28px rgba(110, 219, 168, 0.1);
    }

    .add-card-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        background: var(--mint);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .add-card-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 4px;
    }

    .add-card-desc {
        font-size: 13px;
        color: var(--gray-text);
        line-height: 1.55;
    }

    /* ───── CTA ───── */
    #cta {
        background: linear-gradient(135deg, var(--green-dark) 0%, var(--charcoal) 100%);
        position: relative;
        overflow: hidden;
    }

    #cta::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(207, 255, 229, 0.08) 0%, transparent 70%);
        top: -200px;
        right: -100px;
        pointer-events: none;
    }

    .cta-inner {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .cta-title {
        font-size: clamp(36px, 5vw, 60px);
        color: var(--white);
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .cta-title span {
        color: var(--mint);
    }

    .cta-desc {
        font-size: 17px;
        color: rgba(207, 255, 229, 0.65);
        margin-bottom: 44px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .btn-cta {
        background: var(--mint);
        color: var(--black);
        padding: 17px 40px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 6px 32px rgba(207, 255, 229, 0.3);
    }

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(207, 255, 229, 0.4);
        background: var(--white);
    }

    .btn-cta-2 {
        background: transparent;
        border: 2px solid rgba(207, 255, 229, 0.35);
        color: var(--mint);
        padding: 17px 40px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-cta-2:hover {
        border-color: var(--mint);
        background: rgba(207, 255, 229, 0.08);
        transform: translateY(-2px);
    }

    .cta-features {
        display: flex;
        justify-content: center;
        gap: 36px;
        margin-top: 44px;
        flex-wrap: wrap;
    }

    .cta-feat {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(207, 255, 229, 0.7);
        font-size: 14px;
        font-weight: 500;
    }

    .cta-feat-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--mint-deep);
    }

    /* ───── CONTACT ───── */
    #contact {
        background: var(--white);
    }

    /* ───── COMPREHENSIVE SERVICES ───── */
    #comprehensive-services {
        background: var(--gray-soft);
    }

    .comprehensive-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 38px;
    }

    .comprehensive-card {
        background: var(--white);
        border: 1px solid rgba(207, 255, 229, 0.55);
        border-radius: var(--radius-lg);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.1fr 1.4fr;
        min-height: 280px;
        box-shadow: 0 8px 30px rgba(17, 34, 24, 0.06);
    }

    .comprehensive-image {
        background: var(--charcoal);
        min-height: 100%;
    }

    .comprehensive-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .comprehensive-content {
        padding: 30px 32px;
    }

    .comprehensive-title {
        font-size: 30px;
        line-height: 1.2;
        color: var(--black);
        margin-bottom: 14px;
    }

    .comprehensive-desc {
        font-size: 15px;
        line-height: 1.8;
        color: var(--gray-text);
        margin-bottom: 14px;
    }

    .comprehensive-list {
        margin: 0;
        padding-left: 18px;
    }

    .comprehensive-list li {
        color: var(--gray-text);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .map-placeholder {
        background: var(--charcoal);
        border-radius: var(--radius-lg);
        overflow: hidden;
        aspect-ratio: 1/1;
        position: relative;
        min-height: 400px;
    }

    .map-placeholder iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-card {
        background: var(--gray-soft);
        border: 1px solid rgba(207, 255, 229, 0.5);
        border-radius: var(--radius);
        padding: 24px 28px;
        display: flex;
        align-items: center;
        gap: 20px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .contact-card:hover {
        border-color: var(--mint-deep);
        transform: translateX(4px);
        box-shadow: 0 6px 24px rgba(110, 219, 168, 0.1);
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        background: var(--mint);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        min-width: 52px;
    }

    .contact-label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gray-text);
        margin-bottom: 4px;
    }

    .contact-value {
        font-size: 17px;
        font-weight: 700;
        color: var(--black);
    }

    .contact-sub {
        font-size: 13px;
        color: var(--gray-text);
        margin-top: 2px;
    }

    /* ───── FOOTER ───── */
    footer {
        background: var(--black);
        padding: 0;
    }

    .footer-card {
        max-width: 800px;
        margin: 0 auto;
        padding: 52px 48px;
        text-align: center;
    }

    .footer-logo {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        color: var(--mint);
        font-weight: 900;
        margin-bottom: 8px;
    }

    .footer-address {
        font-size: 14px;
        color: rgba(207, 255, 229, 0.45);
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .footer-actions {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 36px;
    }

    .footer-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 22px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.25s;
    }

    .footer-btn.call {
        background: var(--mint);
        color: var(--black);
    }

    .footer-btn.call:hover {
        background: var(--white);
    }

    .footer-btn.email {
        background: transparent;
        border: 1.5px solid rgba(207, 255, 229, 0.25);
        color: var(--mint);
    }

    .footer-btn.email:hover {
        border-color: var(--mint-deep);
        background: rgba(207, 255, 229, 0.07);
    }

    .footer-btn.map {
        background: transparent;
        border: 1.5px solid rgba(207, 255, 229, 0.25);
        color: var(--mint);
    }

    .footer-btn.map:hover {
        border-color: var(--mint-deep);
        background: rgba(207, 255, 229, 0.07);
    }

    .footer-divider {
        border: none;
        border-top: 1px solid rgba(207, 255, 229, 0.08);
        margin: 0 0 20px;
    }

    .footer-copy {
        font-size: 12px;
        color: rgba(207, 255, 229, 0.3);
        letter-spacing: 0.04em;
    }

    /* ───── RESPONSIVE ───── */
    @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .areas-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 768px) {

        .hero-container,
        .why-grid,
        .contact-grid,
        .split-layout {
            grid-template-columns: 1fr;
        }

        .hero-image-wrap {
            transform: none;
            order: -1;
        }

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

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

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

        .section-inner {
            padding: 0 24px;
        }

        .why-accent-img {
            right: -12px;
            bottom: -12px;
            width: 140px;
            height: 140px;
        }

        .dock-nav {
            bottom: 16px;
            padding: 8px 16px;
        }

        .dock-item span {
            display: none;
        }

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

        .comprehensive-card {
            grid-template-columns: 1fr;
        }

        .comprehensive-image {
            height: 240px;
        }

        .comprehensive-content {
            padding: 24px 20px;
        }

        .comprehensive-title {
            font-size: 24px;
        }
    }