/* ============================================
   NOVA QUOTE WIZARD STYLES
   Premium Glassmorphism Design
   With Dark/Light Mode Support
   ============================================ */

/* ============================================
   CSS VARIABLES (Dark Mode Default)
   ============================================ */
:root {
    /* Backgrounds */
    --qw-bg-primary: #0f0f23;
    --qw-bg-secondary: #151535;
    --qw-bg-card: rgba(25, 25, 55, 0.85);
    --qw-bg-card-hover: rgba(35, 35, 70, 0.9);
    --qw-bg-input: rgba(255, 255, 255, 0.06);

    /* Hero Gradient */
    --qw-hero-gradient: linear-gradient(135deg, #0a0a1a 0%, #151535 40%, #1a1a40 70%, #0d0d25 100%);
    --qw-hero-fade: linear-gradient(to top, #0f0f23, transparent);

    /* Text Colors */
    --qw-text-primary: #ffffff;
    --qw-text-secondary: rgba(255, 255, 255, 0.75);
    --qw-text-muted: rgba(255, 255, 255, 0.5);
    --qw-text-subtle: rgba(255, 255, 255, 0.4);

    /* Accent Colors */
    --qw-accent-primary: #667eea;
    --qw-accent-secondary: #764ba2;
    --qw-accent-cyan: #00d4ff;
    --qw-accent-green: #10b981;
    --qw-accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --qw-accent-gradient-light: linear-gradient(135deg, #667eea 0%, #00d4ff 100%);

    /* Borders & Shadows */
    --qw-border-color: rgba(255, 255, 255, 0.1);
    --qw-border-hover: rgba(102, 126, 234, 0.4);
    --qw-border-active: #667eea;
    --qw-glow-color: rgba(102, 126, 234, 0.5);
    --qw-shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);
    --qw-shadow-hover: 0 30px 80px rgba(102, 126, 234, 0.25);

    /* Glassmorphism */
    --qw-glass-blur: blur(20px);
    --qw-glass-border: 1px solid rgba(255, 255, 255, 0.12);

    /* Badge Colors */
    --qw-badge-urgent-bg: rgba(239, 68, 68, 0.2);
    --qw-badge-urgent-color: #ef4444;
    --qw-badge-standard-bg: rgba(16, 185, 129, 0.2);
    --qw-badge-standard-color: #10b981;
    --qw-badge-flexible-bg: rgba(59, 130, 246, 0.2);
    --qw-badge-flexible-color: #3b82f6;

    /* Floating Orbs */
    --qw-orb-opacity: 0.5;
}

/* ============================================
   LIGHT MODE OVERRIDES
   ============================================ */
@media (prefers-color-scheme: light) {
    :root {
        /* Backgrounds */
        --qw-bg-primary: #f8fafc;
        --qw-bg-secondary: #f1f5f9;
        --qw-bg-card: rgba(255, 255, 255, 0.95);
        --qw-bg-card-hover: rgba(255, 255, 255, 1);
        --qw-bg-input: rgba(0, 0, 0, 0.04);

        /* Hero Gradient */
        --qw-hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
        --qw-hero-fade: linear-gradient(to top, #f8fafc, transparent);

        /* Text Colors */
        --qw-text-primary: #1e293b;
        --qw-text-secondary: #475569;
        --qw-text-muted: #64748b;
        --qw-text-subtle: #94a3b8;

        /* Borders & Shadows */
        --qw-border-color: rgba(0, 0, 0, 0.08);
        --qw-border-hover: rgba(102, 126, 234, 0.5);
        --qw-glow-color: rgba(102, 126, 234, 0.3);
        --qw-shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
        --qw-shadow-hover: 0 30px 80px rgba(102, 126, 234, 0.15);

        /* Glassmorphism */
        --qw-glass-border: 1px solid rgba(0, 0, 0, 0.06);

        /* Badge Colors */
        --qw-badge-urgent-bg: rgba(239, 68, 68, 0.12);
        --qw-badge-standard-bg: rgba(16, 185, 129, 0.12);
        --qw-badge-flexible-bg: rgba(59, 130, 246, 0.12);

        /* Floating Orbs */
        --qw-orb-opacity: 0.3;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.quote-hero-section {
    position: relative;
    padding: 120px 0 60px;
    background: var(--qw-hero-gradient);
    overflow: hidden;
}

.quote-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--qw-hero-fade);
    pointer-events: none;
    z-index: 1;
}

.quote-hero-section .hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.quote-hero-section .floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: var(--qw-orb-opacity);
    animation: quoteFloatOrb 12s ease-in-out infinite;
}

.quote-hero-section .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    right: 10%;
}

.quote-hero-section .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00d4ff, #0077aa);
    bottom: -100px;
    left: 5%;
    animation-delay: 4s;
}

