/* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --dark: #023336;
            --green: #4da674;
            --green-hover: #3d8f62;
            --light-green: #c1e6ba;
            --pale: #eaf8e7;
            --white: #ffffff;
            --gray-50: #f8faf8;
            --gray-100: #f0f4f0;
            --gray-400: #8a9a8a;
            --gray-600: #4a5a4a;
            --shadow-sm: 0 1px 3px rgba(2,51,54,.08);
            --shadow-md: 0 4px 20px rgba(2,51,54,.1);
            --shadow-lg: 0 12px 40px rgba(2,51,54,.15);
            --shadow-xl: 0 20px 60px rgba(2,51,54,.18);
            --radius: 12px;
            --radius-lg: 20px;
            --transition: .3s cubic-bezier(.4,0,.2,1);
        }

        html { scroll-behavior: smooth; scroll-padding-top: 80px; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(2,51,54,.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(77,166,116,.15);
            transition: var(--transition);
        }

        .header.scrolled {
            background: rgba(2,51,54,.98);
            box-shadow: 0 4px 30px rgba(0,0,0,.2);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-img {
            width: 52px;
            height: 52px;
            object-fit: contain;
            border-radius: 6px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: 1.5px;
        }

        .logo-text small {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-top: -2px;
        }

        /* NAV */
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
        }

        .nav-list a {
            display: block;
            padding: 8px 14px;
            font-size: 13.5px;
            font-weight: 500;
            color: rgba(255,255,255,.8);
            border-radius: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-list a:hover,
        .nav-list a.active {
            color: var(--white);
            background: rgba(77,166,116,.2);
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .hamburger:hover { background: rgba(255,255,255,.1); }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ===== PAGE HERO ===== */
        .page-hero {
            position: relative;
            padding: 160px 0 100px;
            background: var(--dark);
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(77,166,116,.12), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -250px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(193,230,186,.08), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero-inner { position: relative; z-index: 1; }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,.5);
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: rgba(255,255,255,.6);
            transition: var(--transition);
        }

        .breadcrumb a:hover { color: var(--green); }

        .breadcrumb-sep {
            width: 16px;
            height: 16px;
            stroke: rgba(255,255,255,.35);
            stroke-width: 2;
            fill: none;
        }

        .breadcrumb-current { color: var(--green); font-weight: 600; }

        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .page-hero h1 span { color: var(--green); }

        .page-hero-desc {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            color: rgba(255,255,255,.65);
            max-width: 600px;
            line-height: 1.75;
        }

        /* ===== SECTION SHARED ===== */
        .section { padding: 100px 0; }
        .section-pale { background: var(--pale); }
        .section-white { background: var(--white); }
        .section-dark { background: var(--dark); color: var(--white); }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 660px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== SERVICES SHOWCASE (alternating image + text) ===== */
        .svc-showcase { display: flex; flex-direction: column; gap: 0; }

        .svc-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 480px;
        }

        .svc-row:nth-child(even) .svc-row-img { order: 2; }
        .svc-row:nth-child(even) .svc-row-content { order: 1; }

        .svc-row-img {
            position: relative;
            overflow: hidden;
        }

        .svc-row-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .svc-row:hover .svc-row-img img { transform: scale(1.04); }

        .svc-row-num {
            position: absolute;
            top: 24px;
            left: 24px;
            width: 52px;
            height: 52px;
            background: rgba(2,51,54,.85);
            backdrop-filter: blur(8px);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--green);
            border: 1px solid rgba(77,166,116,.3);
            z-index: 2;
        }

        .svc-row:nth-child(even) .svc-row-num {
            left: auto;
            right: 24px;
        }

        .svc-row-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 56px 64px;
        }

        .svc-row:nth-child(odd) .svc-row-content { background: var(--white); }
        .svc-row:nth-child(even) .svc-row-content { background: var(--pale); }

        .svc-row-icon {
            width: 56px;
            height: 56px;
            background: var(--pale);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .svc-row:nth-child(even) .svc-row-icon { background: var(--white); }

        .svc-row:hover .svc-row-icon { background: var(--green); }
        .svc-row:hover .svc-row-icon svg { stroke: var(--white); }

        .svc-row-icon svg {
            width: 26px;
            height: 26px;
            stroke: var(--green);
            stroke-width: 2;
            fill: none;
        }

        .svc-row-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .svc-row-content p {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .svc-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .svc-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .95rem;
            font-weight: 500;
            color: var(--dark);
        }

        .svc-check {
            width: 22px;
            height: 22px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .svc-check svg {
            width: 12px;
            height: 12px;
            stroke: var(--white);
            stroke-width: 3;
            fill: none;
        }

        /* ===== QUICK SERVICES GRID ===== */
        .quick-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .quick-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(2,51,54,.06);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .quick-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--green);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }

        .quick-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .quick-card:hover::before { transform: scaleX(1); }

        .quick-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--light-green);
            line-height: 1;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .quick-card:hover .quick-num { color: var(--green); }

        .quick-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .quick-card p {
            font-size: .93rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== PROCESS SECTION ===== */
        .process-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .process-track::before {
            content: '';
            position: absolute;
            top: 44px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: var(--light-green);
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-circle {
            width: 88px;
            height: 88px;
            margin: 0 auto 24px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .process-step:hover .process-circle {
            background: var(--green);
            transform: scale(1.08);
        }

        .process-step:hover .process-circle svg { stroke: var(--white); }

        .process-circle svg {
            width: 32px;
            height: 32px;
            stroke: var(--green);
            stroke-width: 2;
            fill: none;
            transition: var(--transition);
        }

        .process-step h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .process-step p {
            font-size: .88rem;
            color: var(--gray-600);
            line-height: 1.6;
            max-width: 200px;
            margin: 0 auto;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark) 0%, #045a60 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(77,166,116,.15), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-inner {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta-banner p {
            font-size: 1.1rem;
            color: rgba(255,255,255,.7);
            max-width: 520px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 15px 32px;
            border-radius: 10px;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-primary { background: var(--green); color: var(--dark); }

        .btn-primary:hover {
            background: var(--green-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(77,166,116,.35);
        }

        .btn-outline-light {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,.35);
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--dark);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .btn-dark { background: var(--dark); color: var(--white); }

        .btn-dark:hover {
            background: #034a4f;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(2,51,54,.35);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .footer-brand p {
            color: rgba(255,255,255,.6);
            font-size: .92rem;
            line-height: 1.7;
            margin-top: 16px;
        }

        .footer h4 {
            font-size: .85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 20px;
        }

        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }

        .footer-links a {
            font-size: .92rem;
            color: rgba(255,255,255,.6);
            transition: var(--transition);
        }

        .footer-links a:hover { color: var(--white); padding-left: 4px; }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            font-size: .85rem;
            color: rgba(255,255,255,.45);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MOBILE NAV ===== */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 76px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(2,51,54,.98);
            backdrop-filter: blur(12px);
            z-index: 999;
            padding: 32px 24px;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4,0,.2,1);
        }

        .mobile-nav.open { transform: translateX(0); }

        .mobile-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav-list a {
            display: block;
            padding: 16px 20px;
            font-size: 16px;
            font-weight: 500;
            color: rgba(255,255,255,.8);
            border-radius: 10px;
            transition: var(--transition);
        }

        .mobile-nav-list a:hover { background: rgba(77,166,116,.15); color: var(--white); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hamburger { display: flex; }
            .desktop-nav { display: none; }
            .mobile-nav { display: block; }
            .svc-row { grid-template-columns: 1fr; min-height: auto; }
            .svc-row:nth-child(even) .svc-row-img { order: unset; }
            .svc-row:nth-child(even) .svc-row-content { order: unset; }
            .svc-row-img { aspect-ratio: 16/9; max-height: 400px; }
            .svc-row:nth-child(even) .svc-row-num { left: 24px; right: auto; }
            .quick-grid { grid-template-columns: repeat(2, 1fr); }
            .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .process-track::before { display: none; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 640px) {
            .section { padding: 64px 0; }
            .page-hero { padding: 130px 0 64px; }
            .svc-row-content { padding: 36px 24px; }
            .quick-grid { grid-template-columns: 1fr; }
            .process-track { grid-template-columns: 1fr; }
            .cta-btns { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
            .section-header { margin-bottom: 40px; }
        }