:root {
    --green-start: #11998E;
    --green-end: #38EF7D;
    --ink: #060f0e;
    --ink2: #0d1f1d;
    --ink3: #112220;
    --light: #f0fdf8;
    --mid: #d1fae5;
    --text-main: #e8f5f0;
    --text-muted: #7ec8b0;
    --grad: linear-gradient(135deg, #11998E, #38EF7D);
    --grad-r: linear-gradient(135deg, #38EF7D, #11998E);
    --shadow-green: 0 0 40px rgba(56, 239, 125, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    background: var(--ink);
    color: var(--text-main);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════
NAVBAR — Slide-In from Top
═══════════════════════════════════════ */
#navbar {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 15, 14, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(56, 239, 125, 0.2);
    transition: top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    height: 70px;
    display: flex;
    align-items: center;
}

#navbar.visible {
    top: 0;
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-logo span {
    color: white;
    -webkit-text-fill-color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #38EF7D;
}

.nav-cta {
    background: var(--grad);
    color: var(--ink) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 4px;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    -webkit-text-fill-color: var(--ink) !important;
}

.nav-burger {
    display: none;
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #38EF7D;
    margin: 5px 0;
    transition: all 0.3s;
}

/* ═══════════════════════════════════════
HERO — Typewriter Scattered Words
═══════════════════════════════════════ */
#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--ink);
}

/* Subtle noise texture overlay */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* Radial glow at center */
#hero::after {
    content: '';
    position: absolute;
    top: 42%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse, rgba(17, 153, 142, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Each scattered word */
.tw-word {
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: -1px;
    z-index: 5;
    opacity: 0;
}

.tw-word.accent-word {
    background: linear-gradient(135deg, #11998E, #38EF7D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tw-word.dim-word {
    color: rgba(255, 255, 255, 0.55);
}

/* Blinking cursor */
.tw-cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background: #38EF7D;
    vertical-align: middle;
    margin-left: 4px;
    animation: blink 0.6s step-end infinite;
    position: absolute;
    opacity: 0;
    z-index: 20;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Image stamp */
.hero-stamp {
    position: absolute;
    width: 280px;
    height: 340px;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 8;
    border: 8px solid #38EF7D;
    overflow: hidden;
    transition: none;
}

.hero-stamp.pop {
    animation: stampPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes stampPop {
    from {
        transform: translate(-50%, -50%) scale(0);
    }

    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.hero-stamp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(1.1);
}

.stamp-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.stamp-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    letter-spacing: 6px;
    color: #38EF7D;
    opacity: 0.38;
    transform: rotate(-15deg);
    text-transform: uppercase;
    border: 4px solid rgba(56, 239, 125, 0.35);
    padding: 0.3rem 1.2rem;
    white-space: nowrap;
}

/* Hero bottom panel */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6, 15, 14, 0.97) 55%, transparent);
    padding: 3rem 6vw 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    z-index: 10;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--grad);
    color: var(--ink);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 30px rgba(56, 239, 125, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(56, 239, 125, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #38EF7D;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    border: 1.5px solid rgba(56, 239, 125, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(56, 239, 125, 0.1);
    border-color: #38EF7D;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.trust-badge .badge-icon {
    width: 28px;
    height: 28px;
    background: rgba(56, 239, 125, 0.1);
    border: 1px solid rgba(56, 239, 125, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════
STATS SECTION
═══════════════════════════════════════ */
#stats {
    background: var(--ink2);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(17, 153, 142, 0.08) 0%, transparent 70%);
}

.stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat-item {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(56, 239, 125, 0.1);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

.stat-desc {
    font-size: 0.82rem;
    color: rgba(126, 200, 176, 0.6);
    margin-top: 0.3rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════
ABOUT US
═══════════════════════════════════════ */
#about {
    padding: 7rem 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

#about::after {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 153, 142, 0.06) 0%, transparent 70%);
}

.about-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-imgs {
    position: relative;
    height: 520px;
}

.about-img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 75%;
    border-radius: 2px;
    object-fit: cover;
    filter: brightness(0.9);
    border: 2px solid rgba(56, 239, 125, 0.15);
}

.about-img2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 55%;
    border-radius: 2px;
    object-fit: cover;
    filter: brightness(0.9);
    border: 2px solid rgba(56, 239, 125, 0.15);
    outline: 12px solid var(--ink);
}

.about-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--grad);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 5;
    box-shadow: 0 0 40px rgba(56, 239, 125, 0.4);
}

.about-content {}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #38EF7D;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--grad);
}

.section-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-h2 .accent {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.about-feature .f-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(56, 239, 125, 0.1);
    border: 1px solid rgba(56, 239, 125, 0.25);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ═══════════════════════════════════════
SERVICES — Full-Screen Stacked
═══════════════════════════════════════ */
#services {
    position: relative;
}

.services-progress {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 200px;
    background: rgba(56, 239, 125, 0.1);
    border-radius: 3px;
    z-index: 500;
    display: none;
}

.services-progress-fill {
    width: 100%;
    background: var(--grad);
    border-radius: 3px;
    transition: height 0.2s;
    height: 0%;
}

.service-panel {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    clip-path: inset(0 0 0 0);
}

/* Panel 1 — Text Left + Large Number Right */
.sp1 {
    background: var(--ink2);
    padding: 5rem 6vw;
}

.sp1-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}

.sp1-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(120px, 20vw, 260px);
    line-height: 0.85;
    background: linear-gradient(180deg, rgba(56, 239, 125, 0.12) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    letter-spacing: -10px;
}

/* Panel 2 — Diagonal Split */
.sp2 {
    background: var(--ink);
    padding: 0;
}

.sp2-inner {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sp2-left {
    background: var(--ink3);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    position: relative;
    z-index: 2;
}

.sp2-right {
    background: var(--ink);
    padding: 6rem 4rem 6rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sp2-icon-big {
    font-size: 8rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(56, 239, 125, 0.3));
}

/* Panel 3 — Centered with concentric rings */
.sp3 {
    background: var(--ink2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.sp3-inner {
    position: relative;
    max-width: 700px;
    text-align: center;
    z-index: 5;
}

.sp3-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.sp3-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(56, 239, 125, 0.06);
    transform: translate(-50%, -50%);
    top: 0;
    left: 0;
}

/* Panel 4 — Text Bottom Left + BG fill */
.sp4 {
    background: #0a1e1a;
    padding: 0;
    position: relative;
}

.sp4-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/about1.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.5);
}

.sp4-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 5rem 6vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
}

.sp4-content {
    max-width: 600px;
}

/* Panel 5 — Two columns with image */
.sp5 {
    background: var(--ink);
    padding: 5rem 6vw;
}

.sp5-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.sp5-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.8) saturate(1.2);
    border: 1px solid rgba(56, 239, 125, 0.15);
}

/* Panel 6 — Features grid */
.sp6 {
    background: var(--ink2);
    padding: 5rem 6vw;
}

.sp6-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.sp6-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    background: rgba(56, 239, 125, 0.08);
    border: 1px solid rgba(56, 239, 125, 0.08);
}

.sp6-item {
    background: var(--ink2);
    padding: 2.5rem;
    border: 1px solid rgba(56, 239, 125, 0.06);
    transition: background 0.3s;
}

.sp6-item:hover {
    background: rgba(17, 153, 142, 0.08);
}

.sp6-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* Shared service text */
.svc-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #38EF7D;
    margin-bottom: 0.8rem;
}

.svc-h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.svc-p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.svc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.svc-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #38EF7D;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
WHY CHOOSE US
═══════════════════════════════════════ */
#why {
    padding: 8rem 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    left: -200px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(17, 153, 142, 0.07) 0%, transparent 70%);
}

.why-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
}

.why-imgs {
    position: relative;
    height: 340px;
}

.why-img1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(56, 239, 125, 0.15);
    filter: brightness(0.8);
}

.why-img2 {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 48%;
    height: 64%;
    object-fit: cover;
    border-radius: 2px;
    border: 2px solid rgba(56, 239, 125, 0.2);
    filter: brightness(0.8);
    outline: 10px solid var(--ink);
    z-index: 3;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(56, 239, 125, 0.08);
}