.quote-hero-section .orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #059669);
    top: 50%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes quoteFloatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.quote-hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.quote-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(102, 126, 234, 0.18);
    border: 1px solid rgba(102, 126, 234, 0.35);
    border-radius: 50px;
    color: #667eea;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
    backdrop-filter: blur(15px);
}

.quote-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.15;
    letter-spacing: -2px;
}

.quote-hero-title .gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-hero-desc {
    font-size: 20px;
    color: var(--qw-text-secondary);
    margin: 0 auto;
    line-height: 1.7;
    max-width: 700px;
}

/* ============================================
   PROGRESS STEPS
   ============================================ */
.quote-progress-section {
    padding: 40px 0;
    background: #0f0f23 !important;
    background-color: #0f0f23 !important;
}

.quote-progress-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.quote-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 30, 60, 0.9) !important;
    border: 2px solid rgba(102, 126, 234, 0.3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    color: rgba(180, 180, 200, 0.8) !important;
    transition: all 0.3s ease;
}

.step-check {
    width: 24px;
    height: 24px;
    stroke: #fff;
    display: none;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

.progress-step.active .step-number {
    color: #fff;
}

.progress-step.completed .step-circle {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: transparent;
}

.progress-step.completed .step-number {
    display: none;
}

.progress-step.completed .step-check {
    display: block;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(180, 180, 200, 0.7) !important;
    transition: color 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: #fff;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
    margin-bottom: 30px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #667eea, #00d4ff);
    transition: width 0.5s ease;
}

.progress-line.filled::after {
    width: 100%;
}

/* ============================================
   WIZARD CONTENT
   ============================================ */
.quote-wizard-section {
    padding: 60px 0 100px;
    background: #0f0f23 !important;
    background-color: #0f0f23 !important;
}

.quote-wizard-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.wizard-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 50px;
}

.step-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--qw-text-primary);
    margin: 0 0 12px 0;
}

.step-header p {
    font-size: 18px;
    color: var(--qw-text-muted);
    margin: 0;
}

/* ============================================
   PROJECT TYPE CARDS (Step 1)
   ============================================ */
.project-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.project-types-grid.expanded {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Popular & Premium Badges */
.popular-badge,
.premium-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.popular-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.premium-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.card-icon.popular {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2)) !important;
    border-color: rgba(245, 158, 11, 0.4) !important;
}

.card-icon.popular svg {
    stroke: #f59e0b !important;
}

.card-icon.premium {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2)) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
}

.card-icon.premium svg {
    stroke: #a855f7 !important;
}

.project-type-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.project-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.project-type-card .card-content {
    background: var(--qw-bg-card);
    backdrop-filter: var(--qw-glass-blur);
    border: 2px solid var(--qw-border-color);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--qw-shadow-card);
}

.project-type-card .card-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(0, 212, 255, 0.2));
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-type-card:hover .card-content {
    transform: translateY(-8px);
    border-color: var(--qw-border-hover);
    box-shadow: var(--qw-shadow-hover);
}

.project-type-card:hover .card-glow {
    opacity: 1;
}

.project-type-card input:checked+.card-content {
    border-color: #667eea;
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
    transform: translateY(-8px);
}

.project-type-card input:checked~.card-glow {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.project-type-card:hover .card-icon,
.project-type-card input:checked+.card-content .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(0, 212, 255, 0.3));
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: #00d4ff;
}

.project-type-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--qw-text-primary);
    margin: 0 0 12px 0;
}

