
.flight-page-light {
    background: #f8fafc;
    color: #0f172a;
    padding: 60px 20px 100px;
    min-height: calc(100vh - 70px);
}

.flight-wizard-header {
    text-align: center;
    margin-bottom: 50px;
}

.flight-wizard-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #0f172a;
    margin: 0 0 15px 0;
    font-weight: 800;
}

.flight-wizard-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}


.wizard-progress-light {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
}

.wizard-progress-light::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.wizard-progress-bar-fill {
    position: absolute;
    top: 24px;
    left: 0;
    height: 2px;
    background: var(--primary);
    z-index: 1;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step-light {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-weight: 600;
    width: 25%;
    transition: color 0.3s;
}

.wizard-step-light.active {
    color: var(--primary);
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: #94a3b8;
}

.wizard-step-light.active .step-circle {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(15, 23, 42, 0.2);
}

.step-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.seo-intro-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}


.step1-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}
.step1-types {
    display: flex;
    flex-direction: column;
}
.step1-calendar {
    width: 100%;
}


.wizard-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.wizard-card-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.wizard-card-light:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.wizard-card-light.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(100%);
    pointer-events: none;
}

.wizard-icon-light {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    transition: transform 0.4s ease, background 0.4s, color 0.4s;
}

.wizard-card-light:hover .wizard-icon-light {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
}

.wizard-card-light h4 {
    font-size: 1.3rem;
    color: #0f172a;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.wizard-card-light p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.wizard-price-tag {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}


.generic-calendar-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 25px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.gen-cal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 10px;
    border-radius: 12px;
}

.gen-cal-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gen-cal-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.gen-cal-label {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.1rem;
    text-transform: capitalize;
}

.gen-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.gen-cal-day {
    padding: 12px 5px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.gen-cal-day:hover:not(.disabled) {
    background: #f8fafc;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.gen-cal-day.available {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.gen-cal-day.available:hover:not(.disabled) {
    background-color: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.gen-cal-day.full {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
    cursor: not-allowed;
}

.gen-cal-day.active {
    background: var(--primary) !important;
    color: var(--accent) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.gen-cal-day.disabled {
    background: #f8fafc;
    color: #cbd5e1;
    border-color: #f1f5f9;
    cursor: not-allowed;
}


.flight-summary-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: start;
    text-align: left;
}

.flight-summary-info {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.flight-summary-media {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #f1f5f9;
}

.flight-summary-media img, .flight-summary-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flight-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #0f172a;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-weight: 800;
}

.flight-summary-desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.summary-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.summary-details-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 1rem;
}

.summary-details-list li strong {
    color: #0f172a;
}

.flight-summary-action {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.time-slot-label {
    display: block;
    padding: 12px 5px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot-label:hover {
    background: #f8fafc;
    border-color: var(--primary);
}

.time-slot-input:checked + .time-slot-label {
    background: var(--primary);
    border-color: var(--primary);
}

.time-slot-time {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.time-slot-input:checked + .time-slot-label .time-slot-time {
    color: var(--accent);
}

.time-slot-seats {
    display: block;
    font-size: 0.75rem;
    color: #10b981;
    margin-top: 4px;
}

.flight-no-slots {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #ef4444;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
}


.flight-booking-form .form-group-pro label {
    color: #475569;
}

.flight-input {
    width: 100%;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
    transition: all 0.2s;
}

.flight-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1) !important;
    outline: none;
}


.flight-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--primary);
}

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

.flight-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.btn-back-step {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.btn-back-step:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}


.cal-month-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}
.cal-month-loader .spinner {
    width: 45px; 
    height: 45px;
    border: 4px solid #e2e8f0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}


.prefix-maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 20px;
}


.prefix-map-card {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.prefix-map-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.prefix-map-container {
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.prefix-map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    pointer-events: none;
}

.prefix-info h4 {
    color: #0f172a;
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.prefix-info p {
    color: #475569;
    font-size: 0.9rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.btn-select-prefix {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    width: 100%;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-select-prefix:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.02);
}

.prefix-map-container .leaflet-control-container {
    display: none !important;
}


.btn-type-select {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.btn-type-select:hover {
    background: #f8fafc;
    border-color: var(--primary);
    color: #0f172a;
}
.btn-type-select.active {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}


.flight-prep-content ul {
    padding-left: 20px;
    margin: 0;
}
.flight-prep-content li {
    margin-bottom: 8px;
}


.fw-route-img-container {
    position: relative;
    display: block;
    overflow: hidden;
}

.fw-route-code-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
    pointer-events: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fw-route-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 10px;
    display: block;
}

.fw-route-price span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 992px) {
    .flight-summary-layout {
        grid-template-columns: 1fr;
    }
    .step1-grid {
        grid-template-columns: 1fr;
    }
    .step1-types {
        order: -1;
    }
}

@media (max-width: 768px) {
    .flight-page-light { padding: 20px 10px 80px; }
    .flight-wizard-header { margin-bottom: 30px; }
    .flight-wizard-header h1 { font-size: 1.8rem; margin-bottom: 10px; }
    .flight-wizard-header p { font-size: 0.95rem; }
    
    .wizard-step-light .step-label { display: none; }
    .wizard-progress-light { margin-bottom: 25px; }
    .step-circle { width: 36px; height: 36px; font-size: 1rem; }
    .wizard-progress-light::before { top: 17px; }
    .wizard-progress-bar-fill { top: 17px; }
    
    .seo-intro-section { padding: 30px 20px; }
    .seo-intro-section h2 { font-size: 1.6rem; margin-bottom: 15px; }
    .seo-intro-section p { font-size: 0.95rem; margin-bottom: 20px; }
    
    .step1-grid { gap: 20px; }
    .btn-type-select { padding: 12px 15px; font-size: 0.95rem; }
    .generic-calendar-light { padding: 15px; }
    .gen-cal-day { padding: 8px 4px; font-size: 0.85rem; }
    
    .prefix-map-card { height: 250px; }
    .prefix-map-overlay { padding: 15px; }
    .prefix-info h4 { font-size: 1.2rem; }
    .prefix-info p { font-size: 0.85rem; }
    
    .wizard-card-light { padding: 20px 15px; }
    .wizard-card-light h4 { font-size: 1.1rem; }
    
    .flight-summary-layout { gap: 20px; }
    .flight-summary-info, .flight-summary-action { padding: 20px; }
    .flight-summary-media { height: 200px; margin-bottom: 15px; }
    .flight-summary-title { font-size: 1.5rem; }
    .flight-summary-desc { font-size: 0.95rem; }
    
    .time-slot-grid { gap: 8px; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
    .time-slot-label { padding: 8px 4px; }
    .time-slot-time { font-size: 0.95rem; }
    .time-slot-seats { font-size: 0.65rem; }
}