/* ==========================================================================
   AVEORA — GLOBAL TRAVEL SOLUTIONS DESIGN SYSTEM
   Premium Production-Ready Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
    /* AVEORA Core Color Palette */
    --color-bg: oklch(98% 0.009 215);
    --color-bg-pure: oklch(99% 0.006 215);
    --color-bg-warm: oklch(96% 0.014 210);
    --color-text: oklch(20% 0.04 240);
    --color-text-muted: oklch(43% 0.035 235);
    --color-text-light: oklch(64% 0.028 230);
    
    /* Primary Sky — Trust, Openness, Travel */
    --color-sky: oklch(56% 0.145 235);
    --color-sky-light: oklch(93% 0.045 225);
    --color-sky-soft: oklch(97% 0.024 225);
    --color-sky-dark: oklch(43% 0.12 238);
    --color-sky-darker: oklch(30% 0.09 240);
    
    /* Sunrise Gold — Premium, Warm, Journey */
    --color-gold: oklch(70% 0.13 82);
    --color-gold-light: oklch(94% 0.066 88);
    --color-gold-soft: oklch(98% 0.035 88);
    --color-gold-dark: oklch(43% 0.1 70);
    --color-gold-rgb: 197, 160, 42;
    
    /* Accent Coral — Energy, Action */
    --color-coral: oklch(68% 0.18 44);
    --color-coral-soft: oklch(97% 0.035 55);
    
    /* Borders & Shadows */
    --color-border: rgba(2, 132, 199, 0.10);
    --color-border-hover: rgba(2, 132, 199, 0.25);
    --color-border-gold: rgba(197, 160, 42, 0.20);
    
    /* Typography */
    --font-display: 'Sora', system-ui, -apple-system, sans-serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    
    /* Structural */
    --container-width: 1200px;
    --container-narrow: 900px;
    --border-radius-sm: 8px;
    --border-radius-md: 8px;
    --border-radius-lg: 8px;
    --border-radius-xl: 8px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.10), 0 8px 16px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 16px 44px rgba(2, 132, 199, 0.14);
    --shadow-gold: 0 16px 44px rgba(197, 160, 42, 0.15);
    --shadow-luxury: var(--shadow-xl);
    
    /* Z-index layers */
    --z-glow: -1;
    --z-background: 0;
    --z-content: 1;
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; font-size: 16px; background-color: var(--color-bg); color: var(--color-text); }

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    background-color: var(--color-bg);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-sky-light); border-radius: 100px; border: 2px solid var(--color-bg); }
::-webkit-scrollbar-thumb:hover { background: var(--color-sky); }

::selection { background: var(--color-sky-light); color: var(--color-sky-darker); }

/* ==========================================================================
   AMBIENT GLOW & CURSOR SPOTLIGHT
   ========================================================================== */

.ambient-glow {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: var(--z-glow);
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(2, 132, 199, 0.04), transparent 70%);
    transition: opacity 0.6s ease;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, .font-serif {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); margin-bottom: 1rem; }

p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.75;
}

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

/* Text Utilities */
.text-gold {
    color: var(--color-gold-dark);
}

.text-sky { color: var(--color-sky); }

.subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-sky);
    margin-bottom: 1rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.container-narrow { max-width: var(--container-narrow); }

.section { padding: 7rem 0; position: relative; }

@media (max-width: 768px) { .section { padding: 4rem 0; } }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

