        :root {
            --primary: #EA580C;
            --secondary: #FB923C;
            --accent: #FED7AA;
            --light: #FFF7ED;
            --dark: #1F2937;
            --darker: #111827;
            --gradient-1: linear-gradient(135deg, #EA580C 0%, #FB923C 100%);
            --gradient-2: linear-gradient(135deg, #FB923C 0%, #FED7AA 100%);
            --gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 100%);
            --gradient-hero: linear-gradient(135deg, #111827 0%, #1F2937 50%, #EA580C 100%);
            --neon-glow: 0 0 30px rgba(234, 88, 12, 0.6);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        .nav-menu li{
            margin-left:25px !important;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 5px;
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes float-delayed {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(251, 146, 60, 0.4); }
            50% { box-shadow: 0 0 40px rgba(251, 146, 60, 0.8); }
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes glow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(251, 146, 60, 0.5)); }
            50% { filter: drop-shadow(0 0 40px rgba(251, 146, 60, 0.8)); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .floating-delayed {
            animation: float-delayed 5s ease-in-out infinite;
            animation-delay: 1s;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(234, 88, 12, 0.1);
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .navbar.scrolled {
            box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
        }

        .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.5rem;
            font-size: 1.4rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .logo i {
            font-size: 1.8rem;
            -webkit-text-fill-color: var(--primary);
            animation: pulse-glow 2s infinite;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            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: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .cta-btn {
            background: var(--gradient-1);
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(234, 88, 12, 0.6);
            color: white !important;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Hero Section - DARK BACKGROUND */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: var(--gradient-hero);
            background-size: 400% 400%;
            animation: gradient-shift 15s ease infinite;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(234, 88, 12, 0.3) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(251, 146, 60, 0.2) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
            animation: float-delayed 7s ease-in-out infinite;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 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.1;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 0 30px rgba(251, 146, 60, 0.5);
        }

        .hero-content p {
            font-size: 1.25rem;
            color: #FED7AA;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--secondary);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--gradient-1);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(234, 88, 12, 0.4);
            border: 2px solid rgba(254, 215, 170, 0.2);
        }

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            z-index: 2;
            backdrop-filter: blur(10px);
        }

        .floating-card.card-1 {
            top: 10%;
            left: -10%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-card.card-2 {
            bottom: 20%;
            right: -5%;
            animation: float-delayed 5s ease-in-out infinite;
        }

        .floating-card i {
            font-size: 2rem;
            color: var(--primary);
        }

        .floating-card strong {
            color: var(--dark);
            display: block;
        }

        .floating-card p {
            color: #6B7280;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            color: #6B7280;
            font-size: 1.1rem;
        }

        /* About Section */
        .about {
            background: white;
            position: relative;
        }

        .about-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .about-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(234, 88, 12, 0.2);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .about-item {
            background: var(--light);
            padding: 2rem;
            border-radius: 20px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .about-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(234, 88, 12, 0.1);
        }

        .about-item h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-item a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            margin-top: 0.5rem;
        }

        .about-item a:hover {
            color: var(--primary);
        }

        /* Milestones */
        .milestones {
            background: var(--gradient-1);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .milestones-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .milestone-item {
            text-align: center;
            color: white;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .milestone-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
        }

        .milestone-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Features Section */
        .features {
            background: var(--light);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(251, 146, 60, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--dark);
        }

        /* Process Section */
        .process {
            background: white;
        }

        .process-steps {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-2);
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 1rem;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: white;
            border: 4px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .process-step:hover .step-number {
            background: var(--gradient-1);
            color: white;
            transform: scale(1.1);
        }

        .process-step h3 {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        /* Packages Section */
        .packages {
            background: var(--light);
        }

        .packages-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .package-card {
            background: white;
            border-radius: 30px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .package-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(234, 88, 12, 0.2);
        }

        .package-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: 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 40px rgba(234, 88, 12, 0.15);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .package-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin: 1.5rem 0;
        }

        .package-price span {
            font-size: 1rem;
            color: #6B7280;
        }

        .package-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .package-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f3f4f6;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .package-features li i {
            color: var(--primary);
        }

        /* Services Section */
        .services {
            background: white;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: var(--light);
            padding: 2.5rem;
            border-radius: 25px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .service-card:hover {
            background: var(--gradient-1);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(234, 88, 12, 0.3);
        }

        .service-card:hover h3,
        .service-card:hover p {
            color: white;
        }

            
        .service-card:hover .service-icon {
            color: #EA580C;
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--dark);
            transition: color 0.3s ease;
        }

        .service-card p {
            color: #6B7280;
            transition: color 0.3s ease;
        }

        /* Booking Form */
        .booking-section {
            background: var(--light);
            padding: 5rem 2rem;
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(234, 88, 12, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-family: inherit;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        /* Reviews Section */
      

        .reviews-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(234, 88, 12, 0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent);
        }

        .review-meta h4 {
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .review-stars {
            color: #FBBF24;
        }

        .review-text {
            color: #6B7280;
            font-style: italic;
            line-height: 1.8;
        }

        /* FAQ Section */
        .faq {
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light);
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(251, 146, 60, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(251, 146, 60, 0.05);
        }

        .faq-question i {
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #6B7280;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-1);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: rgba(255,255,255,0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-section .cta-btn {
            background: white;
            color: var(--primary);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        .cta-section .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Contact Section */
        .contact {
            background: var(--light);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(234, 88, 12, 0.1);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .contact-details p {
            color: #6B7280;
            line-height: 1.6;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(234, 88, 12, 0.1);
        }

        /* Newsletter Section */
        .newsletter {
            background: white;
            padding: 4rem 2rem;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-form {
            background: var(--light);
            padding: 3rem;
            border-radius: 25px;
            margin-top: 2rem;
        }

        .newsletter-form .form-group {
            text-align: left;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin: 1.5rem 0;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: var(--primary);
        }

        .checkbox-group label {
            font-size: 0.9rem;
            color: #6B7280;
            line-height: 1.6;
        }

        .checkbox-group a {
            color: var(--primary);
            text-decoration: none;
        }

        .success-message {
            display: none;
            background: #10B981;
            color: white;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            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 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-col p {
            color: #9CA3AF;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #9CA3AF;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-links a i {
            font-size: 0.8rem;
        }

        .footer-newsletter-form input {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            margin-bottom: 1rem;
            font-family: inherit;
        }

        .footer-newsletter-form button {
            width: 100%;
            padding: 1rem;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(234, 88, 12, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            color: #9CA3AF;
        }

        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
            margin: 0 1rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .about-grid,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .features-grid,
            .packages-grid,
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .milestones-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                flex-direction: column;
                gap: 2rem;
            }

            .process-steps::before {
                display: none;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .features-grid,
            .packages-grid,
            .services-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .milestones-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .package-card.featured {
                transform: scale(1);
            }

            .package-card.featured:hover {
                transform: scale(1) translateY(-10px);
            }
        }

        /* Privacy & Terms Sections */
        .legal-section {
            background: white;
            padding: 5rem 2rem;
        }

        .legal-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .legal-content h2 {
            color: var(--primary);
            margin: 2rem 0 1rem;
        }

        .legal-content h3 {
            color: var(--secondary);
            margin: 1.5rem 0 0.75rem;
        }

        .legal-content p,
        .legal-content ul {
            color: #4B5563;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .legal-content ul {
            padding-left: 2rem;
        }

        .legal-content li {
            margin-bottom: 0.5rem;
        }
