@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-base: #f8fafc;
    --bg-surface: #ffffff;
    --bg-dark: #0b111e;
    --bg-dark-surface: #151f32;

    --color-primary: #4f46e5;
    /* Indigo */
    --color-primary-light: #818cf8;
    --color-secondary: #0ea5e9;
    /* Cyan */
    --color-secondary-light: #38bdf8;
    --color-accent: #f43f5e;
    /* Rose */
    --color-accent-light: #fb7185;
    --color-success: #10b981;
    /* Emerald */

    --text-primary: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-muted: #94a3b8;
    /* Slate 400 */
    --text-light: #ffffff;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    --grad-accent: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
    --grad-dark: linear-gradient(135deg, #0b111e 0%, #1e293b 100%);
    --grad-glow: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(14, 165, 233, 0) 70%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04);

    --glass-dark-bg: rgba(21, 31, 50, 0.7);
    --glass-dark-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 25px 50px -12px rgba(79, 70, 229, 0.08);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Base Reset & Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* --- Layout Elements & Globals --- */
.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Animations & Effects --- */
@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Scroll Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Premium Buttons --- */
.btn-premium {
    background: var(--grad-primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-accent);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.4);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 12px 26px;
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
    background-image: linear-gradient(var(--bg-base), var(--bg-base)), var(--grad-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-premium-outline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* --- Header Section (Sticky Glassmorphic Nav) --- */
header.sticky-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    transition: var(--transition-smooth);
}

.navbar-container {
    max-width: 1320px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 12px 24px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

/* When Scrolled */
header.scrolled {
    top: 0 !important;
    padding: 0 !important;
}

header.scrolled .navbar-container {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-top: none;
    background: rgba(255, 255, 255, 0.85);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-primary);
}

.logo-icon-svg {
    width: 32px;
    height: 32px;
}

.nav-links-custom {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.nav-item-custom a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-item-custom a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-smooth);
}

.nav-item-custom a:hover {
    color: var(--text-primary);
}

.nav-item-custom a:hover::after {
    width: 100%;
}

.nav-actions-custom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--font-heading);
}

.contact-info-nav .label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.contact-info-nav .value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.16);
    color: var(--color-primary);
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.08);
    outline: none;
    padding: 0;
    position: relative;
}

.mobile-nav-toggle:hover {
    background: var(--grad-primary);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

.mobile-nav-toggle.active {
    background: var(--grad-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.mobile-nav-toggle i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle.active i {
    transform: rotate(90deg);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 160px 0 80px 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #f0f7ff 50%, #f1f5f9 100%);
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 90%);
    z-index: -1;
    pointer-events: none;
}

.ambient-glow-1 {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, rgba(14, 165, 233, 0.06) 50%, rgba(79, 70, 229, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulseGlow 8s ease-in-out infinite;
}

.ambient-glow-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.16) 0%, rgba(99, 102, 241, 0.06) 50%, rgba(79, 70, 229, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.02);
}

.badge-glow i {
    font-size: 11px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 40px auto;
}

/* --- Interactive Booking Widget --- */
.booking-widget-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    z-index: 10;
}

.glass-booking-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 20px 30px;
}

.booking-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 12px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background: rgba(79, 70, 229, 0.08);
    color: var(--color-primary);
}

.trip-type-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-check-input-custom {
    cursor: pointer;
}

.form-check-label-custom {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Grid Layout for Inputs */
.booking-inputs-grid {
    display: grid;
    grid-template-columns: 2fr 0px 2fr 1.5fr 1.5fr 1fr;
    align-items: stretch;
    gap: 12px;
}

/* Form Shake Validation */
@keyframes formShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: formShake 0.4s ease-in-out;
}

.search-btn-container {
    min-height: 58px;
    display: flex;
    align-items: stretch;
}

