
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background: #fff;
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(139, 21, 56, 0.1);
            z-index: 1000;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #8B1538, #B8336A);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: #8B1538;
            opacity: 0.03;
            animation: float 10s ease-in-out infinite;
        }

        .particle.ninja-star {
            width: 6px;
            height: 6px;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Hero Section */
        .hero {
            padding: 100px 0 0 0;
            min-height: 100vh;
            background: linear-gradient(135deg, #FEFCFC 0%, #F5E6E8 50%, #E8B4B8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 61,35 98,35 68,57 79,91 50,70 21,91 32,57 2,35 39,35" fill="%238B1538" opacity="0.03"/></svg>') repeat;
            background-size: 120px 120px;
            animation: backgroundMove 30s linear infinite;
        }

        @keyframes backgroundMove {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(120px) translateY(120px); }
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            z-index: 2;
            position: relative;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #8B1538, #B8336A);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: slideInFromTop 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #8B1538, #B8336A);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInFromTop 1s ease-out 0.2s both;
        }

        .hero .subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            color: #666;
            animation: slideInFromBottom 1s ease-out 0.4s both;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            color: #555;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .quick-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            animation: slideInFromBottom 1s ease-out 0.8s both;
        }

        .stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 25px rgba(139, 21, 56, 0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #8B1538;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.3rem;
        }

        /* Main Content */
        .main-content {
            padding: 5rem 0;
            background: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #8B1538, #B8336A);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
        }

        /* Booking Options */
        .booking-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
        }

        .booking-card {
            background: linear-gradient(135deg, #FEFCFC 0%, #F8F6F7 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(139, 21, 56, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .booking-card.primary {
            border-color: #8B1538;
            background: linear-gradient(135deg, #FEFCFC 0%, #F5E6E8 100%);
        }

        .booking-card.urgent {
            border-color: #e74c3c;
            background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
        }

        .booking-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(139, 21, 56, 0.03), rgba(184, 51, 106, 0.03));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .booking-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 21, 56, 0.15);
        }

        .booking-card:hover::before {
            opacity: 1;
        }

        .booking-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .booking-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8B1538, #B8336A);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .booking-card.urgent .booking-icon {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .booking-info h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #8B1538;
            margin-bottom: 0.3rem;
        }

        .ninja-alias {
            font-size: 0.9rem;
            color: #B8336A;
            font-style: italic;
        }

        .booking-description {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .booking-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .booking-features li {
            padding: 0.5rem 0;
            color: #555;
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.95rem;
        }

        .booking-features li::before {
            content: '⭐';
            position: absolute;
            left: 0;
            color: #8B1538;
        }

        .booking-details {
            background: rgba(139, 21, 56, 0.05);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .detail-label {
            color: #666;
        }

        .detail-value {
            color: #8B1538;
            font-weight: 600;
        }

        .booking-cta {
            width: 100%;
            background: linear-gradient(135deg, #8B1538, #B8336A);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1rem;
        }

        .booking-card.urgent .booking-cta {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .booking-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
            color: white;
            text-decoration: none;
        }

        /* Quiz Section */
        .quiz-section {
            background: linear-gradient(135deg, #F8F6F7 0%, #FEFCFC 100%);
            padding: 5rem 0;
        }

        .quiz-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(139, 21, 56, 0.1);
            overflow: hidden;
        }

        .quiz-header {
            background: linear-gradient(135deg, #8B1538, #B8336A);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .quiz-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .quiz-subtitle {
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .quiz-intro {
            font-size: 0.95rem;
            opacity: 0.8;
        }

        .quiz-progress {
            background: rgba(255, 255, 255, 0.2);
            height: 6px;
            border-radius: 3px;
            margin-top: 1rem;
            overflow: hidden;
        }

        .quiz-progress-bar {
            height: 100%;
            background: white;
            border-radius: 3px;
            width: 0%;
            transition: width 0.5s ease;
        }

        .quiz-step {
            padding: 2.5rem;
            display: none;
        }

        .quiz-step.active {
            display: block;
            animation: slideInFromRight 0.5s ease-out;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #8B1538;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8B1538;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .radio-group {
            display: grid;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .radio-option {
            position: relative;
        }

        .radio-option input[type="radio"] {
            opacity: 0;
            position: absolute;
        }

        .radio-option label {
            display: block;
            padding: 1rem;
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .radio-option input[type="radio"]:checked + label {
            border-color: #8B1538;
            background: rgba(139, 21, 56, 0.05);
        }

        .radio-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .radio-description {
            font-size: 0.85rem;
            color: #666;
        }

        .checkbox-group {
            display: grid;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }

        .checkbox-option {
            position: relative;
        }

        .checkbox-option input[type="checkbox"] {
            opacity: 0;
            position: absolute;
        }

        .checkbox-option label {
            display: block;
            padding: 0.8rem;
            border: 2px solid #f0f0f0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .checkbox-option input[type="checkbox"]:checked + label {
            border-color: #8B1538;
            background: rgba(139, 21, 56, 0.05);
            color: #8B1538;
        }

        .budget-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .budget-option {
            position: relative;
        }

        .budget-option input[type="radio"] {
            opacity: 0;
            position: absolute;
        }

        .budget-option label {
            display: block;
            padding: 1.2rem;
            border: 2px solid #f0f0f0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            height: 100%;
        }

        .budget-option input[type="radio"]:checked + label {
            border-color: #8B1538;
            background: rgba(139, 21, 56, 0.05);
        }

        .budget-amount {
            font-size: 1.1rem;
            font-weight: 700;
            color: #8B1538;
            margin-bottom: 0.3rem;
        }

        .budget-description {
            font-size: 0.8rem;
            color: #666;
        }

        .quiz-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #f0f0f0;
        }

        .quiz-btn {
            background: linear-gradient(135deg, #8B1538, #B8336A);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .quiz-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
        }

        .quiz-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .quiz-btn.secondary {
            background: #f0f0f0;
            color: #666;
        }

        .quiz-btn.secondary:hover {
            background: #e0e0e0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .step-indicator {
            font-size: 0.9rem;
            color: #666;
        }

        /* Quiz Completion */
        .quiz-completion {
            padding: 3rem;
            text-align: center;
            display: none;
        }

        .quiz-completion.active {
            display: block;
            animation: fadeIn 0.8s ease-out;
        }

        .completion-icon {
            font-size: 4rem;
            color: #27ae60;
            margin-bottom: 1rem;
        }

        .completion-title {
            font-size: 2rem;
            font-weight: 700;
            color: #8B1538;
            margin-bottom: 1rem;
        }

        .completion-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .completion-benefits {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .completion-benefits li {
            padding: 0.5rem 0;
            color: #555;
            position: relative;
            padding-left: 2rem;
        }

        .completion-benefits li::before {
            content: '✅';
            position: absolute;
            left: 0;
        }

        .booking-redirect {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .booking-redirect:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(39, 174, 96, 0.3);
            color: white;
            text-decoration: none;
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background: #fff;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .faq-item {
            background: linear-gradient(135deg, #FEFCFC 0%, #F8F6F7 100%);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(139, 21, 56, 0.08);
            transition: transform 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-3px);
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 700;
            color: #8B1538;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .faq-answer {
            color: #666;
            line-height: 1.6;
        }

        /* Trust Indicators */
        .trust-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #8B1538 0%, #B8336A 100%);
            color: white;
            text-align: center;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .trust-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .trust-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #E8B4B8;
        }

        .trust-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .trust-desc {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Animations */
        @keyframes slideInFromTop {
            0% {
                transform: translateY(-50px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInFromBottom {
            0% {
                transform: translateY(50px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInFromRight {
            0% {
                transform: translateX(30px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .quick-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .booking-options {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .budget-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content,
            .container {
                padding: 1rem;
            }
            
            .booking-card,
            .quiz-step {
                padding: 1.5rem;
            }
        }

        /* Loading States */
        .loading {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .loading::after {
            content: '';
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            display: inline-block;
            margin-left: 10px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Validation Styles */
        .form-group.error input,
        .form-group.error select,
        .form-group.error textarea {
            border-color: #e74c3c;
            background: rgba(231, 76, 60, 0.05);
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 0.3rem;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }
