        :root {
            --bg: #f6f2ed;
            --bg-contrast: #10231a;
            --primary: #1f7a5a;
            --primary-dark: #0e5b41;
            --accent: #f5a524;
            --muted: #4e5c57;
            --card: rgba(255, 255, 255, 0.92);
            --stroke: rgba(31, 122, 90, 0.25);
            --shadow: 0 30px 80px rgba(12, 28, 20, 0.18);
        }

        * {
            box-sizing: border-box;
        }

        /* Prevent zoom on input focus for mobile */
        input[type="text"],
        input[type="number"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            font-size: 16px;
        }

        /* Better touch targets */
        button,
        a,
        input,
        select {
            -webkit-tap-highlight-color: rgba(16, 185, 129, 0.2);
            touch-action: manipulation;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        *:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .skip-link:focus {
            left: 10px;
            top: 10px;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--bg-contrast);
            background: radial-gradient(circle at top, rgba(255, 255, 255, 1) 0%, #f6f2ed 55%, #f1ece3 100%);
            line-height: 1.7;
            margin: 0;
            overflow-x: hidden;
            position: relative;
            -webkit-overflow-scrolling: touch;
        }

        /* Prevent horizontal overflow globally */
        html,
        body {
            max-width: 100%;
            overflow-x: hidden;
        }

        *,
        *::before,
        *::after {
            max-width: 100%;
        }

        .page-noise {
            position: fixed;
            inset: 0;
            background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
            background-size: 3px 3px;
            opacity: 0.7;
            pointer-events: none;
            z-index: -2;
        }

        .container {
            max-width: 100%;
            overflow-x: hidden;
        }

        section {
            padding: 50px 0;
            overflow-x: hidden;
        }

        .section-label {
            font-size: 0.85rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Fraunces', serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-intro {
            max-width: 640px;
            color: var(--muted);
            margin-bottom: 30px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(15, 31, 23, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
            padding: 8px 0;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(16, 185, 129, 0.1);
            position: sticky;
            top: 0;
            z-index: 1030;
            width: 100%;
        }

        .navbar-toggler {
            border: 2px solid #10b981;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background: rgba(16, 185, 129, 0.1);
            border-color: #059669;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2310b981' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 4px 0;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 4px 12px rgba(31, 122, 90, 0.2));
        }
        
        .navbar .container {
            position: relative;
        }

        .navbar-logo {
            height: 90px;
            max-width: 220px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
        }

        .logo-sub {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            white-space: nowrap;
        }

        .navbar-nav {
            flex-wrap: nowrap;
        }

        /* Force navbar to be visible on desktop */
        @media (min-width: 992px) {
            .navbar-collapse {
                display: flex !important;
                flex-basis: auto;
                visibility: visible !important;
                opacity: 1 !important;
            }
            .navbar-nav {
                flex-direction: row;
                display: flex !important;
            }
            .navbar-toggler {
                display: none;
            }
        }
        
        /* Ensure navbar items are always visible */
        .navbar-collapse.collapse {
            display: flex !important;
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                padding: 20px;
                border-radius: 12px;
                margin-top: 15px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            }
            .navbar-nav {
                flex-direction: column;
            }
            .nav-link {
                padding: 12px 16px;
                margin: 4px 0;
            }
        }

        .nav-link {
            color: #0f172a !important;
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            white-space: nowrap;
            padding: 6px 10px;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: block;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 2px;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover::after,
        .nav-link:focus::after,
        .nav-link.active::after {
            width: 80%;
        }

        .nav-link:hover {
            color: #10b981 !important;
            background: rgba(16, 185, 129, 0.08);
        }

        .nav-link.active {
            color: #10b981 !important;
            font-weight: 700;
            background: rgba(16, 185, 129, 0.12);
        }

        .btn-primary {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25), 0 4px 12px rgba(5, 150, 105, 0.15);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35), 0 6px 15px rgba(5, 150, 105, 0.2);
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: white;
            border-radius: 999px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(31,122,90,0.3);
        }

        .hero-section {
            position: relative;
            overflow: hidden;
            padding: 100px 0 80px;
            background: linear-gradient(135deg, #f6f2ed 0%, #ffffff 50%, rgba(31,122,90,0.04) 100%);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(245,165,36,0.08) 0%, transparent 60%);
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40%;
            height: 60%;
            background: radial-gradient(circle at 20% 80%, rgba(31,122,90,0.06) 0%, transparent 70%);
            z-index: 0;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        .eyebrow-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: white;
            background: linear-gradient(135deg, var(--primary), #2a9d74);
            padding: 10px 20px;
            border-radius: 999px;
            margin-bottom: 24px;
            box-shadow: 0 4px 15px rgba(31,122,90,0.25);
        }

        .eyebrow-pill i {
            animation: sparkleIcon 2s ease-in-out infinite;
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
        }

        @keyframes sparkleIcon {
            0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.8; transform: scale(1.2) rotate(15deg); }
        }

        .hero-title {
            font-family: 'Fraunces', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.15;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .hero-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 6px;
            background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
            border-radius: 999px;
            margin-top: 20px;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            line-height: 1.7;
            color: var(--muted);
            max-width: 540px;
        }

        .hero-pillars {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 32px 0;
        }

        .hero-pill {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            padding: 14px 20px;
            box-shadow: 0 4px 15px rgba(15, 31, 23, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(16, 185, 129, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .hero-pill:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(59, 130, 246, 0.1);
            border-color: #10b981;
            background: rgba(255, 255, 255, 1);
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            margin: 35px 0;
        }

        .hero-cta .btn {
            padding: 16px 32px;
            font-weight: 600;
            font-size: 1rem;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            color: var(--muted);
            font-size: 0.9rem;
            font-weight: 500;
            padding-top: 20px;
            border-top: 2px solid rgba(31,122,90,0.1);
        }

        .hero-trust span {
            background: linear-gradient(135deg, rgba(31, 122, 90, 0.08), rgba(31, 122, 90, 0.12));
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 600;
            color: var(--primary);
            border: 1px solid rgba(31,122,90,0.15);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .hero-trust span::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
        }

        .hero-visual {
            position: relative;
            background: white;
            border-radius: 32px;
            padding: 20px;
            box-shadow: 0 30px 60px rgba(15, 31, 23, 0.15);
            border: 1px solid rgba(31,122,90,0.1);
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            inset: -10px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            border-radius: 36px;
            z-index: -1;
            opacity: 0.1;
        }

        .hero-visual img {
            width: 100%;
            border-radius: 24px;
            max-height: 580px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-visual:hover img {
            transform: scale(1.02);
        }

        .hero-float-card {
            position: absolute;
            right: 20px;
            bottom: -35px;
            background: linear-gradient(135deg, #1a3a2e, #103523);
            color: white;
            padding: 20px 24px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            width: 240px;
            border: 2px solid rgba(245,165,36,0.3);
        }

        .hero-float-card p {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .hero-float-card small {
            color: var(--accent);
            font-weight: 600;
        }

        .hero-metric {
            position: absolute;
            top: -60px;
            left: 20px;
            background: linear-gradient(135deg, white, #f9f9f9);
            padding: 20px 26px;
            border-radius: 20px;
            border: 2px solid rgba(31,122,90,0.15);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .hero-metric strong {
            font-size: 2.5rem;
            color: var(--primary);
            display: block;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-metric::before {
            content: '';
            position: absolute;
            top: -4px;
            right: -4px;
            width: 30px;
            height: 30px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.2;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .about-media {
            position: relative;
        }

        .about-media::after {
            content: '';
            position: absolute;
            inset: 20px;
            border-radius: 24px;
            border: 1px dashed rgba(31, 122, 90, 0.4);
            z-index: -1;
        }

        .about-media img {
            width: 100%;
            border-radius: 32px;
            box-shadow: var(--shadow);
        }

        .about-accolades {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .about-accolades span {
            padding: 12px 20px;
            border-radius: 999px;
            border: 2px solid rgba(16, 185, 129, 0.2);
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,250,250,0.95) 100%);
            font-weight: 700;
            font-size: 0.9rem;
            color: #1e293b;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
            transition: all 0.3s ease;
        }

        .about-accolades span:hover {
            transform: translateY(-2px);
            border-color: #10b981;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
        }

        .bio-chips {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
            margin: 25px 0;
        }

        .bio-chip {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 16px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
            color: #1e293b;
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.5;
            border: 1px solid rgba(16, 185, 129, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 60px;
        }

        .bio-chip:hover {
            transform: translateX(4px);
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
            border-color: #10b981;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
        }

        .bio-chip i {
            color: #10b981;
            font-size: 1.1rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .value-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .value-card {
            padding: 24px;
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,250,250,0.95) 100%);
            border-radius: 20px;
            border: 1px solid rgba(16, 185, 129, 0.15);
            box-shadow: 0 8px 20px rgba(15,31,23,0.08), 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .value-card:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15), 0 5px 15px rgba(0,0,0,0.06);
            border-color: #10b981;
        }

        .value-card span {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .signature {
            margin-top: 30px;
            font-family: 'Fraunces', serif;
            font-size: 1.3rem;
            color: var(--primary);
        }

        .stats-panel {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: white;
            border-radius: 34px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(15,23,42,0.4), 0 8px 20px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .stats-panel::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-panel .stat {
            text-align: center;
        }

        .stat h3 {
            font-size: 3.5rem;
            font-family: 'Fraunces', serif;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.3));
            animation: statGlow 3s ease-in-out infinite;
        }

        @keyframes statGlow {
            0%, 100% { filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.3)); }
            50% { filter: drop-shadow(0 6px 20px rgba(251, 191, 36, 0.5)); }
        }

        .stat p {
            color: rgba(255,255,255,0.7);
        }

        .services-section {
            background: linear-gradient(180deg, rgba(16,35,26,0.05), transparent);
        }

        .services-grid {
            margin-top: 35px;
            position: relative;
            padding: 0 50px;
        }

        .service-card {
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
            border-radius: 24px;
            padding: 28px;
            border: 1px solid rgba(16, 185, 129, 0.1);
            box-shadow: 0 10px 30px rgba(15,31,23,0.06), 0 4px 12px rgba(0,0,0,0.03);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 320px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card h4 {
            margin-top: auto;
            margin-bottom: 12px;
        }

        .service-card p {
            margin-top: auto;
        }

        .service-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: #10b981;
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15), 0 8px 20px rgba(59, 130, 246, 0.1);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #10b981 !important;
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            width: 56px !important;
            height: 56px !important;
            border-radius: 16px !important;
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15), 0 2px 8px rgba(0,0,0,0.08) !important;
            border: 2px solid rgba(16, 185, 129, 0.2) !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            z-index: 100 !important;
            cursor: pointer !important;
            pointer-events: auto !important;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%) !important;
            color: white !important;
            transform: translateY(-50%) scale(1.1) !important;
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3), 0 4px 12px rgba(59, 130, 246, 0.2) !important;
            border-color: transparent !important;
        }

        .swiper-button-next {
            right: -35px !important;
        }

        .swiper-button-prev {
            left: -35px !important;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px !important;
            font-weight: 900 !important;
        }

        .swiper-button-disabled {
            opacity: 0.5 !important;
            cursor: not-allowed !important;
        }

        .swiper-pagination {
            bottom: -40px !important;
        }

        .swiper-pagination-bullet {
            background: var(--primary);
            opacity: 0.25;
            width: 10px;
            height: 10px;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: linear-gradient(135deg, var(--accent), #f7b84d);
            width: 28px;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(245,165,36,0.4);
        }

        .icon-bubble {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.6rem;
            margin-bottom: 18px;
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3), 0 4px 12px rgba(59, 130, 246, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .icon-bubble::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            animation: iconGlow 3s ease-in-out infinite;
        }

        @keyframes iconGlow {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10%, 10%); }
        }

        .icon-bubble:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4), 0 6px 16px rgba(59, 130, 246, 0.3);
        }

        .process-track {
            position: relative;
            margin-top: 40px;
        }

        .process-track::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(31,122,90,0.2);
            z-index: 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 25px;
        }

        .process-step {
            background: white;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            z-index: 1;
        }

        .process-step span {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 12px;
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
        }

        .process-step:hover span {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
        }

        .offerings-grid {
            margin-top: 30px;
            position: relative;
            padding: 0 70px;
            margin-bottom: 50px;
            overflow: visible;
        }

        .services-grid {
            position: relative;
            padding: 0 70px;
            margin-bottom: 50px;
            overflow: visible;
        }

        .services-grid .swiper,
        .offerings-grid .swiper {
            padding-bottom: 50px;
            overflow: hidden;
            width: 100%;
        }

        .services-grid .swiper-wrapper,
        .offerings-grid .swiper-wrapper {
            overflow: visible;
        }

        .offering-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 25px 45px rgba(15,31,23,0.08);
            display: flex;
            flex-direction: column;
            height: 520px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .offering-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px rgba(15,31,23,0.15), 0 0 0 1px rgba(31,122,90,0.2);
            border-color: rgba(31,122,90,0.2);
        }

        .offering-card img {
            height: 190px;
            object-fit: cover;
            width: 100%;
            flex-shrink: 0;
        }

        .offering-card .card-body img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            border-radius: 16px;
            margin-bottom: 20px;
            background-color: #f8f9fa;
        }

        .offering-card .card-body {
            padding: 24px 22px 28px 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
            text-align: center;
        }

        .offering-card h5 {
            margin-bottom: 10px;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--bg-contrast);
            line-height: 1.3;
            min-height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .offering-card p {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 8px;
            flex-grow: 0;
        }

        .offering-card p:first-of-type {
            min-height: 65px;
        }

        .offering-card p:last-of-type {
            margin-bottom: 16px;
        }

        .offering-card .btn {
            margin-top: auto;
            width: 100%;
            padding: 10px 24px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .offering-card .icon-bubble {
            margin: 0 auto 16px;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
        }

        .offering-card p[style*="color: var(--muted)"] {
            color: var(--muted) !important;
            font-size: 0.85rem !important;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(31,122,90,0.08);
            padding: 6px 14px;
            border-radius: 999px;
            margin: 8px auto !important;
        }

        .offering-card .btn-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }

        .offerings-highlight {
            margin-top: 35px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
        }

        .highlight-card {
            background: rgba(16,35,26,0.85);
            color: white;
            border-radius: 22px;
            padding: 26px;
            box-shadow: 0 25px 45px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .highlight-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(245,165,36,0.4), transparent 55%);
            pointer-events: none;
        }

        .highlight-card h5 {
            font-family: 'Fraunces', serif;
            margin-bottom: 10px;
        }

        .highlight-card p {
            margin-bottom: 0;
            color: rgba(255,255,255,0.8);
        }

        .testimonials-section {
            background: #101d16;
            color: white;
            border-radius: 40px;
            margin: 60px auto;
            padding: 60px 0;
        }

        .testimonial-grid {
            position: relative;
            padding: 0 70px;
        }

        .testimonial-grid .swiper {
            padding-bottom: 50px;
        }

        .swiper-slide {
            height: auto;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.12);
            position: relative;
            height: 100%;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .testimonial-card p {
            flex: 1;
            margin-bottom: 20px;
        }

        .testimonial-card small {
            margin-top: auto;
        }

        .testimonials-section .swiper-button-next,
        .testimonials-section .swiper-button-prev {
            color: white;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .testimonials-section .swiper-button-next:hover,
        .testimonials-section .swiper-button-prev:hover {
            background: linear-gradient(135deg, var(--accent), #f7b84d);
            color: var(--bg-contrast);
            border-color: var(--accent);
        }

        .testimonials-section .swiper-pagination-bullet {
            background: white;
            opacity: 0.3;
        }

        .testimonials-section .swiper-pagination-bullet-active {
            background: var(--accent);
            opacity: 1;
        }

        .testimonials-section .swiper-pagination-bullet {
            background: white;
        }

        .testimonial-card i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.3));
            animation: floatIcon 3s ease-in-out infinite;
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .faq-slider-wrapper {
            position: relative;
            padding: 0 70px 50px;
        }

        .faq-slider-wrapper .swiper {
            padding-bottom: 50px;
        }

        .faq-card {
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
            border-radius: 24px;
            padding: 36px 28px;
            height: 100%;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(16, 185, 129, 0.1);
            box-shadow: 0 10px 30px rgba(15,31,23,0.08), 0 4px 12px rgba(0,0,0,0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .faq-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
            border-radius: 24px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .faq-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(15,31,23,0.15);
            border-color: var(--accent);
        }

        .faq-card:hover::before {
            opacity: 0.1;
        }

        .faq-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(31,122,90,0.1), rgba(31,122,90,0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 1.6rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .faq-card:hover .faq-icon {
            background: linear-gradient(135deg, var(--primary), #2a9d74);
            color: white;
            transform: scale(1.05);
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--bg-contrast);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .faq-answer {
            color: var(--muted);
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 0;
            flex: 1;
        }



        .cta-banner {
            background: linear-gradient(120deg, #103523, #1f7a5a);
            border-radius: 34px;
            padding: 35px 45px;
            color: white;
            box-shadow: var(--shadow);
            margin: 50px 0;
        }

        .cta-banner .btn-light {
            background: white;
            color: var(--primary);
            border-radius: 999px;
            padding: 14px 32px;
            font-weight: 600;
        }

        .contact-section {
            background: linear-gradient(135deg, #f6f2ed 0%, rgba(31,122,90,0.03) 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245,165,36,0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(31,122,90,0.06) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .contact-section .container {
            position: relative;
            z-index: 1;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 48px 40px;
            border: 1px solid rgba(255,255,255,0.5);
            height: 100%;
            box-shadow: 0 30px 60px rgba(15,31,23,0.12), 0 0 1px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 35px 70px rgba(15,31,23,0.15), 0 0 0 1px rgba(31,122,90,0.1);
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid var(--primary);
            box-shadow: 0 8px 24px rgba(31,122,90,0.2);
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .profile-placeholder {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            background: rgba(31,122,90,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .profile-placeholder i {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
        }

        .contact-list li {
            list-style: none;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px;
            background: rgba(31,122,90,0.03);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .contact-list li:hover {
            background: rgba(31,122,90,0.08);
            transform: translateX(4px);
        }

        .contact-list li i {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
            border-radius: 14px;
            flex-shrink: 0;
            font-size: 1.2rem;
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3), 0 2px 8px rgba(59, 130, 246, 0.2);
            color: white !important;
            transition: all 0.3s ease;
        }

        .contact-list li:hover i {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4), 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .social-icons a {
            width: 52px;
            height: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.3rem;
            border: 2px solid rgba(16, 185, 129, 0.2);
            color: #1e293b;
        }

        .social-icons a:hover {
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
            color: white !important;
            transform: translateY(-4px) scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 4px 12px rgba(59, 130, 246, 0.2);
            border-color: transparent;
        }

        .contact-card h3 {
            font-family: 'Fraunces', serif;
            font-weight: 700;
            color: var(--bg-contrast);
            margin-bottom: 16px;
            font-size: 2rem;
        }

        .contact-card .btn-primary {
            border-radius: 16px;
            padding: 18px 48px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 12px 28px rgba(31,122,90,0.35);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-card .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 16px 36px rgba(31,122,90,0.45);
        }

        .footer {
            background: #0f1d16;
            color: rgba(255,255,255,0.75);
            padding: 40px 0;
            text-align: center;
        }

        .footer-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
            opacity: 0.95;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin: 0 auto;
            display: block;
        }

        .footer-logo:hover {
            opacity: 1;
            transform: scale(1.08) translateY(-4px);
            filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(255, 255, 255, 0.2));
        }

        .footer i {
            color: var(--accent);
        }

        .floating-btn-container {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: none;
            flex-direction: column;
            gap: 12px;
            z-index: 10000;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            position: relative;
        }

        .floating-btn::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: inherit;
            opacity: 0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0; }
            50% { transform: scale(1.15); opacity: 0.3; }
        }

        .floating-btn:hover {
            transform: translateY(-6px) scale(1.12);
            color: white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 6px 16px rgba(0,0,0,0.2);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        }

        .btn-whatsapp:hover {
            background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4), 0 6px 16px rgba(18, 140, 126, 0.3);
        }

        .btn-phone {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        }

        .btn-phone:hover {
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4), 0 6px 16px rgba(37, 99, 235, 0.3);
        }

        .btn-top {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            display: none;
        }

        .btn-top:hover {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4), 0 6px 16px rgba(5, 150, 105, 0.3);
        }


        @media (max-width: 992px) {
            .hero-section {
                padding: 80px 0 60px;
            }

            .hero-title {
                font-size: clamp(2rem, 5vw, 3rem);
            }

            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .hero-cta .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .hero-float-card,
            .hero-metric {
                position: static;
                margin-top: 20px;
                width: 100%;
            }

            .hero-visual {
                margin-top: 40px;
            }

            .process-track::before {
                display: none;
            }
        }

        .page-loader {
            position: fixed;
            inset: 0;
            background: linear-gradient(135deg, rgba(31,122,90,0.05), rgba(245,165,36,0.05));
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            transform: scale(1.1);
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            width: 180px;
            height: 180px;
            margin-bottom: 40px;
            animation: logoFloat 2s ease-in-out infinite;
            filter: drop-shadow(0 8px 24px rgba(31, 122, 90, 0.25));
        }

        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(31,122,90,0.15);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 20px;
        }

        .loader-text {
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 10px;
            animation: fadeInUp 0.6s ease-out;
        }

        .loader-subtext {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            color: var(--muted);
            letter-spacing: 0.1em;
            animation: fadeInUp 0.8s ease-out;
        }

        .loader-dots {
            display: inline-flex;
            gap: 8px;
            margin-top: 15px;
        }

        .loader-dot {
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            animation: dotPulse 1.4s ease-in-out infinite;
        }

        .loader-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes dotPulse {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        body > *:not(.page-loader):not(.scroll-progress):not(#calculatorModal) {
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
            animation-delay: 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Calculator Cards */
        .calculator-card {
            background: white;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 8px 24px rgba(15, 31, 23, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 2px solid rgba(31, 122, 90, 0.08);
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }

        .calculator-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .calculator-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 16px 40px rgba(15, 31, 23, 0.12), 0 6px 16px rgba(0, 0, 0, 0.08);
            border-color: #10b981;
        }

        .calculator-card:hover::before {
            opacity: 1;
        }

        .calculator-icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .calculator-card:hover .calculator-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .calculator-icon {
            font-size: 1.8rem;
        }

        .calculator-card h5 {
            margin: 0 0 8px 0;
            font-size: 1rem;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.3;
            flex: 1;
        }

        .calculator-badge {
            display: inline-block;
            background: rgba(31, 122, 90, 0.1);
            color: #1f7a5a;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            position: absolute;
            top: 16px;
            right: 16px;
        }

        @media (max-width: 768px) {
            .loader-logo {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }

            .loader-spinner {
                width: 50px;
                height: 50px;
            }

            .loader-text {
                font-size: 1.3rem;
            }

            .loader-subtext {
                font-size: 0.8rem;
            }

            .loader-dots {
                margin-top: 10px;
                gap: 6px;
            }

            .loader-dot {
                width: 8px;
                height: 8px;
            }
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform-origin: left;
            transform: scaleX(0);
            z-index: 1001;
            transition: transform 0.1s ease;
        }

        @media (max-width: 768px) {
            /* Team section tablet */
            .profile-image,
            .profile-placeholder {
                width: 110px;
                height: 110px;
            }

            .profile-placeholder i {
                font-size: 3.2rem;
            }

            .stats-panel {
                padding: 40px 30px;
                border-radius: 24px;
            }

            .stats-panel .stat h3 {
                font-size: 2.5rem;
            }

            .stats-panel .stat p {
                font-size: 0.9rem;
            }

            .hero-section {
                padding: 100px 0 80px;
            }

            .hero-section::before,
            .hero-section::after {
                width: 200px;
                height: 200px;
            }

            .eyebrow-pill {
                font-size: 0.75rem;
                padding: 6px 14px;
                margin-bottom: 18px;
            }

            .hero-title {
                font-size: 2rem;
                margin-bottom: 16px;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.6;
            }

            .hero-pillars {
                gap: 10px;
                margin: 20px 0;
            }

            .hero-pill {
                padding: 10px 14px;
                font-size: 0.85rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                margin-bottom: 20px;
            }

            .hero-cta .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .hero-trust {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                font-size: 0.85rem;
            }

            .hero-trust span {
                padding: 6px 12px;
                font-size: 0.8rem;
            }

            .hero-visual {
                padding: 20px;
                margin-top: 30px;
            }

            .hero-visual img {
                max-height: 300px;
            }

            .hero-float-card {
                position: relative;
                right: auto;
                bottom: auto;
                width: 100%;
                margin-top: 15px;
            }

            .hero-metric {
                position: relative;
                top: auto;
                left: auto;
                margin-bottom: 15px;
            }

            .hero-metric strong {
                font-size: 1.5rem;
            }

            .services-grid,
            .offerings-grid,
            .testimonial-grid {
                padding: 0 55px;
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 48px;
                height: 48px;
                border-radius: 14px;
            }

            .swiper-button-next {
                right: -22px;
            }

            .swiper-button-prev {
                left: -22px;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 18px;
            }

            .service-card {
                padding: 24px;
                min-height: 260px;
            }

            .offering-card {
                min-height: 340px;
            }

            .offering-card .card-body {
                padding: 20px 18px;
            }

            .icon-bubble {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .process-step {
                padding: 18px;
            }

            .about-accolades {
                gap: 8px;
            }

            .about-accolades span {
                padding: 8px 14px;
                font-size: 0.85rem;
            }

            .bio-chips {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .bio-chip {
                padding: 10px 12px;
                font-size: 0.9rem;
            }

            .value-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .offerings-highlight {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .highlight-card {
                padding: 20px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card {
                padding: 24px;
            }

            .contact-card {
                padding: 32px 24px;
            }

            .contact-list li {
                margin-bottom: 16px;
                font-size: 0.9rem;
                padding: 12px;
            }

            .floating-btn-container {
                bottom: 16px;
                right: 16px;
                gap: 10px;
            }

            .floating-btn {
                width: 52px;
                height: 52px;
                font-size: 1.2rem;
                box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            }

            .contact-list li i {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .social-icons a {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }

            .contact-card h3 {
                font-size: 1.6rem;
            }

            .contact-card .btn-primary {
                padding: 16px 36px;
                font-size: 1rem;
            }

            .floating-btn-container {
                bottom: 16px;
                right: 16px;
                gap: 10px;
            }

            .floating-btn {
                width: 52px;
                height: 52px;
                font-size: 1.2rem;
                box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 40px 0;
            }

            .cta-banner {
                padding: 25px 20px;
            }

            .faq-wrapper {
                padding: 20px;
            }

            /* Team section mobile */
            .profile-image,
            .profile-placeholder {
                width: 100px;
                height: 100px;
                margin: 0 auto 16px;
            }

            .profile-placeholder i {
                font-size: 3rem;
            }

            .contact-card h5 {
                font-size: 1.1rem;
            }

            .contact-card p,
            .contact-card small {
                font-size: 0.85rem;
            }

            .hero-title {
                font-size: 1.75rem;
                line-height: 1.2;
            }

            .section-title {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            /* Improve form inputs mobile */
            .calculator-form input,
            .calculator-form select {
                width: 100%;
                font-size: 16px !important;
            }

            /* Prevent horizontal scroll */
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }

            /* Better spacing for cards */
            .offering-card,
            .service-card,
            .testimonial-card {
                padding: 20px 16px;
            }

            /* Calculator cards mobile */
            .calculator-card {
                padding: 16px;
                gap: 10px;
            }

            .calculator-card h5 {
                font-size: 0.9rem;
            }

            /* Bio chips wrap properly */
            .bio-chips {
                gap: 8px;
            }

            .bio-chip {
                font-size: 0.8rem;
                padding: 10px 14px;
            }

            /* Value cards stack */
            .value-cards {
                flex-direction: column;
                gap: 12px;
            }

            .value-card {
                width: 100%;
            }

            /* Improve WhatsApp button visibility */
            .floating-btn {
                width: 56px;
                height: 56px;
                font-size: 1.3rem;
                box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            }
        }

        @media (max-width: 480px) {
            .navbar-brand span {
                font-size: 1.4rem;
            }

            .hero-section {
                padding: 70px 0 50px;
            }

            .hero-visual {
                padding: 15px;
            }

            .hero-visual img {
                max-height: 250px;
            }

            .stats-panel {
                padding: 30px 20px;
            }

            .stats-panel .stat h3 {
                font-size: 2rem;
            }

            .services-grid,
            .offerings-grid,
            .testimonial-grid,
            .faq-slider-wrapper {
                padding: 0 40px;
            }

            .faq-slider-wrapper {
                padding-bottom: 50px;
            }

            .faq-card {
                min-height: 280px;
                padding: 28px 22px;
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 44px;
                height: 44px;
                border-radius: 12px;
            }

            .swiper-button-next {
                right: -18px !important;
            }

            .swiper-button-prev {
                left: -18px !important;
            }

            /* Prevent horizontal scroll */
            body {
                overflow-x: hidden !important;
            }

            .container {
                max-width: 100% !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 16px;
            }

            .service-card h4,
            .offering-card h5 {
                font-size: 1.1rem;
            }

            .service-card p,
            .offering-card p {
                font-size: 0.9rem;
            }

            .service-card {
                min-height: 240px;
            }

            .offering-card {
                min-height: 320px;
            }

            .offering-card .card-body {
                padding: 18px 16px;
            }

            .offering-card h5 {
                font-size: 1.05rem;
                min-height: 45px;
            }

            .section-label {
                font-size: 0.75rem;
            }

            .section-intro {
                font-size: 0.95rem;
            }

            .value-cards {
                grid-template-columns: 1fr;
            }

            .value-card {
                padding: 14px;
            }

            .value-card span {
                font-size: 1.5rem;
            }

            .accordion-button {
                font-size: 0.95rem;
                padding: 14px;
            }

            .accordion-body {
                font-size: 0.9rem;
                padding: 14px;
            }

            .cta-banner h3 {
                font-size: 1.5rem;
            }

            .cta-banner p {
                font-size: 0.9rem;
            }

            .navbar {
                padding: 12px 0;
            }

            .navbar-logo {
                height: 70px;
                max-width: 180px;
            }

            .navbar-nav {
                flex-wrap: wrap;
            }

            .nav-link {
                margin: 0 6px;
                font-size: 0.9rem;
            }

            .navbar-brand span {
                font-size: 1.3rem;
            }

            .logo-sub {
                font-size: 0.7rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .testimonials-section {
                padding: 60px 0;
                border-radius: 30px;
                margin: 60px 15px;
            }

            .footer {
                padding: 30px 0;
                font-size: 0.85rem;
            }

            .social-icons a {
                font-size: 1.2rem;
            }

            .signature {
                font-size: 1.1rem;
            }

            .about-media::after {
                inset: 10px;
            }

            .hero-pillars,
            .process-steps,
            .bio-chips {
                gap: 8px;
            }

            /* Calculator section mobile */
            .calculator-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 14px 16px;
                gap: 10px;
            }

            .calculator-icon-wrapper {
                width: 48px;
                height: 48px;
            }

            .calculator-icon {
                font-size: 1.4rem;
            }

            .calculator-card h5 {
                font-size: 0.85rem;
                text-align: center;
            }

            .calculator-badge {
                font-size: 0.65rem;
                padding: 3px 8px;
            }

            /* Calculator modal mobile */
            #calculatorModal {
                padding: 10px !important;
            }

            #calculatorModal > div {
                max-width: 100% !important;
                width: 95% !important;
                max-height: 95vh !important;
                border-radius: 20px !important;
            }

            #calculatorModal > div > div:first-child {
                padding: 24px 20px !important;
                border-radius: 20px 20px 0 0 !important;
            }

            #calculatorModal > div > div:first-child h3 {
                font-size: 1.3rem !important;
            }

            #calculatorModal > div > div:first-child p {
                font-size: 0.85rem !important;
            }

            #calculatorModal > div > div:last-child {
                padding: 24px 20px !important;
            }

            #calculatorModal input,
            #calculatorModal select {
                padding: 10px 14px !important;
                font-size: 0.9rem !important;
            }

            #calculatorModal label {
                font-size: 0.85rem !important;
            }

            #calculatorModal .btn {
                padding: 12px 24px !important;
                font-size: 0.9rem !important;
            }

            #calculatorModal button[aria-label="Close calculator"] {
                width: 32px !important;
                height: 32px !important;
                font-size: 18px !important;
                top: 16px !important;
                right: 16px !important;
            }

            /* Book online section mobile - make images smaller */
            .offering-card img {
                height: 120px !important;
                border-radius: 12px !important;
                margin-bottom: 14px !important;
            }
        }

        @media (max-width: 768px) {
            /* Calculator section tablet */
            .calculator-card {
                gap: 12px;
                padding: 20px;
                min-height: 120px;
            }

            .calculator-icon-wrapper {
                width: 52px;
                height: 52px;
            }

            .calculator-icon {
                font-size: 1.6rem;
            }

            .calculator-card h5 {
                font-size: 0.95rem;
            }

            /* Calculator modal tablet */
            #calculatorModal {
                padding: 10px !important;
                align-items: flex-start !important;
            }

            #calculatorModal > div {
                width: 95% !important;
                max-width: 500px !important;
                margin: 20px auto !important;
                border-radius: 20px !important;
            }

            #calculatorModal > div > div:first-child {
                padding: 20px 16px !important;
                border-radius: 20px 20px 0 0 !important;
            }

            #calculatorModal > div > div:last-child {
                padding: 20px 16px !important;
            }

            /* Improve input fields on mobile */
            input[type="number"],
            input[type="text"],
            select {
                font-size: 16px !important;
                min-height: 44px !important;
                padding: 12px !important;
            }

            /* Better button touch targets */
            button,
            .btn {
                min-height: 44px !important;
                min-width: 44px !important;
                padding: 12px 20px !important;
                font-size: 0.95rem !important;
            }

            /* Book online section - adjust image size */
            .offering-card img {
                height: 180px !important;
            }

            /* Fix horizontal overflow */
            .hero-pillars {
                flex-wrap: wrap;
                gap: 10px;
            }

            .hero-pill {
                flex: 1 1 calc(50% - 5px);
                min-width: 140px;
                text-align: center;
                padding: 12px 16px;
                font-size: 0.85rem;
            }

            /* Stat columns responsive */
            .stats-panel .stat {
                padding: 16px 12px;
            }

            .stats-panel h3 {
                font-size: 2rem;
            }

            .stats-panel p {
                font-size: 0.85rem;
            }
        }

        /* Large desktop constraints */
        @media (min-width: 1600px) {
            .container {
                max-width: 1400px;
            }

            section {
                padding: 80px 0;
            }
        }

        /* Very small mobile devices */
        @media (max-width: 375px) {
            .services-grid,
            .offerings-grid,
            .testimonial-grid,
            .faq-slider-wrapper {
                padding: 0 30px !important;
            }

            .swiper-button-next {
                right: -10px !important;
            }

            .swiper-button-prev {
                left: -10px !important;
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 40px !important;
                height: 40px !important;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 14px !important;
            }

            .navbar-logo {
                height: 65px !important;
                max-width: 180px !important;
            }

            .hero-title {
                font-size: 1.5rem !important;
            }

            .section-title {
                font-size: 1.5rem !important;
            }

            .hero-pill {
                flex: 1 1 100%;
                font-size: 0.8rem;
                padding: 10px 14px;
            }

            #calculatorModal {
                padding: 5px !important;
            }

            #calculatorModal > div {
                width: 98% !important;
                border-radius: 16px !important;
            }

            .offering-card img {
                height: 160px !important;
            }
        }

