
        :root {
            --primary-green: #14532D;
            --primary-blue: #1E3A8A;
            --light-blue: #93C5FD;
            --light-green: #F0FDF4;
            --neon-glow: rgba(147, 197, 253, 0.6);
            --gradient-primary: linear-gradient(135deg, #14532D 0%, #1E3A8A 100%);
            --gradient-neon: linear-gradient(135deg, #93C5FD 0%, #14532D 50%, #1E3A8A 100%);
            --text-dark: #1a1a2e;
            --text-light: #ffffff;
            --shadow-neon: 0 0 30px rgba(147, 197, 253, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--light-green);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light-green);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 5px;
        }

        /* Floating Elements Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes floatReverse {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(20px) rotate(-5deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        @keyframes neonGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(147, 197, 253, 0.4), 0 0 40px rgba(147, 197, 253, 0.2); }
            50% { box-shadow: 0 0 40px rgba(147, 197, 253, 0.6), 0 0 80px rgba(147, 197, 253, 0.4); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 15px 0;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .logo {
            color: var(--primary-green);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            animation: pulse 2s infinite;
            box-shadow: var(--shadow-neon);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .navbar.scrolled .nav-menu a {
            color: var(--text-dark);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-neon);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--light-blue);
        }

        .nav-cta {
            background: var(--gradient-primary) !important;
            color: white !important;
            padding: 12px 28px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            box-shadow: var(--shadow-neon);
            transition: all 0.3s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(20, 83, 45, 0.4) !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 10000;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .navbar.scrolled .mobile-toggle span {
            background: var(--primary-green);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: var(--gradient-primary);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(147, 197, 253, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(240, 253, 244, 0.1) 0%, transparent 50%);
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--light-blue);
            top: -100px;
            right: -100px;
            animation: float 8s ease-in-out infinite;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: var(--light-green);
            bottom: -50px;
            left: -50px;
            animation: floatReverse 10s ease-in-out infinite;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: rgba(147, 197, 253, 0.5);
            top: 50%;
            left: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 25px;
            animation: slideInLeft 1s ease-out;
        }

        .hero-content h1 span {
            background: linear-gradient(90deg, var(--light-blue), var(--light-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            line-height: 1.8;
            animation: slideInLeft 1s ease-out 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: slideInLeft 1s ease-out 0.4s backwards;
        }

        .btn-primary {
            background: white;
            color: var(--primary-green);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-5px);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out 0.3s backwards;
        }

        .hero-image-main {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            animation: neonGlow 3s ease-in-out infinite;
        }

        .hero-floating-card {
            position: absolute;
            background: white;
            padding: 20px 25px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            animation: float 4s ease-in-out infinite;
        }

        .card-1 {
            bottom: 30px;
            left: -50px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .card-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
        }

        .card-text strong {
            display: block;
            color: var(--primary-green);
            font-size: 1.1rem;
        }

        .card-text span {
            color: #666;
            font-size: 0.85rem;
        }

        .card-2 {
            top: 30px;
            right: -30px;
            background: var(--gradient-primary);
            color: white;
        }

        .card-2 strong {
            font-size: 2rem;
            display: block;
        }

        .card-2 span {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Section Styles */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(20, 83, 45, 0.1), rgba(30, 58, 138, 0.1));
            color: var(--primary-green);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(20, 83, 45, 0.2);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }

        /* About Section */
        .about-section {
            background: white;
        }

        .about-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-img-main {
            width: 100%;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-img-float {
            position: absolute;
            width: 250px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            bottom: -40px;
            right: -40px;
            border: 5px solid white;
            animation: float 5s ease-in-out infinite;
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--primary-green);
            margin-bottom: 25px;
        }

        .about-content > p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .about-feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .feature-icon-small {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, rgba(20, 83, 45, 0.1), rgba(147, 197, 253, 0.2));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.2rem;
        }

        .feature-text h4 {
            color: var(--primary-blue);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .feature-text p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Vision Mission Values */
        .vmv-section {
            background: var(--light-green);
        }

        .vmv-grid {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .vmv-card {
            background: white;
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .vmv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .vmv-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(20, 83, 45, 0.15);
            border-color: var(--light-blue);
        }

        .vmv-card:hover::before {
            transform: scaleX(1);
        }

        .vmv-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: white;
            transition: all 0.4s ease;
        }

        .vmv-card:hover .vmv-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-neon);
        }

        .vmv-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .vmv-card p {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Milestones Section */
        .milestones-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .milestones-section .section-title,
        .milestones-section .section-subtitle {
            color: white;
        }

        .milestones-section .section-badge {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .milestone-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .milestone-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(147, 197, 253, 0.1);
        }

        .ms-1 { width: 300px; height: 300px; top: -100px; right: -100px; }
        .ms-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; }

        .metrics-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .metric-card {
            text-align: center;
            padding: 40px 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

        .metric-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .metric-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--light-blue);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .metric-label {
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .metric-icon {
            font-size: 2.5rem;
            color: var(--light-blue);
            margin-bottom: 15px;
        }

        /* Why Choose Us */
        .why-us-section {
            background: white;
        }

        .features-grid {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .feature-card {
            background: var(--light-green);
            padding: 45px 35px;
            border-radius: 25px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:nth-child(even) {
            background: linear-gradient(135deg, rgba(147, 197, 253, 0.15), rgba(240, 253, 244, 0.3));
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(147, 197, 253, 0.1) 0%, transparent 70%);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(20, 83, 45, 0.15);
        }

        .feature-number {
            font-size: 4rem;
            font-weight: 900;
            color: rgba(20, 83, 45, 0.08);
            position: absolute;
            top: 15px;
            right: 25px;
            font-family: 'Playfair Display', serif;
        }

        .feature-card-icon {
            width: 75px;
            height: 75px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-card-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: var(--shadow-neon);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Work Process */
        .process-section {
            background: var(--light-green);
        }

        .process-timeline {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
        }

        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-green), var(--primary-blue), var(--light-blue));
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }

        .process-step:last-child {
            margin-bottom: 0;
        }

        .process-step:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .step-content {
            width: calc(50% - 50px);
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .step-content:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(20, 83, 45, 0.15);
        }

        .step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            z-index: 2;
            box-shadow: 0 5px 25px rgba(20, 83, 45, 0.3);
            border: 5px solid var(--light-green);
        }

        .step-content h3 {
            font-size: 1.3rem;
            color: var(--primary-green);
            margin-bottom: 12px;
        }

        .step-content p {
            color: #666;
            line-height: 1.7;
        }

        /* Packages Section */
        .packages-section {
            background: white;
        }

        .packages-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            align-items: stretch;
        }

        .package-card {
            background: white;
            border-radius: 30px;
            padding: 45px 35px;
            border: 2px solid #eee;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .package-card.featured {
            border-color: var(--primary-green);
            transform: scale(1.05);
            box-shadow: 0 25px 70px rgba(20, 83, 45, 0.2);
        }

        .package-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }

        .package-card.featured:hover {
            transform: scale(1.08) translateY(-10px);
        }

        .package-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

        .package-name {
            font-size: 1.4rem;
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .package-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            font-family: 'Playfair Display', serif;
        }

        .package-price span {
            font-size: 1rem;
            font-weight: 400;
            color: #888;
        }

        .package-features {
            list-style: none;
            flex-grow: 1;
            margin-bottom: 30px;
        }

        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #555;
        }

        .package-features li i {
            color: var(--primary-green);
            font-size: 1rem;
        }

        .package-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: block;
        }

        .package-btn.primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 10px 30px rgba(20, 83, 45, 0.3);
        }

        .package-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(20, 83, 45, 0.4);
        }

        .package-btn.outline {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }

        .package-btn.outline:hover {
            background: var(--primary-green);
            color: white;
        }

        /* Services Section */
        .services-section {
            background: var(--light-green);
        }

        .services-grid {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .service-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 280px 1fr;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(20, 83, 45, 0.15);
        }

        .service-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-info {
            padding: 35px;
        }

        .service-info h3 {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .service-info p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            gap: 15px;
            color: var(--primary-green);
        }

        /* Booking Form Section */
        .booking-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .booking-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .booking-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: white;
            margin-bottom: 25px;
        }

        .booking-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .booking-features-list {
            list-style: none;
        }

        .booking-features-list li {
            color: white;
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.05rem;
        }

        .booking-features-list li i {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .booking-form-wrapper {
            background: white;
            padding: 45px;
            border-radius: 30px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
        }

        .booking-form-wrapper h3 {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 4px rgba(20, 83, 45, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(20, 83, 45, 0.4);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: white;
        }

        .testimonials-slider {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: calc(33.333% - 25px);
            margin: 0 12px;
            background: var(--light-green);
            padding: 40px 30px;
            border-radius: 25px;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(20, 83, 45, 0.12);
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-green);
        }

        .author-info h4 {
            color: var(--primary-green);
            font-size: 1.1rem;
            margin-bottom: 3px;
        }

        .author-info span {
            color: #888;
            font-size: 0.9rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .slider-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: 2px solid var(--primary-green);
            background: transparent;
            color: var(--primary-green);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: var(--primary-green);
            color: white;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--light-green);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .faq-item {
            background: white;
            border-radius: 20px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(20, 83, 45, 0.1);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question h3 {
            font-size: 1.15rem;
            color: var(--primary-green);
            font-weight: 600;
            padding-right: 20px;
        }

        .faq-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 30px 25px;
            color: #666;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-container h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
        }

        .cta-container p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-btn.white {
            background: white;
            color: var(--primary-green);
        }

        .cta-btn.white:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .cta-btn.outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn.outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        /* Contact Section */
        .contact-section {
            background: white;
        }

        .contact-grid {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .contact-info > p {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: linear-gradient(135deg, rgba(20, 83, 45, 0.1), rgba(147, 197, 253, 0.2));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.4rem;
        }

        .contact-text h4 {
            color: var(--primary-green);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .contact-text p,
        .contact-text a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: var(--primary-blue);
        }

        .contact-form-wrapper {
            background: var(--light-green);
            padding: 45px;
            border-radius: 30px;
        }

        .contact-form-wrapper h3 {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin-bottom: 25px;
        }

        /* Footer */
        .footer {
            background: var(--primary-green);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-neon);
        }

        .footer-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .fs-1 {
            width: 400px;
            height: 400px;
            background: rgba(147, 197, 253, 0.05);
            border-radius: 50%;
            top: -200px;
            right: -100px;
        }

        .fs-2 {
            width: 300px;
            height: 300px;
            background: rgba(240, 253, 244, 0.05);
            border-radius: 50%;
            bottom: -150px;
            left: -100px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--light-blue);
            border-radius: 2px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--light-blue);
            color: var(--primary-green);
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--light-blue);
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-input {
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-input:focus {
            border-color: var(--light-blue);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            padding: 15px 25px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-legal {
            display: flex;
            gap: 25px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--light-blue);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9998;
            box-shadow: 0 5px 25px rgba(20, 83, 45, 0.3);
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(20, 83, 45, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.2rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .vmv-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 100px 40px 40px;
                gap: 25px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu a {
                color: var(--text-dark) !important;
                font-size: 1.1rem;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                max-width: 600px;
                margin: 0 auto;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-img-float {
                display: none;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
            }

            .package-card.featured {
                transform: none;
            }

            .package-card.featured:hover {
                transform: translateY(-10px);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                grid-template-columns: 1fr;
            }

            .service-img {
                height: 220px;
            }

            .booking-container {
                grid-template-columns: 1fr;
            }

            .process-line {
                left: 30px;
            }

            .process-step,
            .process-step:nth-child(odd) {
                flex-direction: row;
            }

            .step-content {
                width: calc(100% - 100px);
                margin-left: 50px;
            }

            .step-number {
                left: 30px;
            }

            .testimonial-card {
                min-width: calc(50% - 25px);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .vmv-grid {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .metric-number {
                font-size: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                min-width: 100%;
            }

            .cta-container h2 {
                font-size: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .hero-floating-card {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .booking-form-wrapper {
                padding: 25px;
            }

            .contact-form-wrapper {
                padding: 25px;
            }
        }