@media (max-width: 1200px) { .grid-5 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================================================
   NAVIGATION — GLASSMORPHIC HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: var(--z-header);
    background: rgba(248, 250, 252, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(2, 132, 199, 0.06);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(2, 132, 199, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5.5rem;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container { height: 4.5rem; }

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    transition: var(--transition-fast);
}

.logo-link:hover { transform: scale(1.02); }

.logo-img {
    height: 4.6rem;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img { height: 3.7rem; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-item { position: relative; }

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    color: var(--color-text-muted);
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-sky);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover { color: var(--color-text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--color-text); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: var(--z-overlay);
}

.nav-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    position: relative;
    transition: var(--transition-fast);
}

.nav-toggle-icon::before, .nav-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    left: 0;
    transition: var(--transition-fast);
}

.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after { bottom: -7px; }

.nav-toggle.open .nav-toggle-icon { background: transparent; }
.nav-toggle.open .nav-toggle-icon::before { transform: rotate(45deg); top: 0; }
.nav-toggle.open .nav-toggle-icon::after { transform: rotate(-45deg); bottom: 0; }

@media (max-width: 992px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 5rem);
        background: var(--color-bg-pure);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-xl);
    }
    .header.scrolled .nav-menu { top: 4rem; height: calc(100vh - 4rem); }
    .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-link { font-size: 1.1rem; }
}

/* ==========================================================================
   BUTTONS — PREMIUM CTA SYSTEM
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-text), #1E293B);
    color: var(--color-bg-pure);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark));
    box-shadow: var(--shadow-glow), 0 8px 20px rgba(2, 132, 199, 0.2);
    transform: translateY(-2px);
}

.btn-primary:hover::before { left: 100%; }

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--color-sky);
    background: var(--color-sky-soft);
    color: var(--color-sky);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-sky);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-ghost:hover { background: var(--color-sky-soft); }

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(197, 160, 42, 0.2);
}

.btn-gold:hover {
    box-shadow: var(--shadow-gold), 0 8px 20px rgba(197, 160, 42, 0.25);
    transform: translateY(-2px);
}

/* ==========================================================================
   PREMIUM CARDS SYSTEM
   ========================================================================== */

.luxury-card {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-sky), var(--color-gold));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.luxury-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

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

/* Card Inner Glow on Hover */
.luxury-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(2, 132, 199, 0.06), transparent 70%);
    pointer-events: none;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.luxury-card:hover::after { opacity: 1; }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

.service-card {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--color-sky), var(--color-gold));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.service-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

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

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s var(--transition-bounce);
    line-height: 1;
}

.service-card:hover .service-icon { transform: scale(1.15) rotate(-3deg); }

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 700;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-sky);
    transition: var(--transition-fast);
}

.service-link:hover { gap: 0.7rem; color: var(--color-sky-dark); }

/* ==========================================================================
   FORM CONTROLS
   ========================================================================== */

.form-group { margin-bottom: 1.75rem; position: relative; }

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.6rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1.5px solid var(--color-border);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-sm);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-sky);
    background: var(--color-bg-pure);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.08), 0 1px 3px rgba(2, 132, 199, 0.1);
}

.form-input::placeholder { color: var(--color-text-light); }

/* Radio Cards */
.radio-card { position: relative; }
.radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    border: 1.5px solid var(--color-border);
    background: var(--color-bg-pure);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-fast);
}

.radio-card:hover .radio-label {
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.radio-card input[type="radio"]:checked + .radio-label {
    border-color: var(--color-sky);
    background: var(--color-sky-soft);
    color: var(--color-text);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1), var(--shadow-md);
}

/* Range Slider */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--color-border);
    outline: none;
    margin: 1.5rem 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-sky);
    cursor: pointer;
    border: 3px solid var(--color-bg-pure);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: 0 3px 12px rgba(2, 132, 199, 0.5); }

.slider-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-sky);
    position: absolute;
    right: 0;
    top: -1.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-pure) 50%, var(--color-sky-soft) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(2, 132, 199, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--color-sky);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; }

/* Globe Graphic Container */
.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.06), transparent 70%);
    pointer-events: none;
}

/* ==========================================================================
   BRAND STORY SECTION (Dark)
   ========================================================================== */

.brand-story-section {
    background: linear-gradient(165deg, #0F172A 0%, #1E293B 50%, #0C4A6E 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.brand-story-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 70%; height: 160%;
    background: radial-gradient(ellipse, rgba(2, 132, 199, 0.12), transparent 70%);
    pointer-events: none;
}

.brand-story-section::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(ellipse, rgba(197, 160, 42, 0.06), transparent 70%);
    pointer-events: none;
}