.search-btn-container button {
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    padding: 0 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-block-custom {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-block-custom:focus-within {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-block-custom label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.05em;
    text-align: start;
}

.input-block-custom input,
.input-block-custom select {
    width: 100%;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
}

/* Swap Button Animation */
.swap-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.btn-swap-locations {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.btn-swap-locations:hover {
    transform: rotate(180deg);
    background: var(--color-primary);
    color: #ffffff;
}

/* Passenger Selector Dropdown Custom */
.passenger-dropdown-wrapper {
    position: relative;
}

.passenger-dropdown-trigger {
    cursor: pointer;
}

.passenger-dropdown-trigger span {
    display: block;
    font-weight: 600;
    font-size: 15px;
    text-align: start;
}

.passenger-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    padding: 20px;
    display: none;
    z-index: 100;
}

.passenger-dropdown-panel.show {
    display: block;
    animation: revealPanel 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealPanel {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.passenger-row:last-child {
    margin-bottom: 0;
}

.passenger-label {
    display: flex;
    flex-direction: column;
}

.passenger-label .title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.passenger-label .subtitle {
    font-size: 11px;
    color: var(--text-muted);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition-fast);
}

.counter-btn:hover {
    background: var(--color-primary-light);
    color: #ffffff;
    border-color: var(--color-primary-light);
}

.counter-value {
    font-weight: 600;
    font-size: 14px;
    min-width: 16px;
    text-align: center;
}

/* Submit Area */
.search-submit-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Mock Search Loader Overlay */
.search-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.search-loader-overlay.active {
    display: flex;
}

.spinner-glow {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(79, 70, 229, 0.1);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.search-loader-overlay p {
    margin-top: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 16px;
}

/* Mock Results Box */
.mock-results-box {
    display: none;
    margin-top: 24px;
    animation: revealPanel 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mock-results-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mock-flight-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.mock-flight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-primary-light);
}

.airline-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.airline-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.flight-times {
    display: flex;
    align-items: center;
    gap: 20px;
}

.time-block {
    text-align: center;
}

.time-block .time {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.time-block .code {
    font-size: 12px;
    color: var(--text-muted);
}

.flight-duration-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 120px;
}

.flight-duration-path span {
    font-size: 11px;
    color: var(--text-muted);
}

.flight-line {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 4px 0;
}

.flight-line::after {
    content: '\f5b0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    font-size: 10px;
    color: var(--color-primary);
    background: #ffffff;
    padding: 0 4px;
}

.flight-price-action {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-box .label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-box .amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
}

/* --- Trust / Live Stats Bar --- */
.stats-section {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* --- Core Advantages (Features Grid) --- */
.features-section {
    background-color: #fff;
}

.section-tagline {
    font-weight: 700;
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    padding: 20px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(79, 70, 229, 0.15);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    background: rgba(79, 70, 229, 0.06);
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--grad-primary);
    color: #ffffff;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 0;
}

/* --- Destinations Section --- */
.destinations-section {
    background: #ffffff;
}

.destination-card {
    display: block;
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.destination-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.destination-card:hover .destination-img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition-smooth);
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
}

.destination-top-pill {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-top-pill i {
    color: #facc15;
}

.destination-info h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 4px;
}

.destination-info .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.destination-info .price-tag {
    color: var(--color-secondary-light);
    font-weight: 700;
    font-size: 16px;
}

/* --- Interactive Smart Flight Assistant Section --- */
.smart-assistant-section {
    background-color: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.filter-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-pill-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.filter-pill-btn.active,
.filter-pill-btn:hover {
    background: var(--grad-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.15);
}

.deal-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    transform: scale(1);
}

.deal-card.hide {
    display: none;
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.deal-route h4 {
    font-size: 18px;
    margin-bottom: 2px;
    text-align: start;
}

.deal-route .details {
    font-size: 13px;
    color: var(--text-muted);
}

.deal-label-badge {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-success);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.deal-body {
    margin-bottom: 20px;
}

.deal-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.deal-meta-item .label {
    color: var(--text-muted);
}

.deal-meta-item .val {
    font-weight: 600;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
}

.deal-price .label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.deal-price .val {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
}

.btn-deal-book {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: var(--transition-smooth);
}

.btn-deal-book:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: var(--bg-base);
}

.testimonial-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-swiper {
    padding-bottom: 50px !important;
}

.stars-rating {
    color: #facc15;
    font-size: 15px;
    margin-bottom: 20px;
}

.testimonial-content {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: rgba(79, 70, 229, 0.08);
}

/* --- Footer --- */
footer {
    background-color: var(--bg-dark);
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 80px 0 50px 0;
}

.footer-logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: justify;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    margin-bottom: 12px;
}

.footer-contact-card h6 {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.footer-contact-card .value {
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.footer-disclaimer-text {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 20px;
    margin-bottom: 0;
}

/* --- Floating Concierge Dock --- */
.concierge-dock {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    font-family: var(--font-body);
    opacity: 0;
    transform: translateY(30px) scale(0.92);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.concierge-dock.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Animated outer glow ring */
.dock-glow-ring {
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9, #f43f5e, #4f46e5);
    background-size: 300% 300%;
    animation: dockGlowRotate 4s ease infinite;
    z-index: -1;
    filter: blur(1px);
}

@keyframes dockGlowRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Main dock body */
.dock-body {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(11, 17, 30, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 10px 14px 10px 12px;
    position: relative;
    z-index: 1;
}

/* Radar icon with rings */
.dock-icon-pulse {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dock-icon-pulse i {
    font-size: 18px;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.dock-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid rgba(79, 70, 229, 0.4);
    animation: dockRingPulse 2.5s ease-out infinite;
}

.dock-ring-2 {
    animation-delay: 1.2s;
}

@keyframes dockRingPulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Info text */
.dock-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dock-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.dock-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--color-success);
    font-weight: 600;
}

.dock-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-success);
    display: inline-block;
    animation: dockStatusBlink 1.8s ease-in-out infinite;
}

@keyframes dockStatusBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* CTA button */
.dock-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--grad-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
    white-space: nowrap;
}

.dock-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.5);
    color: #ffffff;
}

.dock-cta .fa-phone-alt {
    font-size: 12px;
    animation: dockPhoneShake 2s ease-in-out infinite;
}

@keyframes dockPhoneShake {

    0%,
    60%,
    100% {
        transform: rotate(0deg);
    }

    65% {
        transform: rotate(12deg);
    }

    70% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(8deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    85% {
        transform: rotate(0deg);
    }
}

/* Close button */
.dock-close {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.dock-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

/* Swiper Custom Pagination & Navigation Styles */
.destinations-swiper,
.testimonials-swiper {
    padding-bottom: 50px !important;
}

.destinations-swiper .swiper-pagination-bullet,
.testimonials-swiper .swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.4;
    transition: var(--transition-fast);
}

.destinations-swiper .swiper-pagination-bullet-active,
.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    width: 24px;
    border-radius: 10px;
}

/* About Us Section Styles */
.about-section {
    position: relative;
    background-color: var(--bg-base);
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-image-wrapper img {
    width: 100%;
    object-fit: cover;
    height: 480px;
    border-radius: var(--radius-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--grad-primary);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.about-image-badge .number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge .txt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.about-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(79, 70, 229, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* ====================================
   Search Preloader & Calling Modals
   ==================================== */

/* Shared Dark Glass Modal Skin */
.search-modal-content,
.calling-modal-content {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* --- Preloader Modal: Radar Animation --- */
.radar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-scanner {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.4);
}

.radar-scanner i {
    font-size: 28px;
    color: #ffffff;
    animation: planeFloat 2s ease-in-out infinite;
}

.radar-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.4);
    animation: radarPing 1.8s ease-out infinite;
}

@keyframes radarPing {
    0% {
        transform: scale(0.7);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes planeFloat {

    0%,
    100% {
        transform: translateY(-3px) rotate(-10deg);
    }

    50% {
        transform: translateY(3px) rotate(-5deg);
    }
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--grad-primary);
    border-radius: 10px;
    animation: progressFill 3s ease-in-out forwards;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    25% {
        width: 30%;
    }

    50% {
        width: 55%;
    }

    75% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

/* --- Calling Modal: Pulse Ring Animation --- */
.calling-pulse-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(79, 70, 229, 0.5);
    animation: callingPulse 2s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.6s;
}

@keyframes callingPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.phone-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.35);
}

.phone-icon-box i {
    font-size: 24px;
    color: #ffffff;
    animation: phoneShake 0.6s ease-in-out infinite alternate;
}

@keyframes phoneShake {
    0% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(8deg);
    }
}

/* Phone Shake for CTA button */
.phone-shake {
    animation: phoneShake 0.6s ease-in-out infinite alternate;
}

/* User Search Summary Card */
.user-search-summary-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
}

.user-search-summary-card .airport-code {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    word-break: break-word;
}

.user-search-summary-card .airport-name {
    font-size: 12px;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Modal Divider */
.modal-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Calling Modal Input Styles */
.calling-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: var(--radius-md) !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    font-size: 14px;
    transition: var(--transition-fast);
}

.calling-input::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.calling-input:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2) !important;
}

/* Text utility for white-50 */
.text-white-50 {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Success Checkmark */
.success-checkmark i {
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Flatpickr Custom Theme --- */
.flatpickr-calendar {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    font-family: var(--font-body);
    overflow: hidden;
    z-index: 1050;
}

.flatpickr-months {
    background: var(--grad-primary);
    padding: 8px 0;
}

.flatpickr-months .flatpickr-month {
    color: #ffffff;
    fill: #ffffff;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #ffffff;
    fill: #ffffff;
    padding: 8px 12px;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: rgba(255, 255, 255, 0.7);
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    display: none;
}

.flatpickr-current-month {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    border: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    color: #000;
}

.flatpickr-current-month input.cur-year {
    color: #ffffff;
    font-weight: 600;
}

span.flatpickr-weekday {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.flatpickr-day {
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.15s ease;
}

.flatpickr-day:hover {
    background: rgba(79, 70, 229, 0.08);
    border-color: transparent;
    color: var(--color-primary);
}

.flatpickr-day.today {
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 700;
}

.flatpickr-day.today:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(0, 0, 0, 0.15);
}

.flatpickr-innerContainer {
    padding: 8px;
}

#fly-depart {
    cursor: pointer;
}

/* --- Responsive Settings --- */
@media (max-width: 1199px) {
    .contact-info-nav {
        display: none;
    }
}

@media (max-width: 991px) {
    .booking-inputs-grid {
        grid-template-columns: 2fr 0px 2fr 1.5fr 1.5fr;
    }

    .search-btn-container {
        grid-column: span 5;
        margin-top: 8px;
    }

    .hero-title {
        font-size: 48px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links-custom {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        z-index: 1050;
    }

    .nav-links-custom.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: all;
    }

    .nav-item-custom a {
        display: block;
        padding: 12px 18px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        transition: var(--transition-fast);
    }

    .nav-item-custom a:hover {
        background: rgba(79, 70, 229, 0.06);
        color: var(--color-primary);
        padding-left: 22px;
    }

    .nav-item-custom a::after {
        display: none;
    }

    .nav-actions-custom {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }

    .booking-inputs-grid {
        grid-template-columns: 1fr;
    }

    .swap-button-container .btn-swap-locations {
        transform: rotate(90deg);
    }

    .swap-button-container .btn-swap-locations:hover {
        transform: rotate(270deg);
    }

    .swap-button-container {
        grid-column: span 1;
        margin: -15px 0;
    }

    .search-btn-container {
        grid-column: span 1;
    }

    .section-title {
        font-size: 30px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-image-wrapper img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    header.sticky-header {
        top: 15px;
        padding: 0 15px;
    }

    .concierge-dock {
        right: 14px;
        left: 14px;
        bottom: 16px;
    }

    .dock-body {
        justify-content: space-between;
        padding: 8px 10px 8px 8px;
        border-radius: 16px;
    }

    .dock-glow-ring {
        border-radius: 18px;
    }

    .dock-icon-pulse {
        width: 34px;
        height: 34px;
    }

    .dock-icon-pulse i {
        font-size: 15px;
    }

    .dock-info {
        display: none;
    }

    .dock-cta {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 12px;
    }

    .dock-label {
        font-size: 12px;
    }

    .dock-status {
        font-size: 10px;
    }

    .about-image-badge {
        right: 0;
        bottom: -10px;
        padding: 12px 20px;
    }

    .about-image-badge .number {
        font-size: 20px;
    }
}

/* Page Hero Section */
.contact-hero-section {
    position: relative;
    padding: 160px 0 70px 0;
    background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0b1120 0%, #0f172a 50%, #1e1b4b 100%);
    color: #ffffff;
    overflow: hidden;
}

.contact-hero-section .ambient-glow-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.custom-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-secondary);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--color-secondary);
    font-weight: 600;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.35);
    padding: 0 10px;
}

/* Contact Main Section */
.contact-wrapper-section {
    padding: 70px 0;
    background: #f8fafc;
    position: relative;
}

/* Left Column: Dark Concierge Channels Card */
.contact-concierge-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 30px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-concierge-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.status-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.contact-channel-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.contact-channel-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.contact-channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.contact-channel-info {
    flex-grow: 1;
}

.contact-channel-info .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 2px;
}

.contact-channel-info .val {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    text-decoration: none;
    display: block;
    line-height: 1.3;
    word-break: break-word;
}

.contact-channel-info a.val:hover {
    color: var(--color-secondary);
}

.contact-channel-info .desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
    display: block;
}

.contact-perks-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.contact-perks-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.contact-perks-list li i {
    color: #10b981;
    font-size: 12px;
}

/* Right Column: Modern Glassmorphic Form Card */
.contact-form-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

.contact-form-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.contact-form-sub {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.input-icon-group {
    position: relative;
}

.input-icon-group i.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
    transition: var(--transition-fast);
    pointer-events: none;
}

.input-icon-group textarea+i.input-icon {
    top: 22px;
    transform: none;
}

.input-icon-group .form-control-modern {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    background: #f8fafc;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-fast);
    outline: none;
}

.input-icon-group select.form-control-modern {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%3a94a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
}

.input-icon-group .form-control-modern:focus {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.input-icon-group .form-control-modern:focus~i.input-icon {
    color: var(--color-primary);
}

.form-label-modern {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 991px) {
    .contact-form-container {
        padding: 30px 24px;
    }

    .contact-concierge-card {
        padding: 30px 24px;
    }
}

/* Sticky Navigation Sidebar */
.privacy-sidebar-nav {
    position: sticky;
    top: 100px;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.privacy-sidebar-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 20px;
    display: block;
}

.privacy-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-nav-links li {
    margin-bottom: 10px;
}

.privacy-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-nav-links a:hover,
.privacy-nav-links a.active {
    color: #ffffff;
    background: var(--grad-primary);
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.privacy-nav-links a i {
    font-size: 14px;
}

/* Privacy Content Cards */
.privacy-card-block {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
}

.privacy-card-block:hover {
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}

.privacy-card-block:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 575px) {
    .privacy-card-block {
        padding: 20px;
    }
}

.privacy-header-flex {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.privacy-sec-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.privacy-sec-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.privacy-list-custom {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.privacy-list-custom li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-list-custom li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* 4-Card Usage Grid */
.privacy-grid-use {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 575px) {
    .privacy-grid-use {
        grid-template-columns: 1fr;
    }
}

.privacy-use-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-fast);
}

.privacy-use-card:hover {
    background: #ffffff;
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.08);
    transform: translateY(-3px);
}

.privacy-use-card .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.privacy-use-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.privacy-use-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Green Commitment Banner */
.privacy-commitment-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #065f46;
}

.privacy-commitment-banner i {
    font-size: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.privacy-commitment-banner p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

/* Rights Grid & Badges */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

@media (max-width: 575px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

.right-badge-item {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.right-badge-item i {
    color: #10b981;
    font-size: 16px;
}

.privacy-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.btn-privacy-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-privacy-action:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}