
        :root {
            --primary: #3D5A4C;
            --secondary: #52796F;
            --accent: #84A98C;
            --light: #CAD2C5;
            --bg: #FAFBF9;
            --dark: #1A2420;
            --white: #FFFFFF;
            --glass: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.25);
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Manrope', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            color: var(--dark);
            background: var(--bg);
            overflow-x: hidden;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 28px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .navbar.scrolled {
            position: fixed;
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 18px 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover { transform: scale(1.02); }

        .logo-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            box-shadow: 0 8px 25px rgba(61, 90, 76, 0.3);
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 38px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.92rem;
            position: relative;
            padding: 8px 0;
            letter-spacing: 0.3px;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-links a:hover { color: var(--primary); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            background: var(--dark) !important;
            color: white !important;
            padding: 13px 28px !important;
            border-radius: 60px !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
        }

        .nav-cta::after { display: none !important; }
        .nav-cta:hover {
            background: var(--primary) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 10px 30px rgba(61, 90, 76, 0.35) !important;
        }

        .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .menu-toggle span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 2px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .menu-toggle span:nth-child(1) { margin-top: -7px; }
        .menu-toggle span:nth-child(3) { margin-top: 7px; }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
            padding: 140px 50px 80px;
            position: relative;
            gap: 60px;
        }

        .hero-content {
            z-index: 2;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 10px 22px;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 32px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            letter-spacing: 0.5px;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 5.5vw, 4.8rem);
            font-weight: 700;
            line-height: 1.05;
            color: var(--dark);
            margin-bottom: 28px;
            letter-spacing: -2px;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--primary);
            position: relative;
        }

        .hero h1 em::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--light), var(--accent));
            opacity: 0.5;
            z-index: -1;
            border-radius: 4px;
        }

        .hero p {
            font-size: 1.1rem;
            color: #5A6872;
            line-height: 1.8;
            margin-bottom: 38px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 17px 34px;
            border-radius: 60px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--dark);
            color: white;
            box-shadow: 0 15px 40px rgba(26, 36, 32, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(26, 36, 32, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--dark);
        }

        .btn-outline:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-4px);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 52px;
            padding-top: 36px;
            border-top: 1px solid rgba(82, 121, 111, 0.15);
        }

        .stat-item h3 {
            font-family: var(--font-display);
            font-size: 2.4rem;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-item p { font-size: 0.88rem; color: #7A8B8E; margin: 0; }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: 650px;
        }

        .hero-image-main {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(26, 36, 32, 0.15);
            position: relative;
            z-index: 1;
        }

        .hero-floating-card {
            position: absolute;
            background: var(--white);
            padding: 24px 28px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(26, 36, 32, 0.12);
            z-index: 3;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.7);
        }

        .floating-card-1 {
            bottom: 50px;
            left: -30px;
            animation: floatCard 4s ease-in-out infinite;
        }

        .floating-card-2 {
            top: 50px;
            right: -20px;
            animation: floatCard 4s ease-in-out infinite 1.5s;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .float-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            margin-bottom: 10px;
        }

        .floating-card-2 .float-icon {
            background: rgba(255,255,255,0.2);
        }

        .floating-card h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; }
        .floating-card p { font-size: 0.82rem; margin: 0; opacity: 0.75; }
        .floating-card-2 p { opacity: 0.9; }

        /* Decorative Elements */
        .hero-decor {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }

        .decor-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(132, 169, 140, 0.25), transparent 70%);
            top: -100px;
            right: -100px;
        }

        .decor-2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(202, 210, 197, 0.3), transparent 70%);
            bottom: 50px;
            left: -100px;
        }

        /* ===== SECTIONS COMMON ===== */
        section { padding: 120px 0; position: relative; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -1.5px;
            line-height: 1.15;
        }

        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 64px;
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 45% 1fr;
            gap: 70px;
            align-items: center;
            margin-top: 70px;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-img-main {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 28px;
            box-shadow: 0 25px 70px rgba(26, 36, 32, 0.12);
            transition: transform 0.5s ease;
        }

        .about-img-main:hover { transform: scale(1.03); }

        .about-badge-float {
            position: absolute;
            bottom: -22px;
            right: -22px;
            background: var(--dark);
            color: white;
            padding: 26px 32px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(26, 36, 32, 0.25);
        }

        .about-badge-float h3 {
            font-family: var(--font-display);
            font-size: 2.6rem;
            line-height: 1;
            margin-bottom: 4px;
        }

        .about-badge-float p { font-size: 0.86rem; opacity: 0.8; margin: 0; }

        .about-text-col { padding-top: 12px; }

        .about-text-col .section-label { margin-bottom: 16px; }

        .about-text-col h2 { color: var(--dark); margin-bottom: 22px; }

        .about-text-col p {
            font-size: 1.02rem;
            color: #5A6872;
            line-height: 1.85;
            margin-bottom: 18px;
            text-align: justify;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 26px 0 30px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 11px;
            font-weight: 500;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .highlight-item i { color: var(--accent); font-size: 1.05rem; }

        /* ===== COUNTERS ===== */
        .counters-section {
            background: linear-gradient(160deg, var(--dark) 0%, #2D443E 100%);
            position: relative;
            overflow: hidden;
        }

        .counters-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(132, 169, 140, 0.15), transparent 70%);
        }

        .counters-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 36px;
            position: relative;
            z-index: 1;
        }

        .counter-unit {
            text-align: center;
            padding: 42px 22px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .counter-unit:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-6px);
            border-color: rgba(132, 169, 140, 0.3);
        }

        .counter-icon-circle {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.5rem;
            color: white;
        }

        .counter-num {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 8px;
        }

        .counter-lbl { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 500; }

        /* ===== VISION MISSION ===== */
        .vm-section {
            background: var(--bg);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            margin-top: 64px;
        }

        .vm-panel {
            background: var(--white);
            padding: 48px 42px;
            border-radius: 26px;
            box-shadow: 0 8px 40px rgba(26, 36, 32, 0.07);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .vm-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .vm-panel:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(26, 36, 32, 0.12);
        }

        .vm-icon-lg {
            width: 66px;
            height: 66px;
            background: linear-gradient(135deg, rgba(82, 121, 111, 0.12), rgba(202, 210, 197, 0.15));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .vm-panel h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .vm-panel p { color: #5A6872; line-height: 1.82; font-size: 0.97rem; }

        /* ===== WHY CHOOSE US ===== */
        .features-section {
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            margin-top: 64px;
        }

        .feature-card {
            background: var(--bg);
            padding: 36px 28px;
            border-radius: 22px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-card > * { position: relative; z-index: 1; }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 55px rgba(26, 36, 32, 0.12);
            border-color: transparent;
        }

        .feature-card:hover::after { opacity: 1; }

        .feature-card:hover .feat-icon,
        .feature-card:hover h3,
        .feature-card:hover p { color: white; }

        .feat-icon {
            font-size: 2.8rem;
            margin-bottom: 16px;
            display: block;
            transition: all 0.4s ease;
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            color: var(--dark);
            margin-bottom: 12px;
            transition: color 0.4s ease;
        }

        .feature-card p {
            font-size: 0.91rem;
            color: #6B7C85;
            line-height: 1.7;
            transition: color 0.4s ease;
        }

        /* ===== PROCESS TIMELINE ===== */
        .process-section {
            background: var(--bg);
            position: relative;
        }

        .process-timeline {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            margin-top: 70px;
            position: relative;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 44px;
            left: 8%;
            right: 8%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .timeline-step {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 88px;
            height: 88px;
            background: var(--white);
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0 auto 24px;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(82, 121, 111, 0.15);
        }

        .timeline-step:hover .step-number {
            background: var(--primary);
            color: white;
            transform: scale(1.1) rotate(360deg);
            border-color: var(--primary);
        }

        .timeline-step h3 {
            font-family: var(--font-display);
            font-size: 1.08rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .timeline-step p {
            font-size: 0.87rem;
            color: #7A8B8E;
            line-height: 1.7;
        }

        /* ===== PRICING PLANS ===== */
        .pricing-section {
            background: var(--white);
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 64px;
            align-items: stretch;
        }

        .plan-card {
            background: var(--bg);
            border-radius: 26px;
            overflow: hidden;
            box-shadow: 0 6px 35px rgba(26, 36, 32, 0.06);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            border: 2px solid transparent;
        }

        .plan-card.featured {
            border-color: var(--primary);
            transform: scale(1.04);
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(26, 36, 32, 0.12);
        }

        .plan-card.featured:hover { transform: scale(1.04) translateY(-10px); }

        .popular-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--dark);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
            z-index: 2;
            letter-spacing: 0.5px;
        }

        .plan-header {
            padding: 40px 30px;
            text-align: center;
            background: linear-gradient(160deg, var(--bg), var(--light));
            border-bottom: 1px solid rgba(82, 121, 111, 0.1);
        }

        .plan-card.featured .plan-header {
            background: linear-gradient(160deg, var(--dark), #243029);
        }

        .plan-icon { font-size: 2.6rem; margin-bottom: 12px; }
        
        .plan-name {
            font-family: var(--font-display);
            font-size: 1.32rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .plan-card.featured .plan-name { color: white; }

        .plan-price {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 700;
            color:#FFFFFF;
        }

        .plan-card.featured .plan-price { color: var(--accent); }
        .plan-price span { font-size: 0.95rem; font-weight: 400; opacity: 0.75; }

        .plan-body { padding: 30px 26px; }

        .plan-list {
            list-style: none;
            margin-bottom: 26px;
        }

        .plan-list li {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 10px 0;
            font-size: 0.91rem;
            color: #5A6872;
            border-bottom: 1px solid rgba(82, 121, 111, 0.08);
        }

        .plan-list li:last-child { border-bottom: none; }
        .plan-list i { color: var(--accent); font-size: 0.93rem; }
        .plan-card.featured .plan-list i { color: var(--accent); }
        .plan-card.featured .plan-list li { color: rgba(255,255,255,0.8); }

        .plan-btn-full { width: 100%; justify-content: center; }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            background: var(--bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 64px;
        }

        .service-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 6px 35px rgba(26, 36, 32, 0.06);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(26, 36, 32, 0.12);
        }

        .svc-icon-area {
            height: 180px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .svc-icon-area i {
            font-size: 4.5rem;
            color: white;
            opacity: 0.95;
            transition: all 0.4s ease;
        }

        .service-card:hover .svc-icon-area i {
            transform: scale(1.15) rotate(5deg);
        }

        .svc-body {
            padding: 28px;
        }

        .svc-tag {
            display: inline-block;
            background: var(--bg);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .svc-body h3 {
            font-family: var(--font-display);
            font-size: 1.32rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }

        .svc-body p {
            font-size: 0.94rem;
            color: #5A6872;
            line-height: 1.8;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 7;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.93rem;
            transition: all 0.3s ease;
        }

        .read-more-link:hover { gap: 14px; }

        /* ===== BOOKING FORM ===== */
        .booking-section {
            background: linear-gradient(170deg, var(--bg) 0%, var(--light) 50%, var(--bg) 100%);
            position: relative;
        }

        .booking-layout {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 56px;
            margin-top: 64px;
            align-items: start;
        }

        .booking-info h2 {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 3vw, 2.4rem);
            color: var(--dark);
            margin-bottom: 20px;
            letter-spacing: -0.8px;
        }

        .booking-info > p {
            font-size: 1.04rem;
            color: #5A6872;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .booking-perks {
            list-style: none;
        }

        .booking-perks li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
            font-weight: 500;
            color: var(--dark);
        }

        .perk-check {
            width: 42px;
            height: 42px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(82, 121, 111, 0.12);
        }

        .booking-form-box {
            background: var(--white);
            padding: 44px;
            border-radius: 26px;
            box-shadow: 0 20px 60px rgba(26, 36, 32, 0.08);
        }

        .form-group { margin-bottom: 20px; }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--dark);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--light);
            border-radius: 14px;
            font-family: var(--font-body);
            font-size: 0.94rem;
            outline: none;
            transition: all 0.3s ease;
            background: var(--bg);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(82, 121, 111, 0.1);
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2352796F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 18px;
        }

        .form-textarea { resize: vertical; min-height: 105px; }

        .submit-btn { width: 100%; justify-content: center; padding: 17px; font-size: 0.98rem; }

        .success-msg {
            display: none;
            background: linear-gradient(135deg, var(--accent), #A8C4AD);
            color: white;
            padding: 28px;
            border-radius: 18px;
            text-align: center;
            margin-top: 18px;
            animation: msgIn 0.5s ease;
        }

        .success-msg.visible { display: block; }

        @keyframes msgIn {
            from { opacity: 0; transform: translateY(-12px) scale(0.96); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .success-msg i { font-size: 2.4rem; margin-bottom: 10px; display: block; }
        .success-msg h3 { font-family: var(--font-display); color: white; margin-bottom: 6px; }

        /* ===== REVIEWS ===== */
        .reviews-section {
            background: var(--white);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            margin-top: 64px;
        }

        .review-card {
            background: var(--bg);
            padding: 34px 28px;
            border-radius: 22px;
            position: relative;
            transition: all 0.4s ease;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 50px rgba(26, 36, 32, 0.1);
        }

        .rev-quote {
            font-size: 3.2rem;
            color: var(--primary);
            opacity: 0.15;
            font-family: Georgia, serif;
            position: absolute;
            top: 16px;
            right: 24px;
            line-height: 1;
        }

        .rev-stars { display: flex; gap: 4px; margin-bottom: 16px; }
        .rev-stars i { color: #E8B84D; font-size: 0.98rem; }

        .rev-text {
            font-style: italic;
            color: #5A6872;
            line-height: 1.8;
            margin-bottom: 22px;
            font-size: 0.94rem;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .reviewer-details h4 {
            font-family: var(--font-display);
            font-size: 0.98rem;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .reviewer-details span { font-size: 0.83rem; color: #8A9BA8; }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--bg);
        }

        .faq-stack {
            max-width: 840px;
            margin: 58px auto 0;
        }

        .faq-entry {
            background: var(--white);
            border-radius: 18px;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(26, 36, 32, 0.05);
            transition: all 0.3s ease;
        }

        .faq-entry.open {
            box-shadow: 0 8px 35px rgba(82, 121, 111, 0.12);
        }

        .faq-q-btn {
            width: 100%;
            padding: 24px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-body);
        }

        .faq-q-btn h3 {
            font-size: 1.01rem;
            font-weight: 600;
            color: var(--dark);
            margin: 0;
            padding-right: 18px;
        }

        .faq-toggle-icon {
            width: 38px;
            height: 38px;
            background: var(--bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.95rem;
            flex-shrink: 0;
            transition: all 0.35s ease;
        }

        .faq-entry.open .faq-toggle-icon {
            background: var(--primary);
            color: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 28p x 24px;
            color: #5A6872;
            line-height: 1.8;
            font-size: 0.93rem;
        }

        .faq-entry.open .faq-answer { max-height: 340px; }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark) 0%, #243029 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(132, 169, 140, 0.18), transparent 70%);
        }

        .cta-inner {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-inner h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.8vw, 2.8rem);
            color: white;
            margin-bottom: 18px;
            letter-spacing: -1px;
        }

        .cta-inner p {
            color: rgba(255,255,255,0.75);
            font-size: 1.06rem;
            margin-bottom: 36px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-white-btn {
            background: white;
            color: var(--dark);
            padding: 19px 46px;
            font-size: 1.02rem;
        }

        .cta-white-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* ===== CONTACT ===== */
        .contact-section {
            background: var(--white);
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 48px;
            margin-top: 64px;
        }

        .contact-cards-stack {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-card {
            background: var(--bg);
            padding: 24px 22px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 35px rgba(82, 121, 111, 0.1);
        }

        .contact-icon-bx {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-card h4 {
            font-family: var(--font-display);
            font-size: 0.98rem;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .contact-card p,
        .contact-card a {
            font-size: 0.89rem;
            color: #5A6872;
            margin: 0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card a:hover { color: var(--primary); }

        .contact-form-box {
            background: var(--bg);
            padding: 44px;
            border-radius: 26px;
            box-shadow: 0 8px 40px rgba(26, 36, 32, 0.06);
        }

        .contact-form-box h3 {
            font-family: var(--font-display);
            font-size: 1.45rem;
            color: var(--dark);
            margin-bottom: 26px;
        }

        .form-row-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
            gap: 48px;
            padding-bottom: 56px;
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.08rem;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 14px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .footer-about p {
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            margin-bottom: 22px;
            font-size: 0.92rem;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-4px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li { margin-bottom: 11px; }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 6px;
        }

        .footer-links a i { font-size: 0.7rem; color: var(--accent); }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .newsletter-input {
            padding: 14px 18px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-family: var(--font-body);
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder { color: rgba(255,255,255,0.4); }

        .newsletter-input:focus {
            border-color: var(--accent);
            background: rgba(255,255,255,0.08);
        }

        .newsletter-submit {
            padding: 14px 22px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 12px;
            font-family: var(--font-body);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(82, 121, 111, 0.35);
        }

        .footer-bar {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }

        .footer-bar p {
            color: rgba(255,255,255,0.45);
            font-size: 0.86rem;
            margin: 0;
        }

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.86rem;
            transition: color 0.3s ease;
        }

        .legal-links a:hover { color: var(--accent); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1150px) {
            .hero { grid-template-columns: 1fr; text-align: center; padding: 130px 40px 70px; }
            .hero-visual { display: none; }
            .hero-floating-card { display: none; }
            .hero p { margin-left: auto; margin-right: auto; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            
            .plans-container { grid-template-columns: 1fr; max-width: 450px; margin: 60px auto 0; }
            .plan-card.featured { transform: none; }
            .plan-card.featured:hover { transform: translateY(-10px); }
            
            .services-grid { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 60px auto 0; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 992px) {
            .navbar { padding: 18px 30px; }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 35px;
                gap: 20px;
                box-shadow: -10px 0 50px rgba(0,0,0,0.15);
                transition: right 0.4s ease;
            }

            .nav-links.active { right: 0; }
            .menu-toggle { display: flex; }

            .menu-toggle.active { background: var(--primary); border-radius: 12px; }
            .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
            .menu-toggle.active span:nth-child(2) { opacity: 0; }
            .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

            .about-grid, .vm-grid, .booking-layout, .contact-layout {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .counters-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }

            .process-timeline {
                flex-direction: column;
                gap: 40px;
            }

            .process-timeline::before {
                top: 0;
                bottom: 0;
                left: 45px;
                right: auto;
                width: 2px;
                height: auto;
            }

            .timeline-step {
                text-align: left;
                padding-left: 105px;
            }

            .step-number {
                position: absolute;
                left: 0;
                margin: 0;
            }
        }

        @media (max-width: 768px) {
            section { padding: 80px 0; }
            .container { padding: 0 20px; }
            .navbar { padding: 14px 20px; }
            .hero { padding: 110px 20px 60px; }

            .about-img-main { height: 400px; }
            .about-badge-float { padding: 20px 26px; }
            .about-badge-float h3 { font-size: 2.2rem; }

            .about-highlights { grid-template-columns: 1fr; }
            .counters-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
            .features-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bar { flex-direction: column; text-align: center; }

            .booking-form-box { padding: 32px 24px; }
            .contact-form-box { padding: 32px 24px; }
            .form-row-split { grid-template-columns: 1fr; }
            .vm-panel { padding: 34px 26px; }
            .hero-stats { flex-direction: column; gap: 22px; align-items: center; }
        }

        html { scroll-padding-top: 90px; }