.brand-story-section .subtitle { color: var(--color-gold); }
.brand-story-section .subtitle::after { background: var(--color-gold); opacity: 0.6; }
.brand-story-section h2 { color: white; }
.brand-story-section p { color: #CBD5E1; }

.brand-promise-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.brand-promise-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--color-sky), var(--color-gold));
    opacity: 0;
    transition: var(--transition-smooth);
}

.brand-promise-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(2, 132, 199, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.brand-promise-card:hover::before { opacity: 1; }

.promise-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; line-height: 1; }

.brand-promise-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.brand-promise-card p { font-size: 0.9rem; color: #94A3B8; margin-bottom: 0; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-card {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
}

.testimonial-stars { color: var(--color-gold); font-size: 1.25rem; margin-bottom: 1.5rem; letter-spacing: 0.15em; }

.testimonial-quote {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--color-sky-light);
}

.testimonial-author h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--color-text); }
.testimonial-author .subtitle { font-size: 0.65rem; margin-bottom: 0; }
.testimonial-author .subtitle::after { display: none; }

/* ==========================================================================
   DESTINATION CARDS
   ========================================================================== */

.destination-card {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
}

.destination-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-sky);
    transition: var(--transition-fast);
}

.destination-card p { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0; transition: var(--transition-fast); }

.destination-card:hover h3 { color: var(--color-sky-dark); }
.destination-card:hover p { color: var(--color-text); }

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */

.cta-section {
    background: linear-gradient(165deg, #0F172A 0%, #1E293B 50%, #0C4A6E 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-section h2 { color: white; }
.cta-section p { color: #CBD5E1; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: #0B1120;
    color: #94A3B8;
    padding: 5rem 0 2.5rem 0;
    font-size: 0.92rem;
    border-top: 1px solid rgba(2, 132, 199, 0.08);
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 576px) {
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 3rem; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.footer-desc { font-weight: 400; line-height: 1.8; max-width: 300px; font-size: 0.9rem; }

.footer-title {
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.9rem; }
.footer-links a { color: #94A3B8; font-weight: 400; font-size: 0.9rem; transition: var(--transition-fast); display: inline-block; }
.footer-links a:hover { color: var(--color-sky); padding-left: 0.25rem; }

.footer-contact-info { color: #94A3B8; font-weight: 400; font-size: 0.9rem; }
.footer-contact-info span { color: var(--color-sky); font-weight: 600; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright { font-size: 0.82rem; font-weight: 400; color: #64748B; }

.footer-legal-links { display: flex; gap: 2rem; font-size: 0.82rem; }
.footer-legal-links a { color: #64748B; transition: var(--transition-fast); }
.footer-legal-links a:hover { color: var(--color-sky); }

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-legal-links { gap: 1.25rem; flex-wrap: wrap; }
}

/* ==========================================================================
   VISA PRODUCT PAGE STYLES
   ========================================================================== */

.visa-product-section { padding-top: 9rem; padding-bottom: 6rem; }

.product-container {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) { .product-container { padding: 1.75rem; } }

.product-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.product-back-btn:hover { color: var(--color-sky); gap: 0.75rem; }

.product-main-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 2rem; color: var(--color-text); }

.visa-type-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1.5px solid var(--color-border);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.visa-type-tab {
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    transition: var(--transition-fast);
    background: none;
    border-top: none; border-left: none; border-right: none;
    margin-bottom: -1.5px;
}

.visa-type-tab:hover { color: var(--color-sky); background: var(--color-sky-soft); border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0; }
.visa-type-tab.active { color: var(--color-sky); border-bottom-color: var(--color-sky); }

.product-sub-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-sub-tab {
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: 6px;
    border: 1.5px solid var(--color-border);
    background: var(--color-bg);
    transition: var(--transition-fast);
}

.product-sub-tab:hover { border-color: var(--color-sky); color: var(--color-sky); background: var(--color-sky-soft); }
.product-sub-tab.active { background: var(--color-sky); color: white; border-color: var(--color-sky); box-shadow: 0 2px 8px rgba(2, 132, 199, 0.2); }

.product-sub-content { display: none; }
.product-sub-content.active { display: block; }
.product-sub-content ul { margin-left: 1.5rem; }
.product-sub-content li { margin-bottom: 0.75rem; color: var(--color-text-muted); line-height: 1.7; }

.visa-type-content { display: none; }
.visa-type-content.active { display: block; animation: fadeInSlideUp 0.4s ease; }

.pricing-block {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.pricing-line { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.95rem; color: var(--color-text-muted); }
.pricing-line.total { border-top: 1px dashed var(--color-border); padding-top: 1rem; margin-top: 1rem; font-weight: 700; color: var(--color-text); font-size: 1.1rem; }

/* ==========================================================================
   TRAVEL / BOOKING SECTIONS
   ========================================================================== */

.travel-hero-section {
    padding-top: 10rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.98) 20%, rgba(248, 250, 252, 0.88) 60%, rgba(248, 250, 252, 0.5) 100%), url('scholars_university_abstract.png') no-repeat center center / cover;
}

.luxury-flight-class-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 576px) { .luxury-flight-class-selector { grid-template-columns: 1fr; } }

.flight-class-card { position: relative; cursor: pointer; }
.flight-class-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.flight-class-label {
    display: block;
    padding: 1.5rem 1rem;
    border: 1.5px solid var(--color-border);
    background: var(--color-bg-pure);
    border-radius: var(--border-radius-sm);
    text-align: center;
    transition: var(--transition-fast);
}

.flight-class-card:hover .flight-class-label { border-color: var(--color-border-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.flight-class-card input[type="radio"]:checked + .flight-class-label { border-color: var(--color-sky); background: var(--color-sky-soft); box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1), var(--shadow-md); }

.flight-class-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.25rem; }
.flight-class-desc { font-size: 0.75rem; color: var(--color-text-muted); }

.api-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid var(--color-border);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-sky);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.api-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 4px rgba(16, 185, 129, 0.3); }
}

.api-loader-container { display: none; text-align: center; padding: 3rem 1.5rem; }
.api-loader-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--color-border);
    border-top: 3px solid var(--color-sky);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    animation: spin 1s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

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

.booking-receipt {
    display: none;
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: fadeInSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.booking-receipt::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--color-sky), var(--color-gold));
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.receipt-header { border-bottom: 1px dashed var(--color-border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; text-align: center; }
.receipt-row { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 0.95rem; }
.receipt-label { color: var(--color-text-muted); }
.receipt-value { font-weight: 600; color: var(--color-text); }
.receipt-total { border-top: 1px dashed var(--color-border); padding-top: 1.5rem; margin-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.receipt-total-label { font-weight: 700; color: var(--color-text); }
.receipt-total-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-sky); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* GSAP Helper Classes */
.reveal-up { opacity: 1; }
.stagger-cards > * { opacity: 1; }

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .product-container { padding: 1.5rem; }
    .visa-type-tabs { gap: 0.25rem; }
    .visa-type-tab { padding: 0.6rem 1rem; font-size: 0.75rem; }
    .btn { padding: 0.875rem 1.75rem; }
    .form-group { margin-bottom: 1.25rem; }
}

/* ==========================================================================
   ASSESSMENT PAGE SPECIFIC
   ========================================================================== */

.assessment-hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--color-bg), var(--color-sky-soft));
}

.score-display {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.score-display::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--color-sky), var(--color-gold), var(--color-coral));
}

.score-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-sky);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.score-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-text-muted); }

.score-eligible { color: #10B981; }
.score-maybe { color: var(--color-gold); }
.score-low { color: #EF4444; }

.assessment-card {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.assessment-card:hover { box-shadow: var(--shadow-lg); border-color: var(--color-border-hover); }

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.hidden { display: none; }

/* ==========================================================================
   AVEORA 2026 BRAND REFRESH
   ========================================================================== */

.nav-cta {
    padding: 0.65rem 1.2rem;
    font-size: 0.72rem;
    margin-left: 0.5rem;
}

.btn-primary {
    background: var(--color-sky-darker);
    color: var(--color-bg-pure);
    border: 1px solid var(--color-sky-darker);
    box-shadow: 0 12px 28px rgba(12, 74, 110, 0.2);
}

.btn-primary:hover {
    background: var(--color-sky-dark);
    border-color: var(--color-sky-dark);
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.24);
}

.btn-secondary {
    background: rgba(248, 252, 255, 0.72);
    border-color: rgba(12, 74, 110, 0.14);
}

.logo-img {
    height: 5.4rem;
    max-width: 14rem;
    mix-blend-mode: normal;
}

.header.scrolled .logo-img {
    height: 4.35rem;
}

.aveora-hero {
    min-height: 92vh;
    display: grid;
    align-items: end;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(248, 252, 255, 0.97) 0%, rgba(248, 252, 255, 0.9) 44%, rgba(248, 252, 255, 0.44) 100%),
        var(--color-bg);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: saturate(1.05) contrast(1.02);
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: end;
    z-index: 1;
}

.aveora-hero h1 {
    max-width: 11ch;
    font-size: clamp(3.4rem, 8vw, 7.6rem);
    margin-bottom: 1.35rem;
}

.hero-copy {
    max-width: 62ch;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    color: var(--color-text-muted);
}

.aveora-hero .hero-content {
    max-width: 760px;
}

.journey-panel {
    background: rgba(248, 252, 255, 0.88);
    border: 1px solid rgba(2, 132, 199, 0.16);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    display: grid;
    gap: 1.5rem;
    backdrop-filter: blur(18px);
}

.journey-panel__logo {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--color-bg-pure), var(--color-sky-soft));
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
}

.journey-panel__logo img {
    width: min(78%, 250px);
    height: auto;
    object-fit: contain;
}

.journey-panel__route {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.journey-panel__route strong {
    color: var(--color-sky-dark);
    font-size: 0.82rem;
    text-align: center;
}

.journey-panel__route span {
    padding: 0.75rem;
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.journey-panel__status {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.45;
}

.status-dot {
    width: 0.7rem;
    height: 0.7rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: oklch(70% 0.16 160);
    box-shadow: 0 0 0 5px rgba(24, 183, 127, 0.12);
    margin-top: 0.35rem;
}

.brand-intro {
    background: var(--color-bg-pure);
    border-top: 1px solid var(--color-border);
}

.brand-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: start;
}

.brand-intro__copy p {
    font-size: 1.12rem;
}

.text-link {
    display: inline-flex;
    color: var(--color-sky-dark);
    font-weight: 800;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.2rem;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-heading--left {
    margin: 0;
    text-align: left;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    border: 1px solid var(--color-border);
    background: var(--color-bg-pure);
    box-shadow: var(--shadow-lg);
}

.service-tile {
    min-height: 250px;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.service-tile:hover,
.service-tile:focus-visible {
    background: var(--color-sky-soft);
    transform: translateY(-4px);
    outline: none;
}

.service-tile--featured {
    background: var(--color-sky-darker);
}

.service-tile--featured h3,
.service-tile--featured p,
.service-tile--featured .service-kicker {
    color: var(--color-bg-pure);
}

.service-kicker {
    color: var(--color-gold-dark);
    font-weight: 800;
    font-size: 0.78rem;
}

.service-tile h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 2rem 0 0.75rem;
}

.service-tile p {
    margin: 0;
    font-size: 0.94rem;
}

.process-section {
    background: linear-gradient(165deg, var(--color-sky-darker), oklch(23% 0.08 248));
}

.process-section h2,
.process-section h3 {
    color: var(--color-bg-pure);
}

.process-section p {
    color: oklch(86% 0.03 230);
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 6vw, 6rem);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.process-step {
    padding: 2rem;
    background: rgba(248, 252, 255, 0.07);
    border: 1px solid rgba(248, 252, 255, 0.14);
    border-radius: var(--border-radius-md);
}

.process-step span {
    color: var(--color-gold);
    font-weight: 800;
}

.destinations-section {
    background: var(--color-bg-pure);
}

.destination-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.destination-card {
    min-height: 160px;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, var(--color-bg-pure), var(--color-sky-soft));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--border-radius-md);
}

