 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-navy: #1e3a8a;
            --primary-blue: #3b82f6;
            --accent-blue: #60a5fa;
            --light-blue: #dbeafe;
            --success-green: #10b981;
            --warning-amber: #f59e0b;
            --error-red: #ef4444;
            --neutral-50: #f8fafc;
            --neutral-100: #f1f5f9;
            --neutral-200: #e2e8f0;
            --neutral-300: #cbd5e1;
            --neutral-400: #94a3b8;
            --neutral-500: #64748b;
            --neutral-600: #475569;
            --neutral-700: #334155;
            --neutral-800: #1e293b;
            --neutral-900: #0f172a;
            --white: #ffffff;
            
            /* Modern Gradients */
            --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
            --gradient-secondary: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #dbeafe 100%);
            --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            --gradient-success: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            --gradient-error: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            
            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Outfit', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--neutral-700);
            background: var(--white);
            overflow-x: hidden;
        }
        
        .font-display {
            font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
        }
        
        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .section {
            padding: 3.5rem 0;
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 2.5rem 0;
            }
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
        }
        
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-navy);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.02);
        }
        
        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--shadow-md);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--neutral-600);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-blue);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background: var(--gradient-primary);
            color: white;
            padding: 0.625rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-md);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
            color: var(--neutral-600);
            font-size: 1.5rem;
        }
        
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid var(--neutral-200);
            box-shadow: var(--shadow-lg);
            z-index: 999;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding: 1rem;
            gap: 0.75rem;
        }
        
        .mobile-nav-links a {
            color: var(--neutral-600);
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-links a:hover {
            background: var(--neutral-100);
            color: var(--primary-blue);
        }
        
        @media (max-width: 768px) {
            .nav-links, .cta-button {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        
        /* Main Content */
        .main {
            margin-top: 70px;
            min-height: calc(100vh - 70px);
        }
        
        /* Form Section */
        .form-section {
            background: var(--gradient-hero);
            padding: 4rem 0;
            min-height: calc(100vh - 140px);
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .form-header h1 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--neutral-900);
        }
        
        .form-header p {
            font-size: 1.125rem;
            color: var(--neutral-600);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .quote-form-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--neutral-200);
            position: relative;
            overflow: hidden;
        }
        
        .quote-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            font-weight: 600;
            color: var(--neutral-700);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        
        .form-group input,
        .form-group select {
            padding: 0.875rem 1rem;
            border: 2px solid var(--neutral-200);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            color: var(--neutral-700);
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .form-group input::placeholder {
            color: var(--neutral-400);
        }
        
        .submit-btn {
            width: 100%;
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            margin-top: 1rem;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        .form-note {
            background: var(--light-blue);
            border: 1px solid var(--accent-blue);
            border-radius: 12px;
            padding: 1.25rem;
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .form-note p {
            color: var(--primary-navy);
            font-size: 0.9rem;
            margin: 0;
            font-weight: 500;
        }
        
        /* Message Styles */
        .messages {
            position: fixed;
            top: 90px;
            right: 20px;
            z-index: 1001;
            max-width: 400px;
            width: 100%;
        }
        
        .message {
            padding: 1rem 1.25rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transform: translateX(100%);
            animation: slideIn 0.3s ease forwards;
            border-left: 4px solid;
        }
        
        @keyframes slideIn {
            to {
                transform: translateX(0);
            }
        }
        
        .message.success {
            background: var(--gradient-success);
            border-left-color: var(--success-green);
            color: #166534;
        }
        
        .message.error {
            background: var(--gradient-error);
            border-left-color: var(--error-red);
            color: #991b1b;
        }
        
        .message-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        
        .message-text {
            font-weight: 500;
        }
        
        .close-message {
            margin-left: auto;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.25rem;
            color: inherit;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .close-message:hover {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .quote-form-card {
                padding: 1.5rem;
                margin: 0 0.5rem;
            }
            
            .messages {
                top: 80px;
                right: 10px;
                left: 10px;
                max-width: none;
            }
        }
        
        /* Footer */
        .footer {
            background: var(--neutral-900);
            color: var(--neutral-300);
            padding: 2.5rem 0 1.5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-brand span {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--accent-blue);
        }
        
        .footer-section h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            color: var(--neutral-400);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }
        
        .footer-section ul li a:hover {
            color: var(--accent-blue);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--neutral-700);
            color: var(--neutral-500);
            font-size: 0.875rem;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }