/*
Theme Name: FareSeeker Theme
Theme URI: https://fareseeker.ca
Author: FareSeeker
Author URI: https://fareseeker.ca
Description: A stunning, modern dark theme with vibrant gradients and glassmorphism effects for displaying flight deals.
Version: 2.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fareseeker-theme
Tags: dark-mode, one-column, custom-menu, custom-logo, featured-images, translation-ready
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ========================================
   CSS Variables - Dark Luxury Theme
======================================== */
:root {
    /* Primary Gradient Colors */
    --fs-gradient-start: #7c3aed;
    --fs-gradient-mid: #db2777;
    --fs-gradient-end: #f59e0b;
    
    /* Accent Colors */
    --fs-accent-purple: #a855f7;
    --fs-accent-pink: #ec4899;
    --fs-accent-orange: #f97316;
    --fs-accent-cyan: #06b6d4;
    --fs-accent-emerald: #10b981;
    
    /* Success/Deal Colors */
    --fs-deal-exceptional: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --fs-deal-great: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --fs-deal-good: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --fs-deal-fair: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    
    /* Dark Theme Base */
    --fs-bg-dark: #0f0f1a;
    --fs-bg-card: rgba(255, 255, 255, 0.03);
    --fs-bg-glass: rgba(255, 255, 255, 0.05);
    --fs-border-glass: rgba(255, 255, 255, 0.1);
    
    /* Text Colors */
    --fs-text-primary: #ffffff;
    --fs-text-secondary: rgba(255, 255, 255, 0.7);
    --fs-text-muted: rgba(255, 255, 255, 0.5);
    
    /* Shadows & Effects */
    --fs-glow-purple: 0 0 60px rgba(168, 85, 247, 0.4);
    --fs-glow-pink: 0 0 60px rgba(236, 72, 153, 0.4);
    --fs-shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --fs-shadow-hover: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --fs-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fs-border-radius: 20px;
    --fs-border-radius-sm: 12px;
    --fs-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--fs-font-family);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fs-text-primary);
    background: var(--fs-bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--fs-accent-cyan);
    text-decoration: none;
    transition: var(--fs-transition);
}

a:hover {
    color: var(--fs-accent-pink);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--fs-text-primary);
    line-height: 1.1;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ========================================
   Header - Glassmorphism Navigation
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--fs-border-glass);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.site-logo-glow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.site-logo-glow::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(236, 72, 153, 0.25), rgba(249, 115, 22, 0.2));
    filter: blur(8px);
    opacity: 0.7;
    transition: var(--fs-transition);
    z-index: -1;
}

.site-logo-link:hover .site-logo-glow::before {
    opacity: 1;
    filter: blur(12px);
    inset: -6px;
}

.site-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.4));
    transition: var(--fs-transition);
    border-radius: 10px;
}

.site-logo-link:hover .site-logo-img {
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.7));
    transform: scale(1.06);
}

.site-title-text {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink), var(--fs-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.site-title a {
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink), var(--fs-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: var(--fs-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--fs-accent-purple), var(--fs-accent-pink));
    transition: var(--fs-transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--fs-text-primary);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--fs-border-glass);
    border-radius: 8px;
    background: transparent;
    color: var(--fs-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--fs-transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--fs-bg-glass);
    color: var(--fs-text-primary);
    border-color: var(--fs-accent-purple);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--fs-text-primary);
    transition: var(--fs-transition);
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; z-index: 1001; }
    .language-switcher { order: -1; }
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(15, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        display: none;
        border-bottom: 1px solid var(--fs-border-glass);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    .main-navigation.active { display: block; }
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   Hero Section - Immersive Experience
======================================== */
.fs-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.fs-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.fs-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(168, 85, 247, 0.1) 60deg, 
            transparent 120deg,
            rgba(236, 72, 153, 0.1) 180deg,
            transparent 240deg,
            rgba(6, 182, 212, 0.1) 300deg,
            transparent 360deg);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.fs-hero-content {
    max-width: 900px;
    z-index: 1;
}

.fs-hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.fs-hero-highlight {
    display: block;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink), var(--fs-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.fs-hero-subtitle {
    font-size: 1.25rem;
    color: var(--fs-text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Hero Search Form */
.fs-hero-search {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.fs-search-form {
    display: flex;
    background: var(--fs-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fs-border-glass);
    border-radius: 100px;
    padding: 0.5rem;
    gap: 0.5rem;
}

.fs-search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.5rem;
}

.fs-search-field label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fs-text-muted);
    margin-bottom: 0.25rem;
}

.fs-select,
.fs-input {
    background: transparent;
    border: none;
    color: var(--fs-text-primary);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.fs-select option {
    background: var(--fs-bg-dark);
}

.fs-search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border: none;
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--fs-transition);
}

.fs-search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}

@media (max-width: 768px) {
    .fs-search-form {
        flex-direction: column;
        border-radius: 24px;
        padding: 1rem;
    }
    .fs-search-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Stats */
.fs-hero-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.fs-stat-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--fs-bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--fs-border-glass);
    border-radius: 100px;
}

.fs-stat-icon {
    font-size: 1.25rem;
}

.fs-stat-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.fs-stat-label {
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

.fs-stat-highlight {
    background: linear-gradient(135deg, var(--fs-accent-orange), var(--fs-accent-pink));
    border: none;
}

.fs-stat-highlight .fs-stat-label,
.fs-stat-highlight .fs-stat-value {
    color: white;
}

.fs-price {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Scroll Indicator */
.fs-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--fs-text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ========================================
   Section Styles
======================================== */
.fs-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.fs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fs-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.fs-section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fs-section-title {
    margin-bottom: 0.5rem;
}

.fs-section-subtitle {
    color: var(--fs-text-secondary);
    font-size: 1.1rem;
}

/* ========================================
   Notice Banner
======================================== */
.fs-notice {
    background: linear-gradient(90deg, var(--fs-accent-emerald), var(--fs-accent-cyan));
    padding: 1rem 2rem;
}

.fs-notice-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: white;
}

/* ========================================
   Deal Cards - Glassmorphism Design
======================================== */
.fs-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.fs-deal-card {
    position: relative;
    background: var(--fs-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fs-border-glass);
    border-radius: var(--fs-border-radius);
    overflow: hidden;
    transition: var(--fs-transition);
}

.fs-deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fs-accent-purple), var(--fs-accent-pink), var(--fs-accent-orange));
    opacity: 0;
    transition: var(--fs-transition);
}

.fs-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fs-shadow-hover), var(--fs-glow-purple);
    border-color: rgba(168, 85, 247, 0.3);
}

.fs-deal-card:hover::before {
    opacity: 1;
}

/* Deal Badge */
.fs-deal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.fs-badge-exceptional {
    background: var(--fs-deal-exceptional);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.fs-badge-great {
    background: var(--fs-deal-great);
    color: white;
}

.fs-badge-good {
    background: var(--fs-deal-good);
    color: white;
}

.fs-badge-fair {
    background: var(--fs-deal-fair);
    color: white;
}

.fs-badge-standard {
    background: rgba(107, 114, 128, 0.5);
    color: white;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}

/* Deal Header */
.fs-deal-header {
    padding: 1.5rem 1.5rem 1rem;
}

.fs-deal-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.fs-deal-city {
    text-align: center;
}

.fs-city-code {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-text-primary), var(--fs-text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-city-name {
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

.fs-deal-arrow {
    color: var(--fs-accent-cyan);
}

.fs-deal-arrow svg {
    animation: arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

/* Deal Body */
.fs-deal-body {
    padding: 0 1.5rem 1rem;
}

.fs-deal-metrics {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.fs-metric {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

.fs-ppk-excellent { color: var(--fs-accent-emerald); }
.fs-ppk-great { color: var(--fs-accent-cyan); }
.fs-ppk-good { color: var(--fs-accent-purple); }

.fs-deal-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--fs-text-muted);
}

.fs-savings-badge {
    background: linear-gradient(135deg, var(--fs-accent-emerald), var(--fs-accent-cyan));
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    color: white;
}

/* Deal Footer */
.fs-deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--fs-border-glass);
    gap: 1rem;
}

.fs-deal-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.fs-price-label {
    font-size: 0.75rem;
    color: var(--fs-text-muted);
}

.fs-price-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-accent-orange), var(--fs-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-price-currency {
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

/* Score Indicator */
.fs-score-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fs-score-bar {
    width: 50px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.fs-score-fill {
    height: 100%;
    border-radius: 3px;
    transition: var(--fs-transition);
}

.fs-score-exceptional { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.fs-score-great { background: linear-gradient(90deg, #10b981, #06b6d4); }
.fs-score-good { background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.fs-score-fair { background: linear-gradient(90deg, #6b7280, #9ca3af); }
.fs-score-standard { background: linear-gradient(90deg, #4b5563, #6b7280); }

.fs-score-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fs-text-muted);
}

/* Deal Button */
.fs-deal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--fs-transition);
}

.fs-deal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    color: white;
}

/* Loading & Empty States */
.fs-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
}

.fs-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--fs-border-glass);
    border-top-color: var(--fs-accent-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.fs-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
}

.fs-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

/* Section Footer */
.fs-section-footer {
    text-align: center;
    margin-top: 3rem;
}

.fs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--fs-transition);
}

.fs-btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.fs-btn-outline {
    border: 2px solid var(--fs-accent-purple);
    color: var(--fs-accent-purple);
    background: transparent;
}

.fs-btn-outline:hover {
    background: var(--fs-accent-purple);
    color: white;
}

/* ========================================
   Destinations Grid
======================================== */
.fs-destinations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .fs-destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .fs-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fs-destination-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--fs-border-radius);
    overflow: hidden;
    background: var(--fs-bg-glass);
    border: 1px solid var(--fs-border-glass);
    transition: var(--fs-transition);
}

.fs-destination-card:hover {
    transform: scale(1.05);
    box-shadow: var(--fs-glow-pink);
}

.fs-destination-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
}

.fs-destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    text-align: center;
}

.fs-destination-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.fs-destination-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.fs-destination-country {
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

/* ========================================
   How It Works Section
======================================== */
.fs-how-section {
    background: var(--fs-bg-glass);
    border-radius: var(--fs-border-radius);
    border: 1px solid var(--fs-border-glass);
    margin: 0 2rem;
}

.fs-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fs-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.fs-step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}

.fs-step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fs-step-title {
    margin-bottom: 0.5rem;
}

.fs-step-desc {
    color: var(--fs-text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   CTA Section
======================================== */
.fs-cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-top: 1px solid var(--fs-border-glass);
    border-bottom: 1px solid var(--fs-border-glass);
}

.fs-cta-title {
    margin-bottom: 0.5rem;
}

.fs-cta-subtitle {
    color: var(--fs-text-secondary);
    margin-bottom: 2rem;
}

.fs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.fs-btn-white {
    background: white;
    color: var(--fs-bg-dark);
}

.fs-btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
    color: var(--fs-bg-dark);
}

.fs-btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.fs-btn-outline-white:hover {
    background: white;
    color: var(--fs-bg-dark);
}

/* ========================================
   Footer
======================================== */
.site-footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--fs-border-glass);
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.5));
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--fs-text-muted);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--fs-text-secondary);
}

.footer-links span {
    color: var(--fs-border-glass);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

/* ========================================
   Plugin Styles Override (Deals Page)
======================================== */
.fareseeker-deals-container {
    padding: 2rem;
}

.fareseeker-roundtrip-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(90deg, var(--fs-accent-emerald), var(--fs-accent-cyan));
    border-radius: var(--fs-border-radius-sm);
    margin-bottom: 2rem;
    font-weight: 600;
}

.fareseeker-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--fs-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fs-border-glass);
    border-radius: var(--fs-border-radius-sm);
}

.fareseeker-filter-group {
    flex: 1;
    min-width: 200px;
}

.fareseeker-filter-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fs-text-muted);
    margin-bottom: 0.5rem;
}

.fareseeker-filter-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fs-border-glass);
    border-radius: 8px;
    color: var(--fs-text-primary);
    font-family: inherit;
    font-size: 0.95rem;
}

.fareseeker-filter-group select option {
    background: var(--fs-bg-dark);
}

.fareseeker-loading,
.fareseeker-no-results {
    text-align: center;
    padding: 4rem;
    color: var(--fs-text-muted);
}

.fareseeker-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--fs-border-glass);
    border-top-color: var(--fs-accent-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.fareseeker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.fareseeker-deal-card {
    background: var(--fs-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fs-border-glass);
    border-radius: var(--fs-border-radius);
    overflow: hidden;
    transition: var(--fs-transition);
}

.fareseeker-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--fs-shadow-hover);
    border-color: rgba(168, 85, 247, 0.3);
}

.fareseeker-deal-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--fs-border-glass);
}

.fareseeker-route {
    display: flex;
    flex-direction: column;
}

.fareseeker-city {
    font-weight: 700;
    font-size: 1.1rem;
}

.fareseeker-code {
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

.fareseeker-arrow {
    font-size: 1.5rem;
    color: var(--fs-accent-cyan);
    margin: 0.5rem 0;
}

.fareseeker-deal-body {
    padding: 1.5rem;
}

.fareseeker-price {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--fs-accent-orange), var(--fs-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.fareseeker-dates {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fareseeker-date {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.fareseeker-date-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--fs-text-muted);
    margin-bottom: 0.25rem;
}

.fareseeker-date-value {
    font-weight: 600;
}

.fareseeker-deal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--fs-border-glass);
}

.fareseeker-book-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border: none;
    border-radius: 100px;
    color: white;
    font-weight: 700;
    text-align: center;
    transition: var(--fs-transition);
}

.fareseeker-book-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    color: white;
}

/* Hero Section for Deals Page */
.hero-section {
    padding: 140px 2rem 60px !important;
    text-align: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: var(--fs-text-secondary);
    font-size: 1.1rem;
}

/* Site Container */
.site-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Content */
.site-content {
    min-height: calc(100vh - 200px);
}

/* ========================================
   Responsive Adjustments
======================================== */
@media (max-width: 640px) {
    .fs-hero {
        padding: 100px 1rem 3rem;
    }
    
    .fs-hero-stats {
        flex-direction: column;
    }
    
    .fs-stat-pill {
        width: 100%;
        justify-content: center;
    }
    
    .fs-deals-grid {
        grid-template-columns: 1fr;
    }
    
    .fs-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fareseeker-filters {
        flex-direction: column;
    }
    
    .fareseeker-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Advanced Search Page Styles
======================================== */
.fs-search-page {
    padding-bottom: 4rem;
}

.fs-search-hero {
    position: relative;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.fs-search-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.1));
    z-index: -1;
}

.fs-search-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.fs-search-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fs-search-icon {
    font-size: 2.5rem;
}

.fs-search-subtitle {
    color: var(--fs-text-secondary);
    font-size: 1.1rem;
}

/* Search Form Wrapper */
.fs-search-form-wrapper {
    max-width: 900px;
    margin: -2rem auto 3rem;
    padding: 0 1.5rem;
}

.fs-advanced-search-form {
    background: var(--fs-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fs-border-glass);
    border-radius: 24px;
    padding: 2rem;
}

/* Trip Type Toggle */
.fs-trip-type-row {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.fs-trip-type-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 4px;
}

.fs-trip-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 100px;
    color: var(--fs-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fs-trip-btn.active {
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    color: white;
}

.fs-trip-btn:hover:not(.active) {
    color: var(--fs-text-primary);
}

/* Search Fields */
.fs-search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.fs-search-field {
    flex: 1;
    min-width: 180px;
}

.fs-field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fs-text-muted);
    margin-bottom: 0.5rem;
}

.fs-field-input-wrapper {
    position: relative;
}

.fs-select-input,
.fs-date-input {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-right: 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fs-border-glass);
    border-radius: 12px;
    color: var(--fs-text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    appearance: none;
}

.fs-select-input:focus,
.fs-date-input:focus {
    outline: none;
    border-color: var(--fs-accent-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.fs-select-input option {
    background: var(--fs-bg-dark);
}

.fs-field-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
}

/* Swap Button */
.fs-swap-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    color: var(--fs-accent-purple);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.fs-swap-btn:hover {
    background: var(--fs-accent-purple);
    color: white;
    transform: rotate(180deg);
}

/* Search Options Row */
.fs-search-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
}

.fs-option-group {
    flex: 1;
    min-width: 200px;
}

.fs-passenger-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fs-passenger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fs-passenger-label {
    font-size: 0.9rem;
    color: var(--fs-text-secondary);
}

.fs-number-input {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 0.25rem;
}

.fs-number-input button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fs-accent-purple);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fs-number-input button:hover {
    background: var(--fs-accent-pink);
}

.fs-number-input span {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
}

.fs-cabin-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fs-border-glass);
    border-radius: 12px;
    color: var(--fs-text-primary);
    font-family: inherit;
    font-size: 0.95rem;
}

.fs-cabin-select option {
    background: var(--fs-bg-dark);
}

/* Search Submit */
.fs-search-submit {
    display: flex;
    justify-content: center;
}

.fs-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 250px;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border: none;
    border-radius: 100px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fs-submit-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}

.fs-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fs-btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fs-btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Search Results */
.fs-search-results {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.fs-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--fs-bg-glass);
    border-radius: 12px;
}

.fs-results-count {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.fs-results-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-results-label {
    color: var(--fs-text-muted);
}

.fs-results-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fs-results-sort label {
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

.fs-results-sort select {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fs-border-glass);
    border-radius: 8px;
    color: var(--fs-text-primary);
    font-family: inherit;
}

.fs-results-sort select option {
    background: var(--fs-bg-dark);
}

/* Loading Animation */
.fs-results-loading {
    padding: 4rem 2rem;
    text-align: center;
}

.fs-loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.fs-plane-loader {
    font-size: 3rem;
    animation: fly 1.5s ease-in-out infinite;
}

@keyframes fly {
    0%, 100% { transform: translateX(-20px) translateY(0); }
    50% { transform: translateX(20px) translateY(-10px); }
}

.fs-loading-text {
    font-size: 1.1rem;
    color: var(--fs-text-secondary);
}

.fs-loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.fs-loading-progress {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border-radius: 2px;
    animation: loadingSlide 1.5s ease-in-out infinite;
}

@keyframes loadingSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* No Results */
.fs-no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.fs-no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.fs-no-results h3 {
    margin-bottom: 0.5rem;
}

.fs-no-results p {
    color: var(--fs-text-secondary);
}

.fs-no-results-suggestions {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--fs-bg-glass);
    border-radius: 12px;
    display: inline-block;
    text-align: left;
}

.fs-no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.fs-no-results-suggestions li {
    padding: 0.25rem 0;
    color: var(--fs-text-muted);
}

.fs-no-results-suggestions li::before {
    content: "→ ";
    color: var(--fs-accent-cyan);
}

/* Results Grid */
.fs-results-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Flight Card */
.fs-flight-card {
    position: relative;
    background: var(--fs-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fs-border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fs-flight-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.fs-flight-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

/* Flight Route Section */
.fs-flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--fs-border-glass);
}

.fs-route-endpoint {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

.fs-airport-code {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-text-primary), var(--fs-text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-city-name {
    font-size: 0.85rem;
    color: var(--fs-text-muted);
}

.fs-flight-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fs-accent-cyan);
    margin-top: 0.25rem;
}

/* Route Line */
.fs-route-line {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.fs-route-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.fs-flight-duration {
    font-size: 0.85rem;
    color: var(--fs-text-secondary);
}

.fs-route-arrow {
    color: var(--fs-accent-purple);
}

.fs-flight-stops {
    font-size: 0.85rem;
    color: var(--fs-accent-emerald);
}

.fs-route-line-visual {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--fs-accent-purple), var(--fs-accent-pink), var(--fs-accent-orange));
    border-radius: 1px;
}

/* Flight Details Section */
.fs-flight-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 2rem;
}

.fs-flight-info {
    display: flex;
    gap: 2rem;
}

.fs-info-row {
    display: flex;
    flex-direction: column;
}

.fs-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fs-text-muted);
}

.fs-info-value {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Price Section */
.fs-flight-price-section {
    text-align: right;
}

.fs-price-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.fs-price-label {
    font-size: 0.75rem;
    color: var(--fs-text-muted);
}

.fs-price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-accent-orange), var(--fs-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-price-per {
    font-size: 0.75rem;
    color: var(--fs-text-muted);
}

.fs-price-savings {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.fs-original-price {
    text-decoration: line-through;
    color: var(--fs-text-muted);
    font-size: 0.85rem;
}

.fs-savings-badge {
    background: linear-gradient(135deg, var(--fs-accent-emerald), var(--fs-accent-cyan));
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
}

/* Flight Action */
.fs-flight-action {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: flex-end;
}

.fs-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border-radius: 100px;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}

.fs-book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    color: white;
}

/* Search Page Responsive */
@media (max-width: 768px) {
    .fs-search-fields {
        flex-direction: column;
    }
    
    .fs-search-field {
        width: 100%;
    }
    
    .fs-swap-btn {
        align-self: center;
        transform: rotate(90deg);
    }
    
    .fs-swap-btn:hover {
        transform: rotate(270deg);
    }
    
    .fs-search-options {
        flex-direction: column;
    }
    
    .fs-flight-route {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fs-route-line {
        width: 100%;
    }
    
    .fs-flight-details {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .fs-flight-info {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .fs-flight-price-section {
        text-align: left;
    }
    
    .fs-results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}

/* ========================================
   AUTOCOMPLETE STYLES
======================================== */
.fs-autocomplete-wrapper {
    position: relative;
}

.fs-text-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--fs-border-glass);
    border-radius: var(--fs-border-radius-sm);
    color: var(--fs-text-primary);
    font-size: 1rem;
    transition: var(--fs-transition);
}

.fs-text-input:focus {
    outline: none;
    border-color: var(--fs-accent-purple);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.fs-text-input::placeholder {
    color: var(--fs-text-muted);
}

.fs-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: rgba(20, 20, 35, 0.98);
    border: 1px solid var(--fs-border-glass);
    border-radius: var(--fs-border-radius-sm);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

.fs-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.fs-autocomplete-item:last-child {
    border-bottom: none;
}

.fs-autocomplete-item:hover,
.fs-autocomplete-item.active {
    background: rgba(168, 85, 247, 0.2);
}

.fs-suggestion-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fs-suggestion-code {
    font-weight: 700;
    color: var(--fs-accent-cyan);
    font-size: 0.9rem;
    background: rgba(6, 182, 212, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.fs-suggestion-name {
    font-weight: 500;
    color: var(--fs-text-primary);
}

.fs-suggestion-sub {
    font-size: 0.8rem;
    color: var(--fs-text-muted);
    margin-top: 2px;
    padding-left: 50px;
}

.fs-autocomplete-hint {
    padding: 12px 16px;
    color: var(--fs-text-muted);
    font-style: italic;
    text-align: center;
}

/* ========================================
   PREMIUM FLIGHT CARDS
======================================== */
.fs-flight-card-premium {
    position: relative;
    background: var(--fs-bg-glass);
    border: 1px solid var(--fs-border-glass);
    border-radius: var(--fs-border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--fs-transition);
    overflow: hidden;
}

.fs-flight-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--fs-shadow-hover);
    border-color: rgba(168, 85, 247, 0.3);
}

.fs-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--fs-accent-emerald), var(--fs-accent-cyan));
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.fs-price-badge .fs-price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.fs-price-badge .fs-price-per {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.fs-airline-logos {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.fs-airline-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
    background: white;
    padding: 2px;
}

/* Flight Segments */
.fs-flight-segment {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--fs-border-radius-sm);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.fs-return-segment {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.fs-segment-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fs-text-muted);
    margin-bottom: 0.5rem;
}

.fs-segment-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fs-segment-endpoint {
    text-align: center;
    min-width: 60px;
}

.fs-segment-time {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fs-text-primary);
}

.fs-segment-code {
    display: block;
    font-size: 0.9rem;
    color: var(--fs-accent-cyan);
    font-weight: 600;
}

.fs-segment-line {
    flex: 1;
    text-align: center;
}

.fs-segment-duration {
    font-size: 0.85rem;
    color: var(--fs-text-secondary);
    margin-bottom: 4px;
}

.fs-segment-visual {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, var(--fs-accent-purple), var(--fs-accent-pink));
    margin: 8px 0;
    border-radius: 2px;
}

.fs-segment-line-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.fs-segment-stops {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 8px;
}

.fs-stop-dot {
    width: 8px;
    height: 8px;
    background: var(--fs-accent-orange);
    border-radius: 50%;
    border: 2px solid var(--fs-bg-dark);
}

.fs-segment-stops-text {
    font-size: 0.75rem;
    color: var(--fs-text-muted);
}

/* Segment Details */
.fs-segment-details {
    margin-top: 0.75rem;
}

.fs-expand-btn {
    background: none;
    border: none;
    color: var(--fs-accent-purple);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.fs-expand-btn svg {
    transition: transform 0.3s;
}

.fs-expand-btn svg.rotated {
    transform: rotate(180deg);
}

.fs-legs-list {
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.fs-leg-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.fs-leg-item:last-child {
    border-bottom: none;
}

.fs-leg-route {
    font-weight: 600;
    color: var(--fs-text-primary);
}

.fs-leg-time {
    color: var(--fs-text-secondary);
}

.fs-leg-airline {
    color: var(--fs-text-muted);
    font-size: 0.8rem;
}

/* Flight Info Bar */
.fs-flight-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.fs-info-item {
    color: var(--fs-text-secondary);
}

.fs-info-item strong {
    color: var(--fs-text-muted);
    margin-right: 4px;
}

.fs-seats-left {
    color: #f59e0b;
    font-weight: 600;
}

/* Book Button Premium */
.fs-book-btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border: none;
    border-radius: var(--fs-border-radius-sm);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--fs-transition);
}

.fs-book-btn-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    color: white;
}

/* Results Summary */
.fs-results-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fs-results-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-results-route {
    color: var(--fs-text-secondary);
}

.fs-results-route strong {
    color: var(--fs-accent-cyan);
}

/* Loading Animation */
.fs-plane-loader {
    font-size: 3rem;
    animation: flyPlane 2s ease-in-out infinite;
}

@keyframes flyPlane {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(20px) rotate(10deg);
    }
}

.fs-loading-text {
    margin-top: 1rem;
    color: var(--fs-text-secondary);
    font-size: 1.1rem;
}

/* Premium Search Mobile Responsive */
@media (max-width: 768px) {
    .fs-segment-route {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .fs-segment-line {
        width: 100%;
    }
    
    .fs-price-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        width: fit-content;
    }
    
    .fs-flight-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ==============================================
   Route Page Styles
   ============================================== */

.fs-route-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.fs-route-header-section {
    position: relative;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 24px;
    overflow: hidden;
}

.fs-route-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(6, 182, 212, 0.2));
    z-index: 0;
}

.fs-route-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fs-route-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.fs-route-city {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fs-route-code {
    font-size: 3rem;
    font-weight: 700;
    color: var(--fs-text-primary);
    letter-spacing: 0.1em;
}

.fs-route-name {
    font-size: 1rem;
    color: var(--fs-text-secondary);
    margin-top: 0.5rem;
}

.fs-route-arrow {
    color: var(--fs-accent-cyan);
    opacity: 0.8;
}

.fs-route-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.fs-route-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fs-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--fs-accent-purple);
}

.fs-stat-label {
    font-size: 0.9rem;
    color: var(--fs-text-secondary);
    margin-top: 0.25rem;
}

.fs-route-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

/* ==============================================
   Airport Page Styles
   ============================================== */

.fs-airport-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.fs-airport-header-section {
    position: relative;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 24px;
    overflow: hidden;
}

.fs-airport-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(168, 85, 247, 0.2));
    z-index: 0;
}

.fs-airport-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fs-airport-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.fs-airport-icon {
    color: var(--fs-accent-cyan);
}

.fs-airport-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fs-airport-code {
    font-size: 3rem;
    font-weight: 700;
    color: var(--fs-text-primary);
    letter-spacing: 0.1em;
}

.fs-airport-name {
    font-size: 1rem;
    color: var(--fs-text-secondary);
}

.fs-airport-title {
    font-size: 1.5rem;
    color: var(--fs-text-primary);
    margin-bottom: 2rem;
}

.fs-airport-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.fs-airport-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fs-airport-controls {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fs-destination-filter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fs-destination-filter label,
.fs-results-sort label {
    color: var(--fs-text-secondary);
    font-size: 0.9rem;
}

.fs-destination-filter select,
.fs-results-sort select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fs-border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--fs-text-primary);
    font-size: 0.9rem;
}

.fs-destination-flag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--fs-text-secondary);
    font-size: 0.9rem;
}

.fs-destination-flag img {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

.fs-return-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--fs-text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--fs-border);
    margin-top: 0.5rem;
}

.fs-load-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.fs-btn-secondary {
    background: transparent;
    border: 2px solid var(--fs-accent-purple);
    color: var(--fs-accent-purple);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fs-btn-secondary:hover {
    background: var(--fs-accent-purple);
    color: white;
}

.fs-btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Route/Airport Page Mobile Responsive */
@media (max-width: 768px) {
    .fs-route-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fs-route-arrow {
        transform: rotate(90deg);
    }
    
    .fs-route-code,
    .fs-airport-code {
        font-size: 2.5rem;
    }
    
    .fs-route-stats,
    .fs-airport-stats {
        gap: 1.5rem;
    }
    
    .fs-stat-value {
        font-size: 1.5rem;
    }
    
    .fs-airport-controls {
        flex-direction: column;
    }
    
    .fs-destination-filter,
    .fs-results-sort {
        width: 100%;
    }
    
    .fs-destination-filter select,
    .fs-results-sort select {
        flex: 1;
    }
}

/* ===========================================
   SEARCH PAGE FILTERS & BADGES
=========================================== */

/* Quick Selection Cards */
.fs-quick-select {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.fs-quick-card {
    flex: 1;
    padding: 1rem 1.25rem;
    background: var(--fs-bg-glass);
    border: 1px solid var(--fs-border-glass);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.fs-quick-card:hover {
    border-color: var(--fs-accent-purple);
    transform: translateY(-2px);
}

.fs-quick-card.active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-color: var(--fs-accent-purple);
}

.fs-quick-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fs-text-muted);
    margin-bottom: 0.5rem;
}

.fs-quick-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-accent-orange), var(--fs-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-quick-detail {
    font-size: 0.8rem;
    color: var(--fs-text-secondary);
    margin-top: 0.25rem;
}

/* Results Layout with Sidebar */
.fs-results-layout {
    display: flex;
    gap: 2rem;
}

/* Filter Sidebar */
.fs-filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: var(--fs-bg-glass);
    border: 1px solid var(--fs-border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.fs-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--fs-border-glass);
}

.fs-filter-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.fs-reset-filters {
    background: transparent;
    border: 1px solid var(--fs-accent-cyan);
    color: var(--fs-accent-cyan);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fs-reset-filters:hover {
    background: var(--fs-accent-cyan);
    color: var(--fs-bg-primary);
}

/* Filter Groups */
.fs-filter-group {
    margin-bottom: 1.5rem;
}

.fs-filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fs-text-secondary);
    margin-bottom: 0.75rem;
    display: block;
}

/* Range Input */
.fs-range-input {
    width: 100%;
    height: 6px;
    background: var(--fs-border-glass);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.fs-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border-radius: 50%;
    cursor: pointer;
}

.fs-range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.fs-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--fs-text-muted);
    margin-top: 0.5rem;
}

/* Filter Options (radio/checkbox) */
.fs-filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fs-filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.fs-filter-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.fs-filter-option input {
    accent-color: var(--fs-accent-purple);
}

.fs-filter-option span {
    font-size: 0.85rem;
    color: var(--fs-text-secondary);
}

/* Filter Select */
.fs-filter-select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--fs-border-glass);
    border-radius: 8px;
    color: var(--fs-text-primary);
    font-size: 0.85rem;
}

/* Airlines Filter */
.fs-filter-airlines {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Results List */
.fs-results-list {
    flex: 1;
    min-width: 0;
}

/* Results Header */
.fs-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.fs-results-count {
    font-size: 0.9rem;
    color: var(--fs-text-muted);
}

/* ===========================================
   FLIGHT CARD PREMIUM WITH BADGES
=========================================== */

.fs-flight-card-premium {
    position: relative;
    background: var(--fs-bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fs-border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.fs-flight-card-premium:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Badges Row */
.fs-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.fs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Badge Variants */
.fs-badge-direct {
    background: linear-gradient(135deg, var(--fs-accent-emerald), #10b981);
    color: white;
}

.fs-badge-duration {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--fs-border-glass);
    color: var(--fs-text-secondary);
}

.fs-badge-duration.fs-duration-short {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--fs-accent-emerald);
    color: var(--fs-accent-emerald);
}

.fs-badge-duration.fs-duration-medium {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--fs-accent-orange);
    color: var(--fs-accent-orange);
}

.fs-badge-duration.fs-duration-long {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

.fs-badge-self-transfer {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.fs-badge-guarantee {
    background: linear-gradient(135deg, var(--fs-accent-cyan), var(--fs-accent-purple));
    color: white;
}

.fs-badge-multi-pnr {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--fs-accent-purple);
    color: var(--fs-accent-purple);
}

.fs-badge-bag-recheck {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid var(--fs-accent-orange);
    color: var(--fs-accent-orange);
}

.fs-badge-seats {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Price Badge */
.fs-price-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    text-align: right;
}

.fs-price-badge .fs-price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-accent-orange), var(--fs-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fs-price-badge .fs-price-per {
    font-size: 0.75rem;
    color: var(--fs-text-muted);
}

/* Airline Section */
.fs-airline-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.fs-airline-logo {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: white;
    padding: 2px;
}

.fs-airline-names {
    font-size: 0.85rem;
    color: var(--fs-text-secondary);
}

/* Flight Segment */
.fs-flight-segment {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--fs-border-glass);
}

.fs-flight-segment:last-of-type {
    border-bottom: none;
}

.fs-segment-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fs-text-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.fs-segment-route {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fs-segment-endpoint {
    text-align: center;
    min-width: 80px;
}

.fs-segment-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fs-text-primary);
    display: block;
}

.fs-segment-code {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fs-accent-cyan);
}

.fs-segment-city {
    font-size: 0.75rem;
    color: var(--fs-text-muted);
}

.fs-segment-line {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.fs-segment-duration {
    font-size: 0.8rem;
    color: var(--fs-text-secondary);
}

.fs-segment-visual {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--fs-accent-purple), var(--fs-accent-pink), var(--fs-accent-orange));
    border-radius: 1px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.fs-segment-stop-dot {
    width: 8px;
    height: 8px;
    background: var(--fs-accent-orange);
    border-radius: 50%;
    border: 2px solid var(--fs-bg-secondary);
}