.destination-card strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-sky-darker);
}

.destination-card span {
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.trust-section {
    background: var(--color-bg-warm);
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: center;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--color-border);
    background: var(--color-bg-pure);
}

.trust-metrics > div {
    padding: 2rem 1.25rem;
    border-right: 1px solid var(--color-border);
}

.trust-metrics > div:last-child {
    border-right: 0;
}

.trust-metrics strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--color-sky-darker);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.trust-metrics span {
    display: block;
    color: var(--color-text-muted);
    font-weight: 800;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg-pure);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.testimonial-card p {
    color: var(--color-text);
    font-size: 1rem;
}

.testimonial-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-card span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.cta-band {
    padding: 5rem 0;
    background:
        linear-gradient(90deg, rgba(12, 74, 110, 0.9), rgba(2, 132, 199, 0.78)),
        url('luxury_office_bg.png') center / cover;
}

.cta-band__inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.cta-band h2,
.cta-band p {
    color: var(--color-bg-pure);
}

.cta-band p {
    max-width: 58ch;
    margin-bottom: 0;
}

.footer-contact-list {
    color: #94A3B8;
    font-weight: 400;
}

.footer-contact-list span {
    color: var(--color-sky);
    font-weight: 700;
}

.footer .logo-img {
    background: transparent;
    border-radius: var(--border-radius-sm);
    padding: 0;
    filter: none;
    mix-blend-mode: normal;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(2, 132, 199, 0.34);
    outline-offset: 3px;
}

@media (max-width: 992px) {
    .hero-shell,
    .brand-intro__grid,
    .process-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .journey-panel {
        max-width: 520px;
    }

    .destination-strip,
    .testimonial-grid,
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 4.4rem;
        max-width: 11rem;
    }

    .aveora-hero {
        min-height: auto;
        padding: 5.85rem 0 1.75rem;
        align-items: start;
    }

    .hero-shell {
        gap: 0;
    }

    .aveora-hero h1 {
        font-size: clamp(2.55rem, 12.5vw, 3.55rem);
        margin-bottom: 0.9rem;
    }

    .hero-tagline {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }

    .hero-copy {
        font-size: 0.98rem;
        line-height: 1.62;
        margin-bottom: 1.1rem;
    }

    .hero-ctas {
        gap: 0.7rem;
        margin-top: 1.15rem;
    }

    .hero-ctas .btn {
        min-height: 3.15rem;
    }

    .journey-panel {
        display: none;
    }

    .brand-intro {
        padding-top: 2.75rem;
        padding-bottom: 3rem;
    }

    .hero-ctas,
    .cta-band__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .journey-panel__route {
        grid-template-columns: 1fr;
    }

    .destination-strip,
    .testimonial-grid,
    .process-steps,
    .trust-metrics {
        grid-template-columns: 1fr;
    }

    .trust-metrics > div {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .trust-metrics > div:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* ==========================================================================
   SECTION DIVIDERS
   ========================================================================== */

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-sky), var(--color-gold));
    border-radius: 3px;
    margin: 1.5rem auto 2rem;
}

.section-divider-left { margin-left: 0; margin-right: auto; }

/* ==========================================================================
   BADGES & Pills
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-sky { background: var(--color-sky-soft); color: var(--color-sky); border: 1px solid var(--color-border); }
.badge-gold { background: var(--color-gold-soft); color: var(--color-gold-dark); border: 1px solid var(--color-border-gold); }
.badge-dark { background: var(--color-text); color: white; }
