
        :root {
            --olive-green: #6B8E23;
            --olive-dark: #556B2F;
            --olive-neon: #9ACD32;
            --cream: #FFFDD0;
            --cream-dark: #F5F5DC;
            --dark-brown: #3E2723;
            --brown-light: #5D4037;
            --white: #FFFFFF;
            --glass-bg: rgba(255, 253, 208, 0.1);
            --glass-border: rgba(107, 142, 35, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
            color: var(--dark-brown);
            overflow-x: hidden;
        }

        .nav-menu li{
            margin-left:35px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--olive-green);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--olive-dark);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 253, 208, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(107, 142, 35, 0.1);
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--olive-green);
        }

        .navbar.scrolled {
            background: rgba(62, 39, 35, 0.95);
            border-bottom: 2px solid var(--olive-neon);
        }

        .navbar.scrolled .nav-link,
        .navbar.scrolled .logo-text {
            color: var(--cream);
        }

        .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.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            box-shadow: 0 0 20px rgba(107, 142, 35, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(107, 142, 35, 0.5); }
            50% { box-shadow: 0 0 30px rgba(154, 205, 50, 0.8); }
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-brown);
            transition: color 0.3s ease;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark-brown);
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--olive-green), var(--olive-neon));
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--olive-green);
            text-shadow: 0 0 10px rgba(107, 142, 35, 0.3);
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            color: var(--white) !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-weight: 600;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(107, 142, 35, 0.6);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-brown);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(107, 142, 35, 0.1) 0%, rgba(62, 39, 35, 0.1) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--olive-neon) 0%, transparent 70%);
            opacity: 0.1;
            top: -200px;
            right: -200px;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--olive-green) 0%, transparent 70%);
            opacity: 0.1;
            bottom: -100px;
            left: -100px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--dark-brown);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .hero-content h1 span {
            color: var(--olive-green);
            position: relative;
            display: inline-block;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(107, 142, 35, 0.2);
            z-index: -1;
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: var(--brown-light);
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 142, 35, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--dark-brown);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid var(--olive-green);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--olive-green);
            color: var(--white);
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(107, 142, 35, 0.3);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-image:hover img {
            transform: scale(1.05);
        }

        .floating-badge {
            position: absolute;
            background: var(--white);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: float 3s ease-in-out infinite;
        }

        .badge-1 {
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .badge-2 {
            bottom: 20%;
            right: -5%;
            animation-delay: 1.5s;
        }

        .badge-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--olive-green), var(--olive-neon));
            border-radius: 2px;
        }

        .section-title p {
            color: var(--brown-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* About Section */
        .about {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%236B8E23" opacity="0.1"/></svg>');
            opacity: 0.5;
        }

        .about-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .about-card {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(107, 142, 35, 0.1);
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--olive-green), var(--olive-neon));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .about-card:hover::before {
            transform: scaleX(1);
        }

        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(107, 142, 35, 0.2);
        }

        .about-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
        }

        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-brown);
        }

        .about-card p {
            color: var(--brown-light);
            line-height: 1.8;
        }

        /* Milestones */
        .milestones {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown-light) 100%);
            color: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%239ACD32" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
        }

        .milestones-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .milestone-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 253, 208, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(154, 205, 50, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .milestone-item:hover {
            background: rgba(255, 253, 208, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(154, 205, 50, 0.2);
        }

        .milestone-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--olive-neon), var(--cream));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .milestone-label {
            font-size: 1.1rem;
            color: var(--cream);
            opacity: 0.9;
        }

        /* Features Section */
        .features {
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(107, 142, 35, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(107, 142, 35, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .feature-card:hover {
            border-color: var(--olive-green);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(107, 142, 35, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--white);
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(107, 142, 35, 0.3);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark-brown);
        }

        .feature-card p {
            color: var(--brown-light);
            line-height: 1.6;
        }

        /* Process Section */
        .process {
            background: var(--white);
        }

        .process-timeline {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--olive-green), var(--olive-neon));
            z-index: 0;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 1rem;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(107, 142, 35, 0.4);
            border: 4px solid var(--cream);
            transition: all 0.3s ease;
        }

        .process-step:hover .process-number {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(107, 142, 35, 0.6);
        }

        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark-brown);
        }

        .process-step p {
            color: var(--brown-light);
            font-size: 0.9rem;
        }

        /* Packages Section */
        .packages {
            background: linear-gradient(135deg, rgba(107, 142, 35, 0.05) 0%, rgba(62, 39, 35, 0.05) 100%);
        }

        .packages-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .package-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(107, 142, 35, 0.1);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .package-card.featured {
            border-color: var(--olive-green);
            transform: scale(1.05);
        }

        .package-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(107, 142, 35, 0.2);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .package-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--cream);
        }

        .package-name {
            font-size: 1.5rem;
            color: var(--dark-brown);
            margin-bottom: 0.5rem;
        }

        .package-price {
            font-size: 2.5rem;
            color: var(--olive-green);
            font-weight: 700;
        }

        .package-price span {
            font-size: 1rem;
            color: var(--brown-light);
        }

        .package-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .package-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--cream);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--brown-light);
        }

        .package-features li i {
            color: var(--olive-green);
        }

        .package-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .package-btn:hover {
            box-shadow: 0 8px 25px rgba(107, 142, 35, 0.4);
            transform: translateY(-2px);
        }

        /* Services Section */
        .services {
            background: var(--white);
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(107, 142, 35, 0.1);
            display: flex;
            gap: 1.5rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            border-color: var(--olive-green);
            transform: translateX(10px);
            box-shadow: 0 15px 50px rgba(107, 142, 35, 0.2);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.75rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
        }

        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark-brown);
        }

        .service-content p {
            color: var(--brown-light);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Booking Form */
        .booking {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown-light) 100%);
            color: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .booking::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(154, 205, 50, 0.1) 0%, transparent 50%);
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 30px;
            border: 1px solid rgba(154, 205, 50, 0.2);
            position: relative;
            z-index: 1;
        }

        .booking-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--cream);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid rgba(154, 205, 50, 0.3);
            border-radius: 10px;
            background: rgba(255, 253, 208, 0.1);
            color: var(--cream);
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--olive-neon);
            box-shadow: 0 0 15px rgba(154, 205, 50, 0.3);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 253, 208, 0.6);
        }

        .submit-btn {
            grid-column: 1 / -1;
            padding: 1.25rem;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(107, 142, 35, 0.4);
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .testimonials-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(107, 142, 35, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(107, 142, 35, 0.2);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 5rem;
            color: var(--olive-green);
            opacity: 0.2;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--olive-green);
        }

        .testimonial-info h4 {
            color: var(--dark-brown);
            margin-bottom: 0.25rem;
        }

        .testimonial-info .stars {
            color: #FFD700;
        }

        .testimonial-text {
            color: var(--brown-light);
            line-height: 1.8;
            font-style: italic;
        }

        /* FAQ Section */
        .faq {
            background: var(--white);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
            border: 1px solid var(--glass-border);
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(107, 142, 35, 0.05);
        }

        .faq-question h3 {
            font-size: 1.1rem;
            color: var(--dark-brown);
            font-weight: 600;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 1.5rem 1.5rem;
            color: var(--brown-light);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--olive-green) 0%, var(--olive-dark) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 2rem;
        }

        .cta-section::before,
        .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-section::before {
            top: -150px;
            left: -150px;
        }

        .cta-section::after {
            bottom: -150px;
            right: -150px;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-btn-white {
            background: var(--white);
            color: var(--olive-green);
            padding: 1rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(107, 142, 35, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 50px rgba(107, 142, 35, 0.2);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark-brown);
        }

        .contact-details p,
        .contact-details a {
            color: var(--brown-light);
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--olive-green);
        }

        .contact-form-wrapper {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(107, 142, 35, 0.1);
        }

        .contact-form-wrapper h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--dark-brown);
        }

        .contact-form .form-group {
            margin-bottom: 1.5rem;
        }

        .contact-form .form-group label {
            color: var(--dark-brown);
            font-weight: 500;
        }

        .contact-form .form-group input,
        .contact-form .form-group textarea {
            border-color: var(--cream);
            background: var(--cream);
            color: var(--dark-brown);
        }

        .contact-form .form-group input:focus,
        .contact-form .form-group textarea:focus {
            border-color: var(--olive-green);
            background: var(--white);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-brown) 0%, #2C1810 100%);
            color: var(--cream);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--olive-neon);
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--olive-green), var(--olive-neon));
        }

        .footer-col p {
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: var(--cream);
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-col ul li a:hover {
            color: var(--olive-neon);
            padding-left: 5px;
        }

        .footer-col ul li a i {
            color: var(--olive-green);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-form input {
            padding: 1rem;
            border: 2px solid rgba(154, 205, 50, 0.3);
            border-radius: 10px;
            background: rgba(255, 253, 208, 0.1);
            color: var(--cream);
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 253, 208, 0.6);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--olive-neon);
        }

        .newsletter-form button {
            padding: 1rem;
            background: linear-gradient(135deg, var(--olive-green), var(--olive-neon));
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(107, 142, 35, 0.4);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(154, 205, 50, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--olive-green);
        }

        .social-links a:hover {
            background: var(--olive-green);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(154, 205, 50, 0.2);
            padding-top: 2rem;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            opacity: 0.8;
        }

        .footer-bottom a {
            color: var(--olive-neon);
            text-decoration: none;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--cream);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }

            .about-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .milestones-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid,
            .packages-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--cream);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .process-timeline {
                flex-direction: column;
                gap: 2rem;
            }

            .process-timeline::before {
                display: none;
            }

            .features-grid,
            .packages-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .milestones-grid {
                grid-template-columns: 1fr;
            }

            .booking-form {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Neon Glow Effect */
        .neon-text {
            text-shadow: 0 0 10px rgba(107, 142, 35, 0.5),
                         0 0 20px rgba(107, 142, 35, 0.3),
                         0 0 30px rgba(107, 142, 35, 0.1);
        }