.fs-segment-stops-text {
    font-size: 0.75rem;
    color: var(--fs-text-muted);
}

/* Self-Transfer Warning Box */
.fs-self-transfer-warning {
    display: flex;
    gap: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.fs-warning-icon {
    font-size: 1.5rem;
}

.fs-warning-content {
    flex: 1;
}

.fs-warning-content strong {
    display: block;
    color: var(--fs-accent-orange);
    margin-bottom: 0.25rem;
}

.fs-warning-content p {
    font-size: 0.85rem;
    color: var(--fs-text-secondary);
    margin: 0;
}

.fs-guarantee-note {
    margin-top: 0.5rem !important;
    padding: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    color: var(--fs-accent-cyan) !important;
}

/* Flight Info Bar */
.fs-flight-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
}

.fs-info-item {
    font-size: 0.85rem;
    color: var(--fs-text-secondary);
}

/* Book Button Premium */
.fs-book-btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--fs-accent-purple), var(--fs-accent-pink));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fs-book-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

/* No Filtered Results */
.fs-no-filtered {
    text-align: center;
    padding: 3rem;
    background: var(--fs-bg-glass);
    border-radius: 16px;
}

.fs-no-filtered p {
    color: var(--fs-text-muted);
    margin-bottom: 1rem;
}

/* Mobile Responsive - Filters */
@media (max-width: 992px) {
    .fs-results-layout {
        flex-direction: column;
    }
    
    .fs-filter-sidebar {
        width: 100%;
        position: static;
    }
    
    .fs-quick-select {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .fs-badges-row {
        gap: 0.35rem;
    }
    
    .fs-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .fs-price-badge {
        position: static;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .fs-segment-route {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .fs-segment-endpoint {
        min-width: 100%;
    }
    
    .fs-segment-line {
        width: 100%;
        flex-direction: row;
        gap: 1rem;
    }
    
    .fs-segment-visual {
        flex: 1;
    }
}

/* ========================================
   Blog Post Single View — Dark Theme
======================================== */

/* Article container: constrain width for readability */
.single .site-container,
.single-post .site-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* Post title gradient */
.single .entry-title,
.single-post .entry-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fs-accent-purple, #7c3aed), var(--fs-accent-pink, #db2777));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.35;
    margin-bottom: 12px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.single .entry-header {
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.single .entry-meta {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

/* Blog post content styling */
.single .entry-content,
.single-post .entry-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
}

/* === Headings with generous spacing === */
.single .entry-content h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 3.5rem 0 1.25rem;
    padding-top: 2rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    letter-spacing: -0.2px;
}

.single .entry-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

.single .entry-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin: 2.5rem 0 1rem;
}

.single .entry-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    margin: 2rem 0 0.75rem;
}

/* === Paragraphs: more bottom spacing === */
.single .entry-content p {
    margin-bottom: 1.4rem;
}

/* === Links === */
.single .entry-content a {
    color: #a78bfa;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.single .entry-content a:hover {
    color: #c4b5fd;
}

/* === Lists: more breathing room === */
.single .entry-content ul,
.single .entry-content ol {
    margin: 1.25rem 0 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.72);
}

.single .entry-content li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.single .entry-content li::marker {
    color: rgba(124, 58, 237, 0.6);
}

.single .entry-content strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

/* === Blockquotes === */
.single .entry-content blockquote {
    border-left: 3px solid #7c3aed;
    padding: 20px 28px;
    margin: 2rem 0;
    background: rgba(124, 58, 237, 0.06);
    border-radius: 0 12px 12px 0;
    color: rgba(255, 255, 255, 0.72);
    font-style: italic;
}

/* === Tables: more padding, cleaner look === */
.single .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0 2.5rem;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.single .entry-content thead th {
    background: rgba(124, 58, 237, 0.12);
    color: #a78bfa;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single .entry-content tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

.single .entry-content tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

/* === Media === */
.single .entry-content img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

/* === Code === */
.single .entry-content code {
    background: rgba(255, 255, 255, 0.07);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.88em;
    color: #f0abfc;
}

.single .entry-content pre {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 22px;
    overflow-x: auto;
    margin: 2rem 0;
}

.single .entry-content pre code {
    background: none;
    padding: 0;
}

/* === Horizontal rules === */
.single .entry-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 3rem 0;
}

/* === Responsive === */
@media (max-width: 768px) {
    .single .site-container,
    .single-post .site-container {
        padding: 24px 16px 48px;
    }
    .single .entry-title {
        font-size: 1.5rem;
    }
    .single .entry-header {
        margin-bottom: 28px;
        padding-bottom: 20px;
    }
    .single .entry-content {
        font-size: 0.98rem;
    }
    .single .entry-content h2 {
        font-size: 1.25rem;
        margin: 2.5rem 0 1rem;
        padding-top: 1.25rem;
    }
    .single .entry-content h3 {
        font-size: 1.1rem;
        margin: 2rem 0 0.75rem;
    }
    .single .entry-content table {
        font-size: 0.78rem;
    }
    .single .entry-content thead th,
    .single .entry-content tbody td {
        padding: 8px 10px;
    }
}