.why-card {
    background: var(--ink);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.why-card:hover {
    background: rgba(17, 153, 142, 0.08);
}

.why-card::before {
    content: attr(data-num);
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    color: rgba(56, 239, 125, 0.04);
    line-height: 1;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(56, 239, 125, 0.1);
    border: 1px solid rgba(56, 239, 125, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.why-h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.7rem;
}

.why-p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
FAQ
═══════════════════════════════════════ */
#faq {
    padding: 7rem 0;
    background: var(--ink2);
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(56, 239, 125, 0.1);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.faq-q:hover {
    color: #38EF7D;
}

.faq-q.open {
    color: #38EF7D;
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1px solid rgba(56, 239, 125, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #38EF7D;
    transition: transform 0.3s;
}

.faq-q.open .faq-icon {
    transform: rotate(45deg);
}

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

.faq-a-inner {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-bottom: 1.5rem;
}

/* ═══════════════════════════════════════
CTA SECTION
═══════════════════════════════════════ */
#cta {
    padding: 7rem 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(17, 153, 142, 0.1) 0%, transparent 70%);
}

.cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-left {}

.cta-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.cta-h2 .g {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-right {}

.service-area-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #38EF7D;
    margin-bottom: 1.5rem;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.city-card {
    background: rgba(17, 153, 142, 0.06);
    border: 1px solid rgba(56, 239, 125, 0.12);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    transition: all 0.2s;
}

.city-card:hover {
    background: rgba(17, 153, 142, 0.12);
    border-color: rgba(56, 239, 125, 0.3);
    transform: translateY(-2px);
}

.city-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.city-services {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
SERVICE AREAS — Large Icon Grid
═══════════════════════════════════════ */
#service-areas {
    padding: 7rem 0;
    background: var(--ink2);
}

.sa-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sa-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(56, 239, 125, 0.06);
}

.sa-card {
    background: var(--ink2);
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: background 0.3s;
}

.sa-card:hover {
    background: rgba(17, 153, 142, 0.08);
}

.sa-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: var(--grad);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 30px rgba(56, 239, 125, 0.25);
}

.sa-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.sa-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
CONTACT
═══════════════════════════════════════ */
#contact {
    background: var(--ink);
    padding: 6rem 0 0;
}

.contact-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    margin-bottom: 3rem;
}

.contact-info {}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(56, 239, 125, 0.08);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(56, 239, 125, 0.1);
    border: 1px solid rgba(56, 239, 125, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #38EF7D;
    margin-bottom: 0.3rem;
}

.contact-val {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.contact-val a {
    color: inherit;
    text-decoration: none;
}

.contact-val a:hover {
    color: #38EF7D;
}

.contact-val-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.map-placeholder {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(56, 239, 125, 0.15);
    background: var(--ink3);
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
}

.map-placeholder iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(0.9) hue-rotate(140deg) brightness(0.7) saturate(2);
}

.map-overlay-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--grad);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* ═══════════════════════════════════════
FOOTER — Split Layout
═══════════════════════════════════════ */
#footer {
    background: var(--ink2);
    border-top: 1px solid rgba(56, 239, 125, 0.1);
    padding: 3rem 0 0;
}

.footer-split {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
}

.footer-left {}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #38EF7D;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(56, 239, 125, 0.08);
    border: 1px solid rgba(56, 239, 125, 0.2);
    border-radius: 6px;
    padding: 0.9rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    min-width: 200px;
}

.footer-btn:hover {
    background: rgba(56, 239, 125, 0.15);
    border-color: #38EF7D;
    transform: translateX(-4px);
}

.footer-btn .fb-icon {
    font-size: 1.2rem;
}

.footer-btn.primary {
    background: var(--grad);
    color: var(--ink);
    border-color: transparent;
}

.footer-btn.primary:hover {
    box-shadow: 0 4px 30px rgba(56, 239, 125, 0.4);
}

.footer-copy {
    background: var(--ink);
    border-top: 1px solid rgba(56, 239, 125, 0.08);
    text-align: center;
    padding: 1.2rem;
    font-size: 0.78rem;
    color: rgba(126, 200, 176, 0.5);
    letter-spacing: 1px;
}

.footer-copy span {
    color: #38EF7D;
}

/* ═══════════════════════════════════════
FLOATING PHONE
═══════════════════════════════════════ */
.floating-phone {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--grad);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(56, 239, 125, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 30px rgba(56, 239, 125, 0.4);
    }

    50% {
        box-shadow: 0 4px 50px rgba(56, 239, 125, 0.7);
    }
}

/* ═══════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {

    .about-inner,
    .sp1-inner,
    .sp5-inner,
    .why-header,
    .cta-inner,
    .contact-top,
    .footer-split {
        grid-template-columns: 1fr;
    }

    .sp2-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sp2-left {
        clip-path: none;
    }

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

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

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

    .sp1-num {
        display: none;
    }

    .about-imgs {
        height: 360px;
    }

    .footer-right {
        align-items: flex-start;
    }

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

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

    .nav-burger {
        display: block;
    }

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

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

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

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

    .sa-card {
        flex-direction: column;
    }

    .footer-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-bottom {
        padding: 3rem 1.5rem 2rem;
    }

    .sp2-right {
        padding: 3rem 2rem;
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}