
        :root {
            --primary: #10B981;
            --secondary: #064E3B;
            --accent: #6EE7B7;
            --background: #ECFDF5;
            --text: #022C22;
            --glass-bg: rgba(236, 253, 245, 0.92);
            --neon-green: 0 0 25px rgba(16, 185, 129, 0.45);
            --neon-glow: 0 0 35px rgba(110, 231, 183, 0.4);
            --card-bg: rgba(255, 255, 255, 0.85);
            --shadow-soft: 0 10px 40px rgba(2, 44, 34, 0.08);
            --shadow-hover: 0 20px 60px rgba(16, 185, 129, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            font-family: 'Nunito Sans', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.75;
            font-weight: 400;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.25;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--secondary);
            opacity: 0.3;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary), var(--accent));
            border-radius: 5px;
            border: 2px solid var(--background);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, var(--secondary), var(--primary));
        }

        .nav-menu li{
            margin-left:20px !important;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(16, 185, 129, 0.25);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-soft);
        }

        .navbar.scrolled {
            padding: 0.4rem 0;
            box-shadow: var(--neon-green);
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            text-decoration: none;
            color: var(--text);
        }

        .logo-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            box-shadow: var(--neon-green);
            animation: gentleFloat 3.5s ease-in-out infinite;
            position: relative;
            color: white;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(135deg, var(--accent), var(--primary), var(--accent));
            border-radius: 18px;
            z-index: -1;
            animation: rotateGlow 5s linear infinite;
            opacity: 0.7;
        }

        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-6px) scale(1.03); }
        }

        .logo-text {
            font-size: 1.65rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.98rem;
            padding: 0.5rem 0;
            letter-spacing: 0.3px;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.35s ease;
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary);
            font-weight: 700;
        }

        .nav-link.active::before {
            width: 100%;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white !important;
            padding: 0.9rem 1.85rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--neon-green);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.96rem;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            opacity: 0;
            transition: opacity 0.35s;
            z-index: -1;
        }

        .cta-btn:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 18px 45px rgba(16, 185, 129, 0.5);
        }

        .cta-btn:hover::before {
            opacity: 1;
        }

        .cta-btn:active {
            transform: translateY(-1px);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            padding: 0.5rem;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 3px;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Hero Section */
        .hero {
            margin-top: 88px;
            min-height: 95vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: 
                radial-gradient(ellipse at 15% 85%, rgba(16, 185, 129, 0.18), transparent 55%),
                radial-gradient(ellipse at 85% 15%, rgba(110, 231, 183, 0.22), transparent 55%),
                radial-gradient(ellipse at 50% 50%, rgba(6, 78, 59, 0.08), transparent 75%);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310B981' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.6;
        }

        .hero-bg-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .floating-leaf {
            position: absolute;
            border-radius: 50% 50% 50% 10%;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(110, 231, 183, 0.08));
            animation: floatLeaf 28s infinite ease-in-out;
            box-shadow: var(--neon-glow);
            backdrop-filter: blur(4px);
        }

        .leaf-1 {
            width: 420px;
            height: 420px;
            top: -120px;
            right: -80px;
            animation-delay: 0s;
            transform: rotate(15deg);
        }

        .leaf-2 {
            width: 320px;
            height: 320px;
            bottom: 8%;
            left: -60px;
            animation-delay: 8s;
            transform: rotate(-10deg);
        }

        .leaf-3 {
            width: 240px;
            height: 240px;
            top: 42%;
            right: 12%;
            animation-delay: 16s;
            transform: rotate(25deg);
        }

        .leaf-4 {
            width: 180px;
            height: 180px;
            bottom: 28%;
            right: 22%;
            animation-delay: 4s;
            transform: rotate(-18deg);
        }

        @keyframes floatLeaf {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            25% { transform: translate(35px, -35px) rotate(90deg) scale(1.04); }
            50% { transform: translate(-20px, 28px) rotate(180deg) scale(0.97); }
            75% { transform: translate(25px, 18px) rotate(270deg) scale(1.02); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 4.5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4.3rem;
            line-height: 1.06;
            margin-bottom: 1.85rem;
            background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1.1s ease;
        }

        .hero-content p {
            font-size: 1.32rem;
            margin-bottom: 2.6rem;
            color: rgba(2, 44, 34, 0.82);
            max-width: 560px;
            animation: fadeInUp 1.1s ease 0.25s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.35rem;
            animation: fadeInUp 1.1s ease 0.45s both;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: transparent;
            border: 2.5px solid var(--primary);
            color: var(--primary);
            padding: 0.9rem 1.85rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.96rem;
            letter-spacing: 0.3px;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            box-shadow: var(--neon-green);
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: fadeIn 1.1s ease 0.65s both;
            display: flex;
            justify-content: center;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 35px 85px rgba(16, 185, 129, 0.35);
            border: 2px solid rgba(110, 231, 183, 0.45);
            transform: perspective(1200px) rotateY(-4deg) rotateX(2.5deg);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
        }

        .hero-image-wrapper:hover {
            transform: perspective(1200px) rotateY(0) rotateX(0);
        }

        .hero-image img {
            width: 100%;
            display: block;
            border-radius: 32px;
        }

        .hero-wellness-badge {
            position: absolute;
            bottom: -35px;
            left: -35px;
            background: var(--glass-bg);
            backdrop-filter: blur(22px);
            padding: 1.8rem;
            border-radius: 26px;
            border: 1.5px solid rgba(16, 185, 129, 0.45);
            box-shadow: var(--neon-glow);
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            min-width: 230px;
        }

        .wellness-item {
            display: flex;
            align-items: center;
            gap: 0.85rem;
        }

        .wellness-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.15rem;
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
        }

        .wellness-text {
            display: flex;
            flex-direction: column;
        }

        .wellness-number {
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            font-family: 'Playfair Display', serif;
        }

        .wellness-label {
            font-size: 0.82rem;
            color: rgba(2, 44, 34, 0.7);
            font-weight: 500;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(42px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Section Styles */
        section {
            padding: 7.5rem 2rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 5.5rem;
            position: relative;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -28px;
            left: 50%;
            transform: translateX(-50%);
            width: 85px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            box-shadow: 0 0 18px rgba(16, 185, 129, 0.5);
        }

        .section-subtitle {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4.5px;
            font-size: 0.86rem;
            margin-bottom: 1.35rem;
            display: block;
            position: relative;
            padding-left: 32px;
            font-family: 'Nunito Sans', sans-serif;
        }

        .section-subtitle::before {
            content: '✦';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 3.3rem;
            margin-bottom: 1.35rem;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.14;
        }

        .section-desc {
            color: rgba(2, 44, 34, 0.78);
            font-size: 1.18rem;
            max-width: 670px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* About Section */
        .about {
            background: linear-gradient(180deg, var(--background), rgba(236, 253, 245, 0.7));
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -45%;
            right: -18%;
            width: 580px;
            height: 580px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 72%);
            pointer-events: none;
        }

        .about-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.6rem;
        }

        .about-card {
            background: var(--card-bg);
            backdrop-filter: blur(18px);
            border: 1.5px solid rgba(16, 185, 129, 0.32);
            border-radius: 30px;
            padding: 2.85rem;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-soft);
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.07), transparent 62%);
            opacity: 0;
            transition: opacity 0.45s;
            z-index: 0;
        }

        .about-card:hover {
            transform: translateY(-13px);
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .about-card:hover::before {
            opacity: 1;
        }

        .about-card > * {
            position: relative;
            z-index: 1;
        }

        .about-icon {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.85rem;
            color: white;
            box-shadow: var(--neon-green);
            flex-shrink: 0;
        }

        .about-card h3 {
            font-size: 1.65rem;
            margin-bottom: 1.35rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }

        .about-card h3::after {
            content: '';
            position: absolute;
            bottom: -9px;
            left: 0;
            width: 45px;
            height: 3.5px;
            background: var(--primary);
            border-radius: 3px;
        }

        .about-card p {
            color: rgba(2, 44, 34, 0.86);
            line-height: 1.9;
            flex: 1;
            font-weight: 400;
        }

        /* Milestones */
        .milestones {
            background: linear-gradient(180deg, rgba(236, 253, 245, 0.8), var(--background));
            position: relative;
        }

        .milestones::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2310B981' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .milestones-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.1rem;
            position: relative;
            z-index: 1;
        }

        .milestone-card {
            text-align: center;
            padding: 2.6rem 1.6rem;
            background: var(--card-bg);
            border: 1.5px solid rgba(16, 185, 129, 0.32);
            border-radius: 26px;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .milestone-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.09), transparent);
            opacity: 0;
            transition: opacity 0.45s;
        }

        .milestone-card:hover {
            transform: translateY(-11px) scale(1.035);
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .milestone-card:hover::after {
            opacity: 1;
        }

        .milestone-number {
            font-size: 4.2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 0.85rem;
            font-family: 'Playfair Display', serif;
            line-height: 1;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .milestone-number::after {
            content: '+';
            position: absolute;
            right: -28px;
            top: 8px;
            font-size: 2.1rem;
            opacity: 0.85;
            color: var(--secondary);
        }

        .milestone-label {
            color: rgba(2, 44, 34, 0.82);
            font-size: 1.08rem;
            font-weight: 600;
            font-family: 'Nunito Sans', sans-serif;
        }

        /* Features Section */
        .features {
            background: var(--background);
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
            box-shadow: 0 0 22px rgba(16, 185, 129, 0.35);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.35rem;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1.5px solid rgba(16, 185, 129, 0.28);
            border-radius: 30px;
            padding: 2.85rem 2.1rem;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            box-shadow: var(--shadow-soft);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -52%;
            right: -52%;
            width: 210%;
            height: 210%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.11), transparent 72%);
            opacity: 0;
            transition: opacity 0.45s;
            pointer-events: none;
        }

        .feature-card:hover {
            transform: translateY(-13px) scale(1.022);
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 78px;
            height: 78px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin-bottom: 1.85rem;
            color: white;
            position: relative;
            z-index: 1;
            box-shadow: var(--neon-green);
            transition: transform 0.45s;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.12) rotate(4deg);
        }

        .feature-card h3 {
            font-size: 1.45rem;
            margin-bottom: 1.1rem;
            color: var(--secondary);
            position: relative;
            z-index: 1;
            font-family: 'Playfair Display', serif;
        }

        .feature-card p {
            color: rgba(2, 44, 34, 0.82);
            position: relative;
            z-index: 1;
            flex: 1;
            font-weight: 400;
        }

        /* Work Process */
        .process {
            background: linear-gradient(180deg, var(--background), rgba(236, 253, 245, 0.85));
            position: relative;
            overflow: hidden;
        }

        .process::after {
            content: '';
            position: absolute;
            bottom: -110px;
            left: -110px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(110, 231, 183, 0.12), transparent 72%);
            pointer-events: none;
        }

        .process-timeline {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            position: relative;
            padding: 2.2rem 0;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 62px;
            left: 7.5%;
            right: 7.5%;
            height: 4.5px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
            box-shadow: 0 0 28px rgba(16, 185, 129, 0.55);
            border-radius: 3px;
            z-index: 0;
        }

        .process-step {
            text-align: center;
            flex: 1;
            position: relative;
            z-index: 1;
            padding: 0 1.1rem;
        }

        .process-number {
            width: 115px;
            height: 115px;
            background: var(--card-bg);
            border: 4.5px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.9rem;
            font-weight: 800;
            color: var(--primary);
            margin: 0 auto 2.1rem;
            box-shadow: var(--neon-green);
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            font-family: 'Playfair Display', serif;
        }

        .process-number::after {
            content: '';
            position: absolute;
            inset: -9px;
            border: 3.5px solid transparent;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.45s;
        }

        .process-step:hover .process-number {
            transform: scale(1.14) rotate(4deg);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-color: var(--accent);
        }

        .process-step:hover .process-number::after {
            opacity: 1;
        }

        .process-step h3 {
            font-size: 1.4rem;
            margin-bottom: 0.95rem;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
        }

        .process-step p {
            color: rgba(2, 44, 34, 0.78);
            font-size: 0.97rem;
            padding: 0 0.6rem;
            font-weight: 400;
        }

        /* Packages */
        .packages {
            background: var(--background);
            position: relative;
        }

        .packages-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.6rem;
        }

        .package-card {
            background: var(--card-bg);
            border: 1.8px solid rgba(16, 185, 129, 0.32);
            border-radius: 34px;
            padding: 3.6rem 2.6rem;
            text-align: center;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-soft);
        }

        .package-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(16, 185, 129, 0.07), transparent 62%);
            opacity: 0;
            transition: opacity 0.45s;
        }

        .package-card.featured {
            border-color: var(--accent);
            transform: scale(1.07);
            box-shadow: 0 0 55px rgba(16, 185, 129, 0.38);
            z-index: 2;
        }

        .package-card.featured::before {
            opacity: 1;
        }

        .package-card.featured::after {
            content: 'MOST POPULAR';
            position: absolute;
            top: 27px;
            right: -48px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: white;
            padding: 0.65rem 4.2rem;
            transform: rotate(45deg);
            font-weight: 800;
            font-size: 0.77rem;
            letter-spacing: 1.2px;
            box-shadow: var(--neon-green);
            font-family: 'Nunito Sans', sans-serif;
        }

        .package-card:hover {
            transform: translateY(-16px);
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .package-card.featured:hover {
            transform: scale(1.07) translateY(-16px);
        }

        .package-name {
            font-size: 1.75rem;
            margin-bottom: 1.35rem;
            color: var(--secondary);
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .package-price {
            font-size: 3.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 2.1rem;
            font-family: 'Playfair Display', serif;
            line-height: 1;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .package-price span {
            font-size: 1.15rem;
            color: rgba(2, 44, 34, 0.68);
            font-weight: 400;
            margin-left: 6px;
            font-family: 'Nunito Sans', sans-serif;
        }

        .package-features {
            list-style: none;
            margin-bottom: 2.6rem;
            text-align: left;
            flex: 1;
        }

        .package-features li {
            padding: 0.9rem 0;
            border-bottom: 1.5px solid rgba(2, 44, 34, 0.1);
            display: flex;
            align-items: center;
            gap: 0.9rem;
            font-size: 0.97rem;
            font-weight: 500;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li i {
            color: var(--primary);
            font-size: 1.15rem;
            min-width: 22px;
        }

        .package-card .cta-btn {
            width: 100%;
            justify-content: center;
            padding: 1.05rem;
            font-size: 1.02rem;
        }

        /* Services */
        .services {
            background: linear-gradient(180deg, rgba(236, 253, 245, 0.85), var(--background));
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3.1rem;
            margin-bottom: 5.2rem;
        }

        .service-card {
            background: var(--card-bg);
            border: 1.8px solid rgba(16, 185, 129, 0.32);
            border-radius: 30px;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: var(--shadow-soft);
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(16, 185, 129, 0.09), transparent 72%);
            opacity: 0;
            transition: opacity 0.45s;
        }

        .service-card:hover {
            transform: translateY(-13px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-image {
            height: 265px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 62%;
            background: linear-gradient(to top, var(--background), transparent 92%);
        }

        .service-content {
            padding: 2.6rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        .service-icon {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.6rem;
            color: white;
            box-shadow: var(--neon-green);
        }

        .service-card h3 {
            font-size: 1.65rem;
            margin-bottom: 1.35rem;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
        }

        .service-card p {
            color: rgba(2, 44, 34, 0.86);
            margin-bottom: 2.1rem;
            flex: 1;
            font-weight: 400;
        }

        /* Booking Form */
        .booking-section {
            max-width: 870px;
            margin: 0 auto;
            background: var(--card-bg);
            border: 2px solid rgba(16, 185, 129, 0.42);
            border-radius: 38px;
            padding: 3.6rem;
            box-shadow: var(--neon-glow);
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.16), transparent 62%);
            pointer-events: none;
        }

        .booking-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.85rem;
            position: relative;
            z-index: 1;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 0.7rem;
            color: var(--secondary);
            font-weight: 650;
            font-size: 0.97rem;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-family: 'Nunito Sans', sans-serif;
        }

        .form-group label i {
            font-size: 0.92rem;
            color: var(--primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1.15rem 1.35rem;
            background: rgba(255, 255, 255, 0.75);
            border: 1.8px solid rgba(16, 185, 129, 0.42);
            border-radius: 16px;
            color: var(--text);
            font-family: inherit;
            font-size: 1.02rem;
            transition: all 0.35s;
            font-weight: 400;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4.5px rgba(110, 231, 183, 0.25);
            background: white;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(2, 44, 34, 0.52);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 135px;
        }

        .booking-section .cta-btn {
            padding: 1.15rem 2.6rem;
            font-size: 1.08rem;
            margin-top: 0.6rem;
        }

        /* Testimonials */
        .testimonials {
            background: var(--background);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -110px;
            right: -110px;
            width: 370px;
            height: 370px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(110, 231, 183, 0.13), transparent 72%);
            pointer-events: none;
        }

        .testimonials-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.35rem;
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 1.8px solid rgba(16, 185, 129, 0.28);
            border-radius: 30px;
            padding: 2.85rem;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-soft);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 27px;
            right: 37px;
            font-size: 7.5rem;
            color: var(--primary);
            opacity: 0.14;
            font-family: Georgia, serif;
            line-height: 1;
            font-weight: 300;
            pointer-events: none;
        }

        .testimonial-card:hover {
            transform: translateY(-13px);
            box-shadow: var(--neon-glow);
            border-color: var(--accent);
        }

        .testimonial-stars {
            color: var(--primary);
            margin-bottom: 1.35rem;
            font-size: 1.35rem;
            letter-spacing: 3.5px;
        }

        .testimonial-text {
            color: rgba(2, 44, 34, 0.92);
            margin-bottom: 2.1rem;
            line-height: 1.95;
            font-style: italic;
            flex: 1;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.35rem;
            padding-top: 1.6rem;
            border-top: 1.8px solid rgba(2, 44, 34, 0.1);
        }

        .author-avatar {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 1.35rem;
            flex-shrink: 0;
            box-shadow: 0 6px 18px rgba(16, 185, 129, 0.32);
        }

        .author-info h4 {
            color: var(--secondary);
            margin-bottom: 0.35rem;
            font-size: 1.15rem;
            font-family: 'Playfair Display', serif;
        }

        .author-info p {
            color: rgba(2, 44, 34, 0.68);
            font-size: 0.92rem;
            font-weight: 500;
        }

        /* FAQ */
        .faq {
            background: linear-gradient(180deg, var(--background), rgba(236, 253, 245, 0.92));
            position: relative;
        }

        .faq::after {
            content: '';
            position: absolute;
            bottom: -85px;
            left: 50%;
            transform: translateX(-50%);
            width: 82%;
            height: 210px;
            background: radial-gradient(ellipse, rgba(16, 185, 129, 0.16), transparent 72%);
            pointer-events: none;
        }

        .faq-container {
            max-width: 920px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1.8px solid rgba(16, 185, 129, 0.32);
            border-radius: 22px;
            margin-bottom: 1.35rem;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-soft);
        }

        .faq-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .faq-question {
            padding: 1.7rem 2.35rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 650;
            color: var(--secondary);
            font-size: 1.08rem;
            transition: background 0.35s;
            font-family: 'Nunito Sans', sans-serif;
        }

        .faq-question:hover {
            background: rgba(16, 185, 129, 0.08);
        }

        .faq-question i {
            transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--primary);
            font-size: 1.25rem;
            width: 26px;
            text-align: center;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 2.35rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            color: rgba(2, 44, 34, 0.87);
            line-height: 1.85;
            font-weight: 400;
        }

        .faq-item.active .faq-answer {
            padding: 0 2.35rem 1.85rem;
            max-height: 520px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.26), rgba(6, 78, 59, 0.36));
            border-top: 2px solid rgba(110, 231, 183, 0.42);
            border-bottom: 2px solid rgba(110, 231, 183, 0.42);
            text-align: center;
            padding: 6.5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236EE7B7' fill-opacity='0.09'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-section h2 {
            font-size: 3.4rem;
            margin-bottom: 1.35rem;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
            font-family: 'Playfair Display', serif;
        }

        .cta-section p {
            font-size: 1.33rem;
            color: rgba(2, 44, 34, 0.92);
            margin-bottom: 2.6rem;
            max-width: 670px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        .cta-section .cta-btn {
            padding: 1.15rem 3.1rem;
            font-size: 1.18rem;
            position: relative;
            z-index: 1;
        }

        /* Contact */
        .contact {
            background: var(--background);
            position: relative;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.12fr;
            gap: 4.7rem;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2.35rem;
        }

        .contact-card {
            background: var(--card-bg);
            border: 1.8px solid rgba(16, 185, 129, 0.32);
            border-radius: 26px;
            padding: 2.35rem;
            display: flex;
            align-items: flex-start;
            gap: 1.85rem;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), transparent);
            opacity: 0;
            transition: opacity 0.45s;
        }

        .contact-card:hover {
            transform: translateX(13px);
            border-color: var(--accent);
            box-shadow: var(--neon-glow);
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        .contact-icon {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
            box-shadow: var(--neon-green);
        }

        .contact-details h3 {
            color: var(--secondary);
            margin-bottom: 0.7rem;
            font-size: 1.35rem;
            font-family: 'Playfair Display', serif;
        }

        .contact-details p,
        .contact-details a {
            color: rgba(2, 44, 34, 0.82);
            text-decoration: none;
            transition: color 0.35s;
            font-size: 1.07rem;
            line-height: 1.75;
            font-weight: 400;
        }

        .contact-details a:hover {
            color: var(--primary);
            font-weight: 500;
        }

        .contact-form-container {
            background: var(--card-bg);
            border: 2px solid rgba(16, 185, 129, 0.42);
            border-radius: 34px;
            padding: 3.6rem;
            box-shadow: var(--neon-glow);
        }

        .contact-form-container h3 {
            margin-bottom: 2.1rem;
            color: var(--secondary);
            font-size: 1.85rem;
            text-align: center;
            font-family: 'Playfair Display', serif;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--secondary), rgba(6, 78, 59, 0.96));
            border-top: 2px solid rgba(16, 185, 129, 0.32);
            padding: 5.5rem 2rem 2.6rem;
            position: relative;
            color: rgba(236, 253, 245, 0.92);
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
            box-shadow: 0 0 18px rgba(16, 185, 129, 0.35);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.85fr 1fr 1fr 2.1fr;
            gap: 4.2rem;
            margin-bottom: 3.7rem;
        }

        .footer-col h3 {
            color: var(--accent);
            margin-bottom: 1.85rem;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 0.85rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 55px;
            height: 3.5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
        }

        .footer-col p {
            color: rgba(236, 253, 245, 0.86);
            line-height: 1.95;
            margin-bottom: 1.85rem;
            font-weight: 400;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1.05rem;
        }

        .footer-links a {
            color: rgba(236, 253, 245, 0.86);
            text-decoration: none;
            transition: all 0.35s;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.98rem;
            padding: 0.4rem 0;
            font-weight: 400;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 9px;
        }

        .footer-links a i {
            color: var(--primary);
            font-size: 0.82rem;
            transition: transform 0.35s;
        }

        .footer-links a:hover i {
            transform: translateX(4px);
        }

        .newsletter-form {
            display: flex;
            gap: 0.85rem;
            margin-top: 1.35rem;
            flex-wrap: wrap;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 210px;
            padding: 0.95rem 1.35rem;
            background: rgba(236, 253, 245, 0.88);
            border: 1.8px solid rgba(16, 185, 129, 0.42);
            border-radius: 14px;
            color: var(--text);
            font-family: inherit;
            font-size: 0.97rem;
            transition: all 0.35s;
            font-weight: 400;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3.5px rgba(110, 231, 183, 0.28);
        }

        .newsletter-form input::placeholder {
            color: rgba(2, 44, 34, 0.52);
        }

        .newsletter-form .cta-btn {
            padding: 0.95rem 1.6rem;
            font-size: 0.97rem;
            white-space: nowrap;
        }

        .social-links {
            display: flex;
            gap: 1.1rem;
            margin-top: 2.1rem;
        }

        .social-links a {
            width: 48px;
            height: 48px;
            background: rgba(16, 185, 129, 0.22);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            transition: all 0.35s;
            font-size: 1.25rem;
            border: 1.8px solid rgba(16, 185, 129, 0.35);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: translateY(-5px);
            box-shadow: var(--neon-green);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2.6rem;
            border-top: 1.8px solid rgba(16, 185, 129, 0.32);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(236, 253, 245, 0.72);
            font-size: 0.92rem;
            flex-wrap: wrap;
            gap: 1.6rem;
            font-weight: 400;
        }

        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
            margin-left: 1.85rem;
            transition: color 0.35s;
            font-weight: 500;
        }

        .footer-bottom a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(37px);
            transition: all 0.85s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 { transition-delay: 0.12s; }
        .stagger-2 { transition-delay: 0.24s; }
        .stagger-3 { transition-delay: 0.36s; }
        .stagger-4 { transition-delay: 0.48s; }
        .stagger-5 { transition-delay: 0.6s; }
        .stagger-6 { transition-delay: 0.72s; }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3.2rem;
            }

            .hero-content h1 {
                font-size: 3.6rem;
            }

            .hero-content p {
                margin: 0 auto 2.6rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: -1;
                max-width: 520px;
                margin: 0 auto;
            }

            .hero-wellness-badge {
                left: 50%;
                transform: translateX(-50%);
                bottom: -32px;
            }

            .about-grid,
            .services-grid,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .package-card.featured {
                transform: scale(1);
            }

            .process-timeline {
                flex-direction: column;
                gap: 3.7rem;
                padding: 0;
            }

            .process-timeline::before {
                display: none;
            }

            .milestones-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 87%;
                max-width: 430px;
                height: 100vh;
                background: var(--background);
                flex-direction: column;
                padding: 115px 2.6rem 3.2rem;
                transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
                border-left: 1.8px solid rgba(16, 185, 129, 0.32);
                backdrop-filter: blur(22px);
                z-index: 999;
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.9rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .booking-form {
                grid-template-columns: 1fr;
            }

            .milestones-grid {
                grid-template-columns: 1fr;
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 3.2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.6rem;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-bottom a {
                margin: 0 0.9rem;
            }

            .contact-form-container {
                padding: 2.6rem;
            }

            .package-card {
                padding: 3.1rem 2.1rem;
            }

            .process-step {
                padding: 0;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.1rem;
            }

            .section-subtitle {
                font-size: 0.82rem;
                letter-spacing: 3.2px;
            }

            .cta-btn,
            .btn-secondary {
                padding: 0.85rem 1.6rem;
                font-size: 0.92rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-wellness-badge {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin: 2.2rem auto 0;
                width: 100%;
                max-width: 310px;
            }

            .milestone-number {
                font-size: 3.4rem;
            }

            .package-price {
                font-size: 2.9rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form .cta-btn {
                width: 100%;
            }

            .section-header::after {
                width: 75px;
                bottom: -25px;
            }
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--background);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.65s, visibility 0.65s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-content {
            text-align: center;
        }

        .loader-spinner {
            width: 72px;
            height: 72px;
            border: 4.5px solid rgba(16, 185, 129, 0.28);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1.1s linear infinite;
            margin: 0 auto 1.6rem;
            position: relative;
        }

        .loader-spinner::after {
            content: '';
            position: absolute;
            inset: -7px;
            border: 4.5px solid transparent;
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1.6s linear infinite reverse;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loader-text {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: 1.2px;
            font-family: 'Playfair Display', serif;
        }

        /* Form Success Message */
        .form-success {
            display: none;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(16, 185, 129, 0.12));
            border: 1.8px solid rgba(16, 185, 129, 0.42);
            border-radius: 16px;
            padding: 1.35rem;
            margin-bottom: 1.6rem;
            color: var(--secondary);
            text-align: center;
            font-weight: 600;
            font-family: 'Nunito Sans', sans-serif;
        }

        .form-success.show {
            display: block;
            animation: fadeIn 0.45s ease;
        }

        /* Leaf decoration animation */
        @keyframes leafPulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .floating-leaf {
            animation: floatLeaf 28s infinite ease-in-out, leafPulse 4s infinite ease-in-out;
        }