.project-type-card p {
    font-size: 15px;
    color: var(--qw-text-muted);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.price-range {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: #10b981;
    font-size: 15px;
    font-weight: 700;
}

/* ============================================
   FEATURES GRID (Step 2)
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.feature-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.feature-content {
    background: var(--qw-bg-card);
    backdrop-filter: var(--qw-glass-blur);
    border: 2px solid var(--qw-border-color);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--qw-shadow-card);
}

.feature-card:hover .feature-content {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

.feature-card input:checked+.feature-content {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(0, 212, 255, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: #00d4ff;
}

.feature-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--qw-text-primary);
    margin: 0 0 4px 0;
}

.feature-info p {
    font-size: 14px;
    color: var(--qw-text-muted);
    margin: 0;
}

.feature-price {
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
    white-space: nowrap;
}

.feature-toggle {
    width: 50px;
    height: 28px;
    position: relative;
}

.toggle-track {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card input:checked+.feature-content .toggle-track {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-card input:checked+.feature-content .toggle-track::after {
    left: 25px;
    background: #fff;
}

/* ============================================
   BUDGET SECTION (Step 3)
   ============================================ */
.budget-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.budget-card,
.timeline-card {
    background: rgba(25, 25, 55, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
}

.budget-card h3,
.timeline-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px 0;
    text-align: center;
}

.budget-slider-container {
    padding: 0 10px;
    margin-bottom: 30px;
}

.budget-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #667eea, #00d4ff);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.budget-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: none;
}

.budget-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.budget-labels span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.budget-display {
    text-align: center;
}

.budget-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline Options */
.timeline-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-option {
    cursor: pointer;
    display: block;
}

.timeline-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.timeline-option .option-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.timeline-option:hover .option-content {
    border-color: rgba(102, 126, 234, 0.3);
}

.timeline-option input:checked+.option-content {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.option-icon {
    font-size: 28px;
}

.option-info {
    flex: 1;
}

.option-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px 0;
}

.option-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.option-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.option-badge.urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.option-badge.standard {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.option-badge.flexible {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

/* ============================================
   CONTACT & SUMMARY (Step 4)
   ============================================ */
.contact-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-form-card {
    background: rgba(25, 25, 55, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 100px;
}

/* Summary Card */
.summary-card {
    background: rgba(25, 25, 55, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
}

.summary-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.summary-value {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.summary-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.summary-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

.summary-features li.no-features {
    color: rgba(255, 255, 255, 0.4);
}

.summary-features li.no-features::before {
    display: none;
}

.summary-total {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.total-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.total-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

/* GDPR */
.gdpr-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 14px;
    margin-bottom: 30px;
}

.gdpr-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #667eea;
    cursor: pointer;
}

.gdpr-wrapper label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    cursor: pointer;
}

.gdpr-wrapper label a {
    color: #00d4ff;
    text-decoration: none;
}

/* ============================================
   STEP ACTIONS & BUTTONS
   ============================================ */
.step-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-wizard {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border: none;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: inherit;
}

.btn-wizard svg {
    width: 20px;
    height: 20px;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.quote-success {
    text-align: center;
    padding: 80px 40px;
}

.success-content {
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.success-icon svg {
    width: 60px;
    height: 60px;
    stroke: #10b981;
}

.quote-success h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.quote-success p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px 0;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: #fff;
}

/* ============================================
   PHONE INPUT STYLING
   ============================================ */
.contact-form-card .iti {
    width: 100%;
}

.contact-form-card .iti__flag-container {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px 0 0 12px;
}

.contact-form-card .iti__selected-dial-code {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .project-types-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .budget-section {
        grid-template-columns: 1fr;
    }

    .contact-summary-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .quote-hero-section {
        padding: 80px 0 40px;
    }

    .quote-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .quote-hero-desc {
        font-size: 17px;
    }

    .quote-progress {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .progress-line {
        display: none;
    }

    .step-label {
        display: none;
    }

    .step-header h2 {
        font-size: 28px;
    }

    .step-actions {
        flex-direction: column;
    }

    .btn-wizard {
        width: 100%;
        justify-content: center;
    }

    .budget-value,
    .total-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .quote-hero-section {
        padding: 60px 0 30px;
    }

    .quote-hero-badge {
        padding: 10px 18px;
        font-size: 12px;
    }

    .quote-hero-title {
        font-size: 28px;
    }

    .project-type-card .card-content {
        padding: 30px 20px;
    }

    .feature-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .feature-toggle {
        order: -1;
    }

    .feature-price {
        margin-left: auto;
    }

    .contact-form-card,
    .summary-card {
        padding: 24px;
    }
}