
        :root {
            --teal-primary: #00C9B8;
            --teal-dark: #00A89A;
            --teal-darker: #008B7D;
            --teal-light: #40D9CC;
            --teal-lighter: #80EBE0;
            --teal-pale: #E6F9F7;
            --teal-faint: #F0FCFA;
            --off-white: #FDFFFE;
            --off-white-warm: #FDFEFC;
            --soft-gray: #F5F8F7;
            --text-primary: #0D2623;
            --text-secondary: #4A5F5C;
            --text-muted: #7A908D;
            --gradient-teal: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
            --gradient-dark: linear-gradient(135deg, var(--text-primary) 0%, #1A3D38 100%);
            --shadow-sm: 0 4px 20px rgba(0, 201, 184, 0.12);
            --shadow-md: 0 12px 40px rgba(0, 201, 184, 0.18);
            --shadow-lg: 0 20px 60px rgba(13, 38, 35, 0.08);
            --shadow-xl: 0 30px 80px rgba(0, 201, 184, 0.22);
            --shadow-glow: 0 0 35px rgba(0, 201, 184, 0.25);
            --border-subtle: 1px solid rgba(0, 201, 184, 0.18);
            --transition-smooth: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
            --radius-xs: 10px;
            --radius-sm: 16px;
            --radius-md: 24px;
            --radius-lg: 32px;
            --radius-xl: 42px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            overflow-x: hidden;
            background-color: var(--off-white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: var(--gradient-teal);
            color: white;
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: none;
            cursor: pointer;
            letter-spacing: 0.3px;
            box-shadow: var(--shadow-sm);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-darker) 100%);
            transition: left 0.55s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            left: 0;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: var(--shadow-glow);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 17px 38px;
            background: transparent;
            color: var(--teal-dark);
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition-smooth);
            border: 2px solid var(--teal-primary);
            position: relative;
            overflow: hidden;
        }
        
        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--teal-primary);
            border-radius: 50%;
            transition: all 0.5s ease;
            transform: translate(-50%, -50%);
            z-index: 0;
        }
        
        .btn-secondary:hover::before {
            width: 320px;
            height: 320px;
        }
        
        .btn-secondary:hover {
            color: white;
            border-color: transparent;
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-secondary span,
        .btn-secondary i {
            position: relative;
            z-index: 1;
        }
        
        .section-padding {
            padding: 130px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-title .label {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: var(--teal-dark);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
        }
        
        .section-title h2 {
            font-size: 52px;
            color: var(--text-primary);
            margin-bottom: 24px;
            line-height: 1.15;
        }
        
        .section-title p {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.85;
        }
        
        .section-title .accent-line {
            width: 65px;
            height: 4px;
            background: var(--gradient-teal);
            margin: 28px auto 0;
            border-radius: 2px;
        }

        /* ==================== NAVBAR ==================== */
        .navbar {
            padding: 24px 0;
            background: transparent;
            transition: var(--transition-smooth);
            z-index: 1000;
            position: relative;
        }
        
        .navbar.scrolled {
            background: rgba(253, 255, 254, 0.97);
            backdrop-filter: blur(25px);
            box-shadow: 0 8px 40px rgba(0, 201, 184, 0.08);
            padding: 16px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            font-size: 26px;
            font-weight: 800;
            color: var(--text-primary);
        }
        
        .logo-icon {
            width: 54px;
            height: 54px;
            background: var(--gradient-teal);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }
        
        .logo:hover .logo-icon::after {
            animation: logoShine 0.8s ease;
        }
        
        @keyframes logoShine {
            from { left: -50%; top: -50%; }
            to { left: 150%; top: 150%; }
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 42px;
            list-style: none;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            position: relative;
            transition: var(--transition-smooth);
            padding: 8px 0;
        }
        
        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient-teal);
            border-radius: 2px;
            transition: width 0.4s ease;
        }
        
        .nav-menu a:hover::before,
        .nav-menu a.active::before {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--teal-dark);
        }
        
        .nav-cta {
            padding: 14px 32px !important;
            background: var(--gradient-teal) !important;
            color: white !important;
            border-radius: 60px !important;
            box-shadow: var(--shadow-sm) !important;
        }
        
        .nav-cta::before {
            display: none !important;
        }
        
        .nav-cta:hover {
            transform: translateY(-3px) scale(1.05) !important;
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 7px;
            cursor: pointer;
            padding: 10px;
            background: none;
            border: none;
            z-index: 1001;
        }
        
        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background: var(--teal-dark);
            border-radius: 3px;
            transition: var(--transition-smooth);
        }

        /* ==================== HERO SECTION ==================== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(165deg, var(--teal-faint) 0%, var(--off-white) 45%, var(--off-white-warm) 100%);
            overflow: hidden;
            padding-top: 100px;
        }
        
        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.35;
            background-image: 
                radial-gradient(circle at 15% 25%, rgba(0, 201, 184, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(0, 168, 154, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(64, 217, 204, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .hero-grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 201, 184, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 201, 184, 0.04) 1px, transparent 1px);
            background-size: 70px 70px;
            pointer-events: none;
        }
        
        .hero-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .hero-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(65px);
            opacity: 0.5;
        }
        
        .blob-a {
            width: 520px;
            height: 520px;
            background: var(--teal-lighter);
            top: -160px;
            right: -110px;
            animation: blobFloat 16s ease-in-out infinite;
        }
        
        .blob-b {
            width: 420px;
            height: 420px;
            background: var(--teal-primary);
            bottom: -130px;
            left: -110px;
            animation: blobFloat 19s ease-in-out infinite reverse;
        }
        
        .blob-c {
            width: 260px;
            height: 260px;
            background: var(--teal-pale);
            top: 46%;
            left: 54%;
            animation: blobFloat 13s ease-in-out infinite;
        }
        
        @keyframes blobFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(28px, -28px) scale(1.05); }
            66% { transform: translate(-22px, 22px) scale(0.95); }
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            animation: heroFadeUp 1s ease;
        }
        
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(45px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 26px;
            background: white;
            border-radius: 60px;
            font-size: 13px;
            font-weight: 700;
            color: var(--teal-dark);
            margin-bottom: 30px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 201, 184, 0.25);
        }
        
        .hero-badge i {
            color: var(--teal-primary);
            animation: badgePulse 2s ease-in-out infinite;
        }
        
        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.18); }
        }
        
        .hero-content h1 {
            font-size: 58px;
            line-height: 1.08;
            margin-bottom: 28px;
            color: var(--text-primary);
        }
        
        .hero-content h1 .highlight {
            background: var(--gradient-teal);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content > p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.9;
            max-width: 520px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }
        
        .hero-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding-top: 42px;
            border-top: 2px solid rgba(0, 201, 184, 0.18);
        }
        
        .hero-stat-box {
            text-align: center;
        }
        
        .hero-stat-box h3 {
            font-size: 38px;
            color: var(--teal-dark);
            font-weight: 800;
            margin-bottom: 4px;
        }
        
        .hero-stat-box p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .hero-image-area {
            position: relative;
            animation: heroSlideIn 1s ease 0.3s both;
        }
        
        @keyframes heroSlideIn {
            from { opacity: 0; transform: translateX(60px) scale(0.95); }
            to { opacity: 1; transform: translateX(0) scale(1); }
        }
        
        .hero-image-main {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 4px solid white;
        }
        
        .hero-image-main img {
            width: 100%;
            height: 580px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .hero-image-main:hover img {
            transform: scale(1.05);
        }
        
        .hero-floating-card {
            position: absolute;
            background: white;
            padding: 22px 26px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 16px;
            animation: cardFloat 5s ease-in-out infinite;
            border: 1px solid rgba(0, 201, 184, 0.18);
        }
        
        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-14px); }
        }
        
        .hero-floating-card.card-left {
            bottom: 42px;
            left: -48px;
        }
        
        .hero-floating-card.card-right {
            top: 42px;
            right: -48px;
            animation-delay: 2.2s;
        }
        
        .float-icon-circle {
            width: 56px;
            height: 56px;
            background: var(--teal-pale);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--teal-dark);
        }
        
        .float-card-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .float-card-text p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 3px 0 0 0;
        }

        /* ==================== ABOUT US ==================== */
        .about-section {
            background: var(--soft-gray);
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: -180px;
            right: -180px;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(0, 201, 184, 0.07), transparent 70%);
            pointer-events: none;
        }
        
        .about-grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .about-visual {
            position: relative;
        }
        
        .about-img-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .about-img-wrapper img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
        }
        
        .about-exp-badge {
            position: absolute;
            bottom: -26px;
            right: -26px;
            background: var(--gradient-teal);
            color: white;
            padding: 30px 34px;
            border-radius: var(--radius-md);
            text-align: center;
            box-shadow: var(--shadow-md);
        }
        
        .about-exp-badge h3 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 4px;
        }
        
        .about-exp-badge p {
            font-size: 12px;
            margin: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text-block h2 {
            font-size: 44px;
            color: var(--text-primary);
            margin-bottom: 26px;
        }
        
        .about-text-block h2 span {
            color: var(--teal-dark);
        }
        
        .about-text-block > p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 18px;
            line-height: 1.9;
        }
        
        .about-feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 34px 0;
        }
        
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .about-feature-icon {
            width: 46px;
            height: 46px;
            background: var(--teal-pale);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal-dark);
            font-size: 17px;
            flex-shrink: 0;
        }
        
        .about-feature-item span {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }

        /* ==================== COUNTER SECTION ==================== */
        .counter-section {
            background: var(--gradient-teal);
            position: relative;
            overflow: hidden;
        }
        
        .counter-bg-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,170.7C384,181,480,171,576,154.7C672,139,768,117,864,128C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-repeat: no-repeat;
            background-position: bottom;
            background-size: cover;
            pointer-events: none;
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .counter-item {
            text-align: center;
            color: white;
            padding: 36px 20px;
            position: relative;
        }
        
        .counter-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 22%;
            height: 56%;
            width: 1px;
            background: rgba(255, 255, 255, 0.25);
        }
        
        .counter-item:last-child::after {
            display: none;
        }
        
        .counter-icon-wrap {
            width: 82px;
            height: 82px;
            background: rgba(255, 255, 255, 0.17);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 22px;
            backdrop-filter: blur(10px);
        }
        
        .counter-item h3 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        
        .counter-item p {
            font-size: 15px;
            opacity: 0.93;
            margin: 0;
            font-weight: 500;
        }

        /* ==================== VISION MISSION ==================== */
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 36px;
        }
        
        .vm-card {
            background: white;
            padding: 50px 44px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 201, 184, 0.12);
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-teal);
        }
        
        .vm-card::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 201, 184, 0.06), transparent 70%);
            transition: all 0.6s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-md);
        }
        
        .vm-card:hover::after {
            bottom: -30%;
            right: -30%;
        }
        
        .vm-icon-box {
            width: 78px;
            height: 78px;
            background: var(--teal-pale);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: var(--teal-dark);
            margin-bottom: 26px;
        }
        
        .vm-card h3 {
            font-size: 30px;
            color: var(--text-primary);
            margin-bottom: 18px;
        }
        
        .vm-card p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.9;
            position: relative;
            z-index: 1;
        }

        /* ==================== WHY CHOOSE US ==================== */
        .why-section {
            background: var(--soft-gray);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .feature-card {
            background: white;
            padding: 46px 36px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 201, 184, 0.1);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-teal);
            transition: height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 0;
        }
        
        .feature-card:hover::before {
            height: 100%;
        }
        
        .feature-card > * {
            position: relative;
            z-index: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-md);
        }
        
        .feature-card:hover .feat-icon,
        .feature-card:hover h3,
        .feature-card:hover p {
            color: white;
        }
        
        .feat-icon {
            width: 88px;
            height: 88px;
            background: var(--teal-pale);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            color: var(--teal-dark);
            margin: 0 auto 26px;
            transition: var(--transition-smooth);
        }
        
        .feature-card:hover .feat-icon {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1) rotate(8deg);
        }
        
        .feature-card h3 {
            font-size: 21px;
            color: var(--text-primary);
            margin-bottom: 16px;
            transition: var(--transition-smooth);
        }
        
        .feature-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            transition: var(--transition-smooth);
        }

        /* ==================== WORK PROCESS ==================== */
        .process-timeline {
            position: relative;
            max-width: 950px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--teal-primary), var(--teal-dark), var(--teal-primary));
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 62px;
            position: relative;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-content {
            width: calc(50% - 55px);
            background: white;
            padding: 36px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            border: 1px solid rgba(0, 201, 184, 0.1);
        }
        
        .step-content:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-md);
            border-color: var(--teal-primary);
        }
        
        .step-number {
            width: 68px;
            height: 68px;
            background: var(--gradient-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            color: white;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: var(--shadow-sm);
            font-family: 'Inter', sans-serif;
            animation: stepGlow 3s ease-in-out infinite;
        }
        
        @keyframes stepGlow {
            0%, 100% { box-shadow: 0 8px 30px rgba(0, 201, 184, 0.4); }
            50% { box-shadow: 0 8px 45px rgba(0, 201, 184, 0.7); }
        }
        
        .step-content h3 {
            font-size: 21px;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        
        .step-content p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* ==================== SERVICES SECTION ==================== */
        .services-section {
            background: var(--soft-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .service-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            border: 1px solid rgba(0, 201, 184, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-md);
        }
        
        .service-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img {
            transform: scale(1.08);
        }
        
        .service-body {
            padding: 34px;
        }
        
        .service-body h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        
        .service-body p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 24px;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--teal-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-smooth);
        }
        
        .service-link:hover {
            color: var(--teal-darker);
            gap: 14px;
        }
        
        .service-link i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }

        /* ==================== BOOKING FORM ==================== */
        .booking-section {
            background: linear-gradient(135deg, var(--teal-faint) 0%, white 50%, var(--soft-gray) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .booking-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(0, 201, 184, 0.12), transparent 70%);
            pointer-events: none;
        }
        
        .booking-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .booking-info h3 {
            font-size: 40px;
            color: var(--text-primary);
            margin-bottom: 24px;
        }
        
        .booking-info > p {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 36px;
            line-height: 1.85;
        }
        
        .booking-list {
            list-style: none;
        }
        
        .booking-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
            font-size: 15px;
            color: var(--text-secondary);
        }
        
        .booking-list li i {
            width: 28px;
            height: 28px;
            background: var(--teal-pale);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--teal-dark);
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .booking-form-panel {
            background: white;
            padding: 50px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0, 201, 184, 0.18);
        }
        
        .booking-form-panel h3 {
            font-size: 32px;
            color: var(--text-primary);
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 22px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(0, 201, 184, 0.2);
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            transition: var(--transition-smooth);
            background: var(--off-white);
            color: var(--text-primary);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal-primary);
            box-shadow: 0 0 0 4px rgba(0, 201, 184, 0.12);
            background: white;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        /* ==================== WELLNESS PLANS ==================== */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .plan-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            position: relative;
            border: 1px solid rgba(0, 201, 184, 0.12);
        }
        
        .plan-card.featured {
            transform: scale(1.06);
            border: 2px solid var(--teal-primary);
        }
        
        .plan-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-md);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.06) translateY(-12px);
        }
        
        .plan-tag {
            position: absolute;
            top: 18px;
            right: 18px;
            background: var(--gradient-teal);
            color: white;
            padding: 7px 20px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .plan-header {
            background: var(--soft-gray);
            padding: 42px 36px 32px;
            text-align: center;
        }
        
        .plan-icon {
            width: 78px;
            height: 78px;
            background: var(--teal-pale);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: var(--teal-dark);
            margin: 0 auto 18px;
        }
        
        .plan-header h3 {
            font-size: 24px;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        
        .plan-price {
            font-size: 48px;
            font-weight: 800;
            color: var(--teal-dark);
            font-family: 'Inter', sans-serif;
        }
        
        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-muted);
        }
        
        .plan-body {
            padding: 36px;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid rgba(0, 201, 184, 0.08);
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features li i {
            color: var(--teal-dark);
            font-size: 14px;
        }
        
        .plan-btn {
            width: 100%;
            justify-content: center;
        }

        /* ==================== REVIEWS ==================== */
        .reviews-section {
            background: var(--soft-gray);
        }
        
        .reviews-slider {
            overflow: hidden;
            position: relative;
        }
        
        .reviews-track {
            display: flex;
            gap: 28px;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .review-card {
            min-width: calc(33.333% - 19px);
            background: white;
            padding: 40px 34px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            border: 1px solid rgba(0, 201, 184, 0.1);
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }
        
        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }
        
        .review-stars i {
            color: #FFB84D;
            font-size: 17px;
        }
        
        .review-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 26px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .review-avatar {
            width: 52px;
            height: 52px;
            background: var(--teal-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            font-weight: 700;
            color: var(--teal-dark);
        }
        
        .review-author-name {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .review-author-location {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 3px;
        }
        
        .reviews-nav {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-top: 44px;
        }
        
        .reviews-nav button {
            width: 56px;
            height: 56px;
            border: 2px solid var(--teal-primary);
            background: transparent;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-size: 18px;
            color: var(--teal-dark);
        }
        
        .reviews-nav button:hover {
            background: var(--teal-primary);
            color: white;
            transform: scale(1.1);
        }

        /* ==================== FAQ ==================== */
        .faq-section {
            background: var(--off-white);
        }
        
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 201, 184, 0.1);
            transition: var(--transition-smooth);
        }
        
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        
        .faq-question {
            padding: 26px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        
        .faq-question h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        
        .faq-question i {
            font-size: 17px;
            color: var(--teal-dark);
            transition: transform 0.4s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .faq-answer-inner {
            padding: 0 32px 26px;
        }
        
        .faq-answer-inner p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
        }
        
        .faq-item.active .faq-answer {
            max-height: 380px;
        }

        /* ==================== CTA ==================== */
        .cta-section {
            background: var(--gradient-teal);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -8%;
            width: 420px;
            height: 420px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 48px;
            color: white;
            margin-bottom: 22px;
        }
        
        .cta-content p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.93);
            margin-bottom: 40px;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.75;
        }
        
        .cta-content .btn-primary {
            background: white;
            color: var(--teal-dark);
        }
        
        .cta-content .btn-primary::before {
            background: var(--teal-pale);
        }
        
        .cta-content .btn-primary:hover {
            box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
        }

        /* ==================== CONTACT ==================== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 56px;
        }
        
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        
        .contact-card {
            background: white;
            padding: 28px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: var(--transition-smooth);
            border: 1px solid rgba(0, 201, 184, 0.12);
        }
        
        .contact-card:hover {
            transform: translateX(12px);
            box-shadow: var(--shadow-md);
            border-color: var(--teal-primary);
        }
        
        .contact-icon {
            width: 64px;
            height: 64px;
            background: var(--teal-pale);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--teal-dark);
            flex-shrink: 0;
        }
        
        .contact-label {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 5px;
        }
        
        .contact-value {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
        }
        
        .contact-value a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        
        .contact-value a:hover {
            color: var(--teal-dark);
        }
        
        .contact-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0, 201, 184, 0.18);
        }
        
        .contact-form-wrapper h3 {
            font-size: 32px;
            color: var(--text-primary);
            margin-bottom: 28px;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--text-primary);
            color: white;
            padding-top: 100px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
            gap: 48px;
            padding-bottom: 72px;
        }
        
        .footer-col h3 {
            font-size: 21px;
            font-weight: 600;
            margin-bottom: 26px;
            color: var(--teal-lighter);
        }
        
        .footer-about p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.68);
            line-height: 1.85;
            margin-bottom: 24px;
        }
        
        .footer-social {
            display: flex;
            gap: 11px;
        }
        
        .footer-social a {
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 17px;
            transition: var(--transition-smooth);
        }
        
        .footer-social a:hover {
            background: var(--teal-primary);
            color: var(--text-primary);
            transform: translateY(-5px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 14px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.68);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 9px;
        }
        
        .footer-links a:hover {
            color: var(--teal-lighter);
            padding-left: 6px;
        }
        
        .footer-links a i {
            font-size: 10px;
            color: var(--teal-primary);
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .newsletter-form input {
            padding: 17px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: var(--transition-smooth);
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--teal-primary);
            box-shadow: 0 0 0 4px rgba(0, 201, 184, 0.15);
        }
        
        .newsletter-form button {
            padding: 17px 28px;
            background: var(--gradient-teal);
            border: none;
            border-radius: var(--radius-sm);
            color: white;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-family: 'Inter', sans-serif;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 28px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
        }
        
        .footer-legal {
            display: flex;
            gap: 28px;
        }
        
        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition-smooth);
        }
        
        .footer-legal a:hover {
            color: var(--teal-lighter);
        }

        /* Scroll Top */
        .scroll-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 56px;
            height: 56px;
            background: var(--gradient-teal);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            box-shadow: var(--shadow-sm);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            z-index: 999;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px) scale(1.08);
            box-shadow: var(--shadow-glow);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .hero-content h1 { font-size: 50px; }
            .section-title h2 { font-size: 42px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .cta-content h2 { font-size: 40px; }
        }
        
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 340px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 95px 38px;
                gap: 26px;
                box-shadow: -12px 0 50px rgba(0, 0, 0, 0.15);
                transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
                z-index: 999;
            }
            
            .nav-menu.active { right: 0; }
            
            .mobile-toggle { display: flex; }
            
            .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
            .mobile-toggle.active span:nth-child(2) { opacity: 0; }
            .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
            
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-content h1 { font-size: 43px; }
            .hero-content > p { margin: 0 auto 40px auto; }
            .hero-buttons { justify-content: center; }
            .hero-stats-grid { max-width: 450px; margin: 0 auto; }
            .hero-image-area { max-width: 580px; margin: 0 auto; }
            .hero-floating-card.card-left { left: 18px; }
            .hero-floating-card.card-right { right: 18px; }
            
            .about-grid-layout, .vm-grid, .booking-layout, .contact-grid { grid-template-columns: 1fr; }
            .about-exp-badge { right: 18px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: 1fr; }
            .plans-grid { grid-template-columns: 1fr; max-width: 470px; margin: 0 auto; }
            .plan-card.featured { transform: none; }
            .plan-card.featured:hover { transform: translateY(-12px); }
            .counter-grid { grid-template-columns: repeat(2, 1fr); }
            .counter-item::after { display: none; }
            .review-card { min-width: calc(50% - 14px); }
            
            .process-line { left: 32px; }
            .process-step, .process-step:nth-child(even) { flex-direction: column; align-items: flex-start; padding-left: 90px; }
            .step-number { left: 32px; transform: translateX(-50%); }
            .step-content { width: 100%; }
        }
        
        @media (max-width: 768px) {
            .section-padding { padding: 85px 0; }
            .section-title h2 { font-size: 34px; }
            .hero-content h1 { font-size: 36px; }
            .hero-content > p { font-size: 16px; }
            .hero-stats-grid { grid-template-columns: 1fr; gap: 18px; }
            .about-text-block h2 { font-size: 32px; }
            .about-feature-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .counter-item h3 { font-size: 42px; }
            .vm-card { padding: 36px 28px; }
            .vm-card h3 { font-size: 26px; }
            .booking-form-panel, .contact-form-wrapper { padding: 36px 24px; }
            .form-row { grid-template-columns: 1fr; }
            .review-card { min-width: 100%; }
            .cta-content h2 { font-size: 32px; }
            .footer-grid { grid-template-columns: 1fr; gap: 38px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .hero-image-main img { height: 400px; }
            .hero-floating-card { display: none; }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 { font-size: 30px; }
            .btn-primary, .btn-secondary { padding: 15px 30px; font-size: 13px; }
            .section-title h2 { font-size: 28px; }
        }
