
        :root {
            --royal-blue: #1D4ED8;
            --orange: #F97316;
            --white: #FFFFFF;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }

        .nav-links li{
            margin-left:35px !important;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        /* 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 gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(29, 78, 216, 0.5); }
            50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.5); }
        }
        
        /* Glass Morphism */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow);
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 5%;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        nav.scrolled .logo {
            color: var(--royal-blue);
        }
        
        .logo i {
            color: var(--orange);
            font-size: 2rem;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }
        
        nav.scrolled .nav-links a {
            color: #333;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--royal-blue), var(--orange));
            color: white !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(29, 78, 216, 0.4);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--white);
        }
        
        nav.scrolled .mobile-menu {
            color: var(--royal-blue);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(-45deg, #1D4ED8, #F97316, #1D4ED8, #F97316);
            background-size: 400% 400%;
            animation: gradient-shift 15s ease infinite;
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }
        
        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 40%;
            right: 20%;
            animation-delay: 1s;
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        
        .hero-content h1 span {
            color: #FFD700;
            position: relative;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--white);
            color: var(--royal-blue);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border: 2px solid var(--white);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--royal-blue);
        }
        
        .hero-image {
            position: relative;
            animation: float-delayed 6s ease-in-out infinite;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }
        
        .experience-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--orange);
            color: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
            animation: glow 3s ease-in-out infinite;
        }
        
        .experience-badge .number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            line-height: 1;
        }
        
        .experience-badge .text {
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        /* Section Styles */
        section {
            padding: 100px 5%;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--royal-blue);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #666;
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* About Section */
        .about {
            background: var(--white);
        }
        
        .about-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .about-content h3 {
            font-size: 2rem;
            color: var(--royal-blue);
            margin-bottom: 1.5rem;
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.1rem;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .value-card {
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(249, 115, 22, 0.1));
            padding: 25px;
            border-radius: 20px;
            border-left: 4px solid var(--orange);
        }
        
        .value-card h4 {
            color: var(--royal-blue);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .value-card p {
            font-size: 0.95rem;
            margin: 0;
        }
        
        /* Metrics Section */
        .metrics {
            background: linear-gradient(135deg, var(--royal-blue), #1e40af);
            color: white;
            padding: 80px 5%;
        }
        
        .metrics-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        
        .metric-item {
            padding: 30px;
        }
        
        .metric-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--orange);
            display: block;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .metric-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Features Section */
        .features {
            background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 24px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--royal-blue), var(--orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        
        .feature-card h3 {
            color: var(--royal-blue);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Process Section */
        .process {
            background: var(--white);
        }
        
        .process-timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--royal-blue), var(--orange));
        }
        
        .process-step {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .process-content {
            width: 45%;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid rgba(29, 78, 216, 0.1);
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--royal-blue), var(--orange));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.5rem;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            border: 4px solid white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .process-content h3 {
            color: var(--royal-blue);
            margin-bottom: 10px;
        }
        
        /* Services Section */
        .services {
            background: linear-gradient(135deg, #f0f4ff 0%, #fff5eb 100%);
        }
        
        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .service-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            height: 400px;
            cursor: pointer;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover img {
            transform: scale(1.1);
        }
        
        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(29, 78, 216, 0.95), transparent);
            padding: 40px 30px;
            color: white;
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        
        .service-card:hover .service-overlay {
            transform: translateY(0);
        }
        
        .service-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .service-overlay p {
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--orange);
            font-weight: 700;
            text-decoration: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--royal-blue), var(--orange));
            padding: 100px 5%;
            text-align: center;
            color: white;
            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: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        /* Finance Section */
        .finance {
            background: var(--white);
        }
        
        .finance-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .finance-content h3 {
            font-size: 2.2rem;
            color: var(--royal-blue);
            margin-bottom: 20px;
        }
        
        .finance-features {
            list-style: none;
            margin: 30px 0;
        }
        
        .finance-features li {
            padding: 15px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        
        .finance-features i {
            color: var(--orange);
            font-size: 1.3rem;
        }
        
        .finance-image {
            position: relative;
        }
        
        .finance-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Pricing Section */
        .pricing {
            background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 30px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .pricing-card.featured {
            border-color: var(--orange);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(249, 115, 22, 0.2);
        }
        
        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--orange);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            color: var(--royal-blue);
            margin-bottom: 10px;
        }
        
        .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--royal-blue);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 1rem;
            color: #666;
            font-weight: 400;
        }
        
        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .pricing-features i {
            color: var(--orange);
        }
        
        /* Booking Form Section */
        .booking {
            background: linear-gradient(135deg, var(--royal-blue), #1e40af);
            padding: 100px 5%;
        }
        
        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .booking-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group.full {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            font-weight: 700;
            color: var(--royal-blue);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 15px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--royal-blue);
            box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, var(--royal-blue), var(--orange));
            color: white;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(29, 78, 216, 0.4);
        }
        
        /* Reviews Section */
        .reviews {
            background: var(--white);
        }
        
        .reviews-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .review-card {
            background: #f8fafc;
            padding: 40px 30px;
            border-radius: 24px;
            position: relative;
            transition: all 0.3s;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .review-stars {
            color: var(--orange);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .review-text {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.7;
            font-style: italic;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--royal-blue), var(--orange));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .reviewer-info h4 {
            color: var(--royal-blue);
            margin-bottom: 3px;
        }
        
        .reviewer-info p {
            color: #888;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq {
            background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background: #f8fafc;
        }
        
        .faq-question h3 {
            color: var(--royal-blue);
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .faq-icon {
            color: var(--orange);
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 30px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 25px;
        }
        
        .faq-answer p {
            color: #666;
            line-height: 1.7;
        }
        
        /* Contact Section */
        .contact {
            background: var(--white);
        }
        
        .contact-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            color: var(--royal-blue);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--royal-blue), var(--orange));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-item h4 {
            color: var(--royal-blue);
            margin-bottom: 5px;
        }
        
        .contact-item p {
            color: #666;
            line-height: 1.6;
        }
        
        .contact-form {
            background: #f8fafc;
            padding: 50px;
            border-radius: 30px;
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, var(--royal-blue), var(--orange));
            padding: 80px 5%;
            text-align: center;
            color: white;
        }
        
        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .newsletter p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .newsletter-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            text-align: left;
        }
        
        .newsletter-form .form-group input {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 12px;
            font-family: 'Nunito', sans-serif;
        }
        
        .newsletter-form .checkbox-group {
            grid-column: 1 / -1;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-top: 10px;
        }
        
        .newsletter-form .checkbox-group input {
            margin-top: 5px;
            width: 20px;
            height: 20px;
            accent-color: var(--orange);
        }
        
        .newsletter-form .checkbox-group label {
            font-size: 0.9rem;
            opacity: 0.9;
            cursor: pointer;
        }
        
        .newsletter-btn {
            grid-column: 1 / -1;
            background: white;
            color: var(--royal-blue);
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .success-message {
            display: none;
            background: white;
            color: var(--royal-blue);
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background: #0f172a;
            color: white;
            padding: 80px 5% 30px;
        }
        
        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .footer-brand h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-brand h3 i {
            color: var(--orange);
        }
        
        .footer-brand p {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background: var(--orange);
            transform: translateY(-3px);
        }
        
        .footer-column h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--orange);
        }
        
        .footer-newsletter h4 {
            margin-bottom: 20px;
        }
        
        .footer-newsletter p {
            color: #94a3b8;
            margin-bottom: 20px;
        }
        
        .footer-newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .footer-newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-family: 'Nunito', sans-serif;
        }
        
        .footer-newsletter-form input::placeholder {
            color: #94a3b8;
        }
        
        .footer-newsletter-form button {
            padding: 12px 25px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
        }
        
        .footer-newsletter-form button:hover {
            background: #ea580c;
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            color: #94a3b8;
        }
        
        .footer-legal {
            display: flex;
            gap: 30px;
        }
        
        .footer-legal a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-legal a:hover {
            color: var(--orange);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .about-grid,
            .finance-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .process-timeline::before {
                left: 30px;
            }
            
            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 80px;
            }
            
            .process-content {
                width: 100%;
            }
            
            .process-number {
                left: 30px;
                transform: translateX(-50%);
            }
            
            .booking-form,
            .newsletter-form {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        
        /* Mobile Menu Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: white;
            z-index: 1001;
            padding: 100px 40px;
            transition: left 0.3s ease;
            box-shadow: 5px 0 30px rgba(0,0,0,0.2);
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-links {
            list-style: none;
        }
        
        .mobile-nav-links li {
            margin-bottom: 25px;
        }
        
        .mobile-nav-links a {
            text-decoration: none;
            color: var(--royal-blue);
            font-size: 1.3rem;
            font-weight: 700;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--royal-blue);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
