/* ==========================================================================
   AERIS — Paragliding & Adventure Flights
   Design system + components
   Tokens: night / cloud / ember / sky · Syne (display) + Inter (body)
   Dark mode: [data-theme="dark"] on <html> · RTL overrides: css/rtl.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Palette */
    --night: #0A1122;
    --night-2: #0F1930;
    --night-3: #16223F;
    --cloud: #F4F7FC;
    --mist: #E9EFF8;
    --paper: #FFFFFF;
    --ink: #0D1730;
    --muted: #57617A;
    --muted-strong: #39435C;
    --line: rgba(13, 23, 48, 0.10);
    --line-dark: rgba(244, 247, 252, 0.14);
    --on-dark: rgba(244, 247, 252, 0.74);
    --on-night: #F4F7FC; /* text/icons on always-dark surfaces (hero, footer, night sections) — never remapped */

    --ember: #FF5A36;
    --ember-2: #FF8A5C;
    --ember-dark: #D63E1E;
    --sky: #3D9BFF;
    --sky-dark: #1F6FD6;

    --success: #1F9D66;
    --danger: #D64545;

    /* Type */
    --font-display: 'Syne', 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Rhythm */
    --sec: clamp(4.5rem, 9vw, 7.5rem);

    /* Shape + effects */
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --shadow-sm: 0 1px 2px rgba(10, 17, 34, 0.07);
    --shadow-md: 0 14px 34px -16px rgba(10, 17, 34, 0.22);
    --shadow-lg: 0 34px 70px -30px rgba(10, 17, 34, 0.35);
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --dur: 0.35s;

    color-scheme: light;
}

[data-theme="dark"] {
    --cloud: #0A1122;
    --mist: #0E1830;
    --paper: #121E3A;
    --ink: #ECF1FB;
    --muted: #96A2C0;
    --muted-strong: #C2CCDF;
    --line: rgba(244, 247, 252, 0.12);
    --shadow-md: 0 14px 34px -16px rgba(0, 0, 0, 0.55);
    --shadow-lg: 0 34px 70px -30px rgba(0, 0, 0, 0.65);
    color-scheme: dark;
}

/* Dark-mode control + contrast fixes.
   Bootstrap only ships a light select chevron under data-bs-theme (which we
   don't use), so we supply it ourselves; ember-dark accents are too dim on
   dark cards and move to ember-2. */
[data-theme="dark"] .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ECF1FB' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
[data-theme="dark"] .form-check-input { border-color: rgba(244, 247, 252, 0.35); }
[data-theme="dark"] .qty-stepper .btn-qty { border-color: rgba(244, 247, 252, 0.22); }
[data-theme="dark"] .eyebrow { color: var(--ember-2); }
[data-theme="dark"] .service-link,
[data-theme="dark"] .read-more,
[data-theme="dark"] .team-info span,
[data-theme="dark"] .contact-info-card a,
[data-theme="dark"] .badge-soft { color: var(--ember-2); }

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cloud);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0.005em;
    color: var(--ink);
    margin: 0 0 1rem;
}

p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.25rem; }

::selection { background: var(--ember); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--mist); }
::-webkit-scrollbar-thumb { background: #B9C4D6; border-radius: 8px; border: 3px solid var(--mist); }
::-webkit-scrollbar-thumb:hover { background: var(--ember); }

:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 4px; }

/* Skip link */
.skip-link {
    position: absolute; left: 1rem; top: -100px; z-index: 2000;
    background: var(--night); color: var(--on-night); padding: 0.75rem 1.25rem;
    border-radius: 999px; font-weight: 700; font-size: 0.85rem;
    transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--on-night); }

/* Scroll reveal (JS: IntersectionObserver adds .revealed) */
[data-reveal] {
    opacity: 0; transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container { max-width: 1220px; }

.section { padding: var(--sec) 0; position: relative; overflow: hidden; }
.section-flush { overflow: visible; }
.section-mist { background: var(--mist); }
.section-night { background: var(--night); color: var(--on-night); }
.section-night .section-title { color: var(--on-night); }
.section-night .section-description { color: var(--on-dark); }

.section-head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--ember-dark); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--ember); border-radius: 2px; }
.section-head.center .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--ember); border-radius: 2px; }
.section-night .eyebrow { color: var(--ember-2); }

.section-title { font-size: clamp(2rem, 4.6vw, 3.15rem); font-weight: 800; line-height: 1.1; }
.section-title .accent { color: var(--ember); }
.section-night .section-title .accent { color: var(--ember-2); }

.section-description { font-size: 1.06rem; color: var(--muted); margin-top: 1rem; }

.lead { font-size: 1.18rem; line-height: 1.75; color: var(--muted-strong); font-weight: 500; }

.text-muted { color: var(--muted) !important; }

.text-gradient {
    background: linear-gradient(92deg, var(--ember) 0%, var(--ember-2) 48%, var(--sky) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.9rem 1.9rem; border-radius: 999px;
    border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
        background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

.btn-ember {
    background: linear-gradient(135deg, var(--ember-2), var(--ember) 55%, var(--ember-dark));
    color: #fff;
    box-shadow: 0 14px 28px -14px rgba(255, 90, 54, 0.85);
}
.btn-ember:hover, .btn-ember:focus { color: #fff; box-shadow: 0 20px 36px -14px rgba(255, 90, 54, 0.95); }

.btn-sky {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: #fff;
    box-shadow: 0 14px 28px -14px rgba(61, 155, 255, 0.8);
}
.btn-sky:hover, .btn-sky:focus { color: #fff; box-shadow: 0 20px 36px -14px rgba(61, 155, 255, 0.9); }

.btn-outline { background: transparent; color: var(--ink); border-color: rgba(13, 23, 48, 0.28); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
[data-theme="dark"] .btn-outline { border-color: rgba(244, 247, 252, 0.3); }
[data-theme="dark"] .btn-outline:hover { border-color: var(--ink); }

.btn-ghost { background: transparent; color: var(--on-night); border-color: rgba(244, 247, 252, 0.4); }
.btn-ghost:hover { border-color: var(--on-night); color: var(--on-night); }

/* Sits on always-dark CTA bands — fixed colors so dark mode can't invert it */
.btn-light { background: #F4F7FC; color: #0A1122; border: none; }
.btn-light:hover { background: #FFFFFF; color: #0A1122; box-shadow: 0 18px 34px -20px rgba(0, 0, 0, 0.6); }

.btn-lg { padding: 1.05rem 2.3rem; font-size: 0.86rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.74rem; }

/* Keep Bootstrap utility buttons on-brand where referenced */
.btn-primary {
    background: linear-gradient(135deg, var(--ember-2), var(--ember) 55%, var(--ember-dark));
    border: none; color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--ember), var(--ember-dark));
    color: #fff;
}

/* --------------------------------------------------------------------------
   5. Preloader
   -------------------------------------------------------------------------- */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--night); display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
/* CSS-only auto-hide: even if script.js never runs, the loader clears itself */
#preloader { animation: preloaderAutoHide 0.5s ease 3s forwards; }
@keyframes preloaderAutoHide { to { opacity: 0; visibility: hidden; } }

.preloader-mark { text-align: center; }
.preloader-mark svg { width: 56px; height: 56px; color: var(--ember); animation: preGlide 2.2s ease-in-out infinite; }
.preloader-mark span {
    display: block; margin-top: 1.25rem;
    font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
    letter-spacing: 0.5em; text-transform: uppercase; color: var(--on-dark);
    animation: prePulse 2.2s ease-in-out infinite;
}
@keyframes preGlide { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-9px) rotate(-4deg); } }
@keyframes prePulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }
/* Shimmer progress line under the wordmark */
.preloader-mark::after {
    content: ""; display: block; width: 120px; height: 2px; margin: 1.4rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ember), var(--sky), var(--ember));
    background-size: 200% 100%;
    animation: preShimmer 1.3s linear infinite;
}
@keyframes preShimmer { from { background-position: 100% 0; } to { background-position: -100% 0; } }

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
#mainNav {
    padding: 1.3rem 0; background: transparent;
    transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
        transform var(--dur) var(--ease);
}
/* Smart navbar — hides scrolling down, returns scrolling up (JS toggles) */
#mainNav.nav-hidden { transform: translateY(-100%); }
#mainNav.scrolled {
    padding: 0.8rem 0;
    background: var(--paper);
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--line), 0 12px 32px -20px rgba(10, 17, 34, 0.35);
}

.navbar-brand { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0; }
.brand-mark { width: 32px; height: 32px; color: var(--ember); flex: 0 0 auto; }
.brand-text {
    font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.04em;
    color: var(--on-night); line-height: 1; transition: color var(--dur) var(--ease);
}
#mainNav.scrolled .brand-text { color: var(--ink); }

.nav-link {
    font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--on-night); padding: 0.5rem 0.9rem !important; position: relative;
}
#mainNav.scrolled .nav-link { color: var(--muted-strong); }

.nav-link::after {
    content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.1rem;
    height: 2px; border-radius: 2px; background: var(--ember);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ember-2); }
#mainNav.scrolled .nav-link:hover, #mainNav.scrolled .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 0.25rem; }

/* Custom toggler (spans, theme-safe) */
.navbar-toggler { border: none; padding: 0.45rem; box-shadow: none !important; }
.toggler-line {
    display: block; width: 26px; height: 2px; border-radius: 2px;
    background: var(--on-night); margin: 5px 0;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), opacity var(--dur);
}
#mainNav.scrolled .toggler-line { background: var(--ink); }

/* Theme toggle */
.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
    border: 1.5px solid rgba(244, 247, 252, 0.35); background: transparent; color: var(--on-night);
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.theme-toggle:hover { transform: translateY(-2px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
#mainNav.scrolled .theme-toggle { border-color: var(--line); color: var(--ink); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative; min-height: 100svh;
    display: flex; align-items: center;
    color: var(--on-night); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 26s ease-out both; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }

.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(60% 50% at 78% 18%, rgba(61, 155, 255, 0.28), transparent 70%),
        linear-gradient(180deg, rgba(10, 17, 34, 0.62) 0%, rgba(10, 17, 34, 0.30) 45%, rgba(10, 17, 34, 0.82) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 9.5rem 0 5rem; }

.hero-kicker {
    display: inline-flex; align-items: center; gap: 0.8rem;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ember-2); margin-bottom: 1.6rem;
}
.hero-kicker::before, .hero-kicker::after { content: ""; width: 40px; height: 2px; border-radius: 2px; background: var(--ember); }

.hero-title {
    font-size: clamp(2.9rem, 8vw, 5.6rem); font-weight: 800;
    line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 1.6rem; color: var(--on-night);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 400;
    color: rgba(244, 247, 252, 0.86); max-width: 640px; margin-bottom: 2.4rem;
}
.text-center .hero-subtitle { margin-left: auto; margin-right: auto; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.text-center .hero-buttons { justify-content: center; }

/* Hero quick-booking glass panel */
.hero-booking {
    margin-top: 2.8rem;
    background: rgba(244, 247, 252, 0.08);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1.1rem;
    display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 0.8rem; align-items: end;
    max-width: 880px;
}
.text-center .hero-booking { margin-left: auto; margin-right: auto; text-align: left; }
.hb-field label {
    display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(244, 247, 252, 0.6); margin-bottom: 0.35rem;
}
.hb-field .form-select, .hb-field .form-control {
    background: rgba(10, 17, 34, 0.45); border: 1px solid var(--line-dark); color: var(--on-night);
    border-radius: 12px; padding: 0.7rem 0.9rem; font-size: 0.92rem;
}
.hb-field .form-select:focus, .hb-field .form-control:focus { border-color: var(--ember); box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.22); }
/* Hero fields sit on an always-dark photo in BOTH themes — always-light chevron */
.hb-field .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23F4F7FC' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.hb-field .form-select option { color: var(--ink); }

.hero-stats { margin-top: 3.2rem; display: flex; gap: clamp(2rem, 6vw, 5rem); flex-wrap: wrap; }
.text-center .hero-stats { justify-content: center; }
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.1rem);
    color: var(--on-night); display: block; line-height: 1;
}
.stat-number .suffix { color: var(--ember-2); }
.stat-label {
    display: block; margin-top: 0.5rem; font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 247, 252, 0.6);
}

.scroll-indicator {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    text-align: center; color: var(--on-night); z-index: 2; transition: opacity var(--dur);
}
.mouse { width: 26px; height: 42px; border: 1.5px solid rgba(244, 247, 252, 0.55); border-radius: 16px; margin: 0 auto 10px; position: relative; }
.wheel { width: 3px; height: 8px; background: var(--ember-2); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s infinite; }
@keyframes scrollWheel { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(13px); } }
.scroll-indicator span { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.6; }

/* --------------------------------------------------------------------------
   8. Marquee
   -------------------------------------------------------------------------- */
.marquee {
    background: var(--night); color: var(--on-night);
    border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
    overflow: hidden; padding: 1.1rem 0;
}
.marquee-track { display: flex; align-items: center; gap: 3rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    display: inline-flex; align-items: center; gap: 3rem;
    font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.28em; text-transform: uppercase; white-space: nowrap;
}
.marquee-item svg { width: 18px; height: 18px; color: var(--ember); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   9. About / imagery
   -------------------------------------------------------------------------- */
.about-images { position: relative; }
.about-img-main { position: relative; z-index: 1; }
.about-img-main img { width: 92%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-img-secondary {
    position: absolute; bottom: -3.2rem; right: 0; width: 56%; z-index: 2;
    border: 6px solid var(--cloud); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-img-secondary img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: calc(var(--radius-lg) - 6px); }

.experience-badge {
    position: absolute; top: 2rem; left: -1.4rem; z-index: 3;
    background: linear-gradient(135deg, var(--ember-2), var(--ember) 60%, var(--ember-dark));
    color: #fff; padding: 1.5rem 1.6rem; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-lg);
}
.experience-badge .years { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; display: block; line-height: 1; }
.experience-badge .text { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; line-height: 1.35; }

.feature-list { list-style: none; margin: 2rem 0 0; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 0.9rem; font-weight: 500; color: var(--muted-strong); }
.feature-list .tick { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; color: var(--ember); }

/* --------------------------------------------------------------------------
   10. Service / feature cards
   -------------------------------------------------------------------------- */
.service-card {
    background: var(--paper); border: 1px solid var(--line);
    padding: 2.6rem 2.2rem; border-radius: var(--radius-lg); height: 100%; position: relative;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-icon {
    width: 62px; height: 62px; border-radius: 18px;
    background: rgba(255, 90, 54, 0.12); color: var(--ember);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.6rem;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { background: var(--night); color: var(--ember-2); }

.service-card h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.service-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 1.4rem; }

.service-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ember-dark);
}
.service-link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.service-link:hover { color: var(--ink); }
.service-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   11. Process steps
   -------------------------------------------------------------------------- */
.process-steps { counter-reset: step; }
.step-item { position: relative; padding: 2rem 1.6rem 0; text-align: center; }
.step-num {
    counter-increment: step; position: relative; z-index: 1;
    width: 74px; height: 74px; margin: 0 auto 1.4rem; border-radius: 50%;
    background: var(--paper); border: 1.5px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ember);
    box-shadow: var(--shadow-md);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step-num::before { content: counter(step, decimal-leading-zero); }
.step-item:hover .step-num { background: var(--night); color: var(--ember-2); transform: translateY(-4px); }
.step-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-item p { color: var(--muted); font-size: 0.94rem; margin: 0; }
@media (min-width: 992px) {
    .step-item:not(:last-child)::after {
        content: ""; position: absolute; top: 57px; left: calc(50% + 52px); width: calc(100% - 104px);
        border-top: 2px dashed rgba(13, 23, 48, 0.18);
    }
    [data-theme="dark"] .step-item:not(:last-child)::after { border-color: rgba(244, 247, 252, 0.18); }
}

/* --------------------------------------------------------------------------
   12. Destinations
   -------------------------------------------------------------------------- */
.destinations-slider { padding: 2.2rem 0.5rem 3.4rem; }

.destination-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 480px; }
.destination-img { width: 100%; height: 100%; }
.destination-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.destination-card:hover .destination-img img { transform: scale(1.07); }

.destination-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem; color: var(--on-night);
    background: linear-gradient(180deg, transparent 30%, rgba(10, 17, 34, 0.92) 100%);
}
.destination-overlay h3 { color: var(--on-night); font-size: 1.7rem; margin-bottom: 0.25rem; }
.destination-overlay p { color: var(--on-dark); margin-bottom: 1.2rem; }
.destination-overlay .btn { align-self: flex-start; }

.chip {
    display: inline-block; padding: 0.28rem 0.8rem; border-radius: 999px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.chip-ember { background: var(--ember); color: #fff; }
.chip-night { background: var(--night); color: var(--on-night); }
.chip-sky { background: var(--sky); color: #fff; }
.chip-open { background: var(--success); color: #fff; }
.chip-season { background: var(--ember-dark); color: #fff; }
.destination-tag { align-self: flex-start; margin-bottom: 0.9rem; }

/* Swiper theming */
.swiper-pagination-bullet { width: 9px; height: 9px; background: var(--ember); opacity: 0.35; transition: opacity var(--dur), width var(--dur); }
.swiper-pagination-bullet-active { opacity: 1; width: 26px; border-radius: 6px; }
.swiper-button-next, .swiper-button-prev {
    color: var(--ink); background: var(--paper); width: 48px; height: 48px; border-radius: 50%;
    box-shadow: var(--shadow-md); transition: background var(--dur), color var(--dur), transform var(--dur);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem; font-weight: 700; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--night); color: var(--ember-2); transform: scale(1.06); }

/* Destination grid card (destinations page) */
.dest-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; height: 100%; display: flex; flex-direction: column;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card-img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dest-card:hover .dest-card-img img { transform: scale(1.07); }
.dest-badges { position: absolute; top: 1rem; left: 1rem; right: 1rem; display: flex; justify-content: space-between; }
.dest-card-body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.dest-card-body h4 { font-size: 1.3rem; margin-bottom: 0.15rem; }
.dest-card-body .region { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.1rem; }
.dest-stats { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 1.1rem; }
.dest-stat { flex: 1; text-align: center; padding: 0.85rem 0.4rem; }
.dest-stat + .dest-stat { border-left: 1px solid var(--line); }
.dest-stat svg { width: 18px; height: 18px; color: var(--ember); margin-bottom: 0.3rem; }
.dest-stat b { display: block; font-size: 0.9rem; }
.dest-stat span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.dest-card-body .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   13. Why us / floating card / accordion
   -------------------------------------------------------------------------- */
.why-us-image { position: relative; }
.why-us-image > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }

.floating-card {
    position: absolute; bottom: 2rem; left: -1.4rem;
    background: var(--paper); padding: 1.2rem 1.4rem; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.9rem;
    animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.card-icon {
    width: 46px; height: 46px; border-radius: 12px; background: var(--night); color: var(--ember-2);
    display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.card-icon svg { width: 22px; height: 22px; }
.card-content { display: flex; flex-direction: column; }
.rating { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; line-height: 1; color: var(--ink); }
.reviews { font-size: 0.8rem; color: var(--muted); }

.accordion-item {
    border: 1px solid var(--line) !important; background: var(--paper);
    margin-bottom: 0.9rem; border-radius: var(--radius) !important; overflow: hidden;
}
.accordion-button {
    padding: 1.3rem 1.5rem; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
    color: var(--ink); background: var(--paper); box-shadow: none !important;
}
.accordion-button:not(.collapsed) { background: var(--night); color: var(--on-night); }
.accordion-button:focus { box-shadow: none !important; }
.accordion-button svg { width: 20px; height: 20px; color: var(--ember); margin-right: 0.75rem; flex: 0 0 auto; }
.accordion-button:not(.collapsed) svg { color: var(--ember-2); }
.accordion-button::after {
    content: "+"; background: none; width: auto; height: auto;
    font-family: var(--font-body); font-size: 1.5rem; font-weight: 400; line-height: 1;
    color: var(--ember); display: flex; align-items: center; justify-content: center;
}
.accordion-button:not(.collapsed)::after { content: "–"; color: var(--ember-2); transform: none; }
.accordion-body { padding: 1.2rem 1.5rem 1.5rem; color: var(--muted); background: var(--paper); }

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.testimonial-card {
    background: var(--night-2); border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg); padding: 2.4rem; height: 100%;
}
.testimonial-rating { color: var(--ember-2); margin-bottom: 1.3rem; display: flex; gap: 0.2rem; }
.testimonial-rating svg { width: 17px; height: 17px; }
.testimonial-text { font-size: 1.08rem; line-height: 1.75; color: var(--on-night); margin-bottom: 1.8rem; font-weight: 500; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.author-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ember); flex: 0 0 auto; }
.author-info h4 { color: var(--on-night); font-size: 1rem; margin-bottom: 0.1rem; }
.author-info span { font-size: 0.82rem; color: var(--on-dark); }

/* --------------------------------------------------------------------------
   15. CTA band
   -------------------------------------------------------------------------- */
.cta-box {
    position: relative; overflow: hidden;
    background: var(--night); color: var(--on-night);
    border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 4.5rem);
    box-shadow: var(--shadow-lg);
}
.cta-box::before {
    content: ""; position: absolute; top: -60%; right: -12%;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 54, 0.28), transparent 70%);
}
.cta-box::after {
    content: ""; position: absolute; bottom: -70%; left: -10%;
    width: 460px; height: 460px; border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 155, 255, 0.22), transparent 70%);
}
.cta-box h2 { color: var(--on-night); font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 0.9rem; position: relative; z-index: 1; }
.cta-box p { color: var(--on-dark); font-size: 1.06rem; margin: 0; position: relative; z-index: 1; }
.cta-box .btn { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   16. Gallery strip + gallery + filters
   -------------------------------------------------------------------------- */
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.instagram-item { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.instagram-overlay {
    position: absolute; inset: 0; background: rgba(10, 17, 34, 0.55);
    display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--dur) var(--ease);
}
.instagram-overlay svg { width: 26px; height: 26px; color: var(--on-night); transform: scale(0.6); transition: transform var(--dur) var(--ease); }
.instagram-item:hover img { transform: scale(1.08); }
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-item:hover .instagram-overlay svg { transform: scale(1); }

.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(10, 17, 34, 0.5);
    display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--dur) var(--ease);
}
.gallery-overlay svg { width: 30px; height: 30px; color: var(--on-night); transform: scale(0.6); transition: transform var(--dur) var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay svg { transform: scale(1); }

.filter-bar { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.filter-btn {
    background: transparent; color: var(--muted-strong);
    border: 1.5px solid rgba(13, 23, 48, 0.2); border-radius: 999px;
    padding: 0.6rem 1.4rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
    transition: all var(--dur) var(--ease);
}
[data-theme="dark"] .filter-btn { border-color: rgba(244, 247, 252, 0.22); }
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--night); color: var(--on-night); border-color: var(--night); }

.filter-item { transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--night); color: var(--on-night); }
.footer-top { padding: clamp(4rem, 7vw, 6rem) 0 3rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem; }
.footer-brand .brand-text { color: var(--on-night); }
.footer-brand .brand-mark { color: var(--ember); }
.footer-widget > span.title, .footer-widget h4 {
    display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
    color: var(--on-night); margin-bottom: 1.3rem;
}
.footer-widget p { color: var(--on-dark); font-size: 0.95rem; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 0.7rem; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark);
    display: flex; align-items: center; justify-content: center; color: var(--on-night);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover { background: var(--ember); border-color: var(--ember); color: #fff; transform: translateY(-3px); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: var(--on-dark); font-size: 0.94rem; transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.footer-links a:hover { color: var(--ember-2); padding-left: 5px; }

.newsletter-form .input-group { background: var(--night-2); border: 1px solid var(--line-dark); border-radius: 999px; padding: 0.35rem; }
.newsletter-form .form-control { background: transparent; border: none; color: var(--on-night); padding: 0.65rem 1.1rem; box-shadow: none; }
.newsletter-form .form-control::placeholder { color: rgba(244, 247, 252, 0.4); }
.newsletter-form .form-control:focus { background: transparent; color: var(--on-night); }

.contact-info p { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.6rem; font-size: 0.92rem; color: var(--on-dark); }
.contact-info svg { width: 17px; height: 17px; color: var(--ember); flex: 0 0 auto; }

.footer-bottom { border-top: 1px solid var(--line-dark); padding: 1.7rem 0; }
.footer-bottom-links { list-style: none; display: flex; gap: 1.8rem; justify-content: flex-end; margin: 0; padding: 0; }
.footer-bottom-links a { color: rgba(244, 247, 252, 0.55); font-size: 0.86rem; }
.footer-bottom-links a:hover { color: var(--ember-2); }

/* --------------------------------------------------------------------------
   18. Modal + lightbox
   -------------------------------------------------------------------------- */
.modal-content { border: none; border-radius: var(--radius-lg); background: var(--paper); color: var(--ink); }
.success-icon {
    width: 82px; height: 82px; border-radius: 50%;
    background: linear-gradient(135deg, var(--ember-2), var(--ember-dark)); color: #fff;
    display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.success-icon svg { width: 40px; height: 40px; }
.lightbox-img { border-radius: var(--radius-lg); }

/* --------------------------------------------------------------------------
   18b. Scroll progress bar (injected by JS — pages need no markup)
   -------------------------------------------------------------------------- */
.scroll-progress {
    position: fixed; top: 0; left: 0; z-index: 1200;
    width: 0; height: 3px; pointer-events: none;
    background: linear-gradient(90deg, var(--ember), var(--sky));
    transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   19. Back to top
   -------------------------------------------------------------------------- */
.btn-back-to-top {
    position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; border-radius: 50%;
    background: var(--night); color: var(--ember-2); border: none; z-index: 900;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur);
}
.btn-back-to-top svg { width: 20px; height: 20px; }
.btn-back-to-top.visible { opacity: 1; visibility: visible; }
.btn-back-to-top:hover { transform: translateY(-4px); background: var(--ember-dark); color: #fff; }

/* --------------------------------------------------------------------------
   20. Cookie banner
   -------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
    background: var(--night); color: var(--on-night);
    border-top: 1px solid var(--line-dark);
    padding: 1rem 0; box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}
.cookie-banner p { color: var(--on-dark); }

/* --------------------------------------------------------------------------
   21. Forms
   -------------------------------------------------------------------------- */
.form-control, .form-select {
    border-radius: 12px; padding: 0.8rem 1rem; border: 1.5px solid rgba(13, 23, 48, 0.16);
    font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: var(--paper);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
[data-theme="dark"] .form-control, [data-theme="dark"] .form-select { border-color: rgba(244, 247, 252, 0.18); }
.form-control:focus, .form-select:focus { border-color: var(--ember); box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.18); background: var(--paper); color: var(--ink); }
.form-control::placeholder { color: #9AA5B8; }
.form-label { font-weight: 700; font-size: 0.86rem; color: var(--ink); margin-bottom: 0.45rem; }
.form-check-input { border: 1.5px solid rgba(13, 23, 48, 0.3); background-color: var(--paper); }
.form-check-input:checked { background-color: var(--ember); border-color: var(--ember); }
.form-check-input:focus { box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.18); border-color: var(--ember); }
.invalid-feedback { font-size: 0.8rem; }

.booking-form {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--radius-xl); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-md);
}

/* Radio/checkbox option cards */
.form-check-card {
    padding: 1rem 1.1rem; border-radius: 14px; height: 100%;
    border: 1.5px solid rgba(13, 23, 48, 0.16) !important;
    cursor: pointer; transition: all var(--dur) var(--ease); background: var(--paper);
}
[data-theme="dark"] .form-check-card { border-color: rgba(244, 247, 252, 0.18) !important; }
.form-check-card:hover { border-color: var(--ember) !important; }
.form-check-card .form-check-input { margin-top: 0.3rem; }
.form-check-card:has(input:checked) { border-color: var(--ember) !important; background: rgba(255, 90, 54, 0.07); }

/* Quantity stepper */
.qty-stepper { display: flex; align-items: stretch; }
.qty-stepper .btn-qty {
    width: 46px; border: 1.5px solid rgba(13, 23, 48, 0.16); background: var(--paper); color: var(--ink);
    font-size: 1.2rem; font-weight: 600; cursor: pointer; transition: all var(--dur) var(--ease);
}
.qty-stepper .btn-qty:first-child { border-radius: 12px 0 0 12px; border-right: none; }
.qty-stepper .btn-qty:last-child { border-radius: 0 12px 12px 0; border-left: none; }
.qty-stepper .btn-qty:hover { background: var(--night); color: var(--ember-2); }
.qty-stepper .form-control { border-radius: 0; text-align: center; border-left: none; border-right: none; }

/* --------------------------------------------------------------------------
   22. Booking steps + summary
   -------------------------------------------------------------------------- */
.booking-progress { display: flex; align-items: center; margin-bottom: 2.4rem; }
.bp-step { display: flex; align-items: center; gap: 0.7rem; flex: 0 0 auto; }
.bp-dot {
    width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
    border: 2px solid var(--line); background: var(--paper); color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1rem;
    transition: all var(--dur) var(--ease);
}
.bp-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.bp-line { flex: 1; height: 2px; background: var(--line); margin: 0 1rem; position: relative; overflow: hidden; }
.bp-line::after { content: ""; position: absolute; inset: 0; background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.bp-step.active .bp-dot { border-color: var(--ember); color: var(--ember); }
.bp-step.done .bp-dot { background: var(--ember); border-color: var(--ember); color: #fff; }
.bp-step.active .bp-label, .bp-step.done .bp-label { color: var(--ink); }
.bp-line.done::after { transform: scaleX(1); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeInUp 0.45s var(--ease); }

.booking-summary { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-md); }
.booking-summary .bs-head { background: var(--night); color: var(--on-night); padding: 1.1rem 1.4rem; }
.booking-summary .bs-head h4 { color: var(--on-night); margin: 0; display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; }
.booking-summary .bs-head svg { width: 20px; height: 20px; color: var(--ember-2); }
.booking-summary .bs-body { padding: 1.4rem; }
.bs-line { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; font-size: 0.94rem; }
.bs-line.total { border-top: 1px solid var(--line); margin-top: 0.6rem; padding-top: 1rem; }
.bs-line.total .amount { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ember); }
.bs-foot { background: var(--mist); padding: 0.9rem 1.4rem; font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.bs-foot svg { width: 16px; height: 16px; color: var(--success); flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   23. Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
    position: relative; padding: 11rem 0 5rem; text-align: center; color: var(--on-night);
    background:
        linear-gradient(180deg, rgba(10, 17, 34, 0.66), rgba(10, 17, 34, 0.78)),
        var(--ph-img, url('../images/aeris-tandem-alps.jpg')) center / cover no-repeat;
}
.page-header h1 { color: var(--on-night); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800; margin-bottom: 0.9rem; }
.page-header .eyebrow { justify-content: center; color: var(--ember-2); }
.breadcrumb { background: transparent; justify-content: center; margin: 0; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(244, 247, 252, 0.75); font-size: 0.9rem; }
.breadcrumb-item a:hover { color: var(--ember-2); }
.breadcrumb-item.active { color: var(--ember-2); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(244, 247, 252, 0.4); }

/* --------------------------------------------------------------------------
   24. Team cards
   -------------------------------------------------------------------------- */
.team-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-social {
    position: absolute; inset: auto 0 0 0; display: flex; justify-content: center; gap: 0.5rem;
    padding: 1rem; background: linear-gradient(180deg, transparent, rgba(10, 17, 34, 0.85));
    transform: translateY(110%); transition: transform var(--dur) var(--ease);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a { width: 36px; height: 36px; border-radius: 50%; background: #F4F7FC; color: #0A1122; display: flex; align-items: center; justify-content: center; }
.team-social a svg { width: 16px; height: 16px; }
.team-social a:hover { background: var(--ember); color: #fff; }
.team-info { padding: 1.6rem; text-align: center; }
.team-info h4 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.team-info span { color: var(--ember-dark); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.team-info p { color: var(--muted); font-size: 0.88rem; margin: 0.6rem 0 0; }

/* --------------------------------------------------------------------------
   25. Pricing cards
   -------------------------------------------------------------------------- */
.pricing-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 2.6rem 2.2rem; text-align: center; position: relative; overflow: hidden; height: 100%;
    display: flex; flex-direction: column;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--ember); box-shadow: var(--shadow-md); }
.pricing-card.featured .ribbon {
    position: absolute; top: 20px; right: -44px; transform: rotate(45deg);
    background: var(--night); color: var(--ember-2); font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase; padding: 0.45rem 3.2rem;
}
.pricing-header { margin-bottom: 1.8rem; }
.pricing-header h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.pricing-price { font-family: var(--font-display); font-weight: 800; font-size: 2.9rem; line-height: 1; color: var(--ink); }
.pricing-price span { font-family: var(--font-body); font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.pricing-features { list-style: none; margin: 0 0 1.8rem; padding: 0; text-align: left; }
.pricing-features li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.6rem 0; border-bottom: 1px solid var(--line); color: var(--muted-strong); font-size: 0.94rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .tick { width: 18px; height: 18px; color: var(--ember); flex: 0 0 auto; margin-top: 2px; }
.pricing-card .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   26. Blog cards
   -------------------------------------------------------------------------- */
.blog-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; height: 100%; display: flex; flex-direction: column;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-category {
    position: absolute; top: 1rem; left: 1rem; background: var(--ember); color: #fff;
    padding: 0.3rem 0.9rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.blog-content { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 1.1rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.9rem; }
.blog-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.blog-meta svg { width: 14px; height: 14px; color: var(--ember); }
.blog-content h3 { font-size: 1.28rem; line-height: 1.3; margin-bottom: 0.8rem; }
.blog-content p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
.read-more { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ember-dark); margin-top: auto; }
.read-more svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.read-more:hover { color: var(--ink); }
.read-more:hover svg { transform: translateX(4px); }

.featured-post { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.featured-post img.cover { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }

/* Blog single */
.post-content h2 { font-size: 1.7rem; margin: 2.2rem 0 1rem; }
.post-content h3 { font-size: 1.35rem; margin: 2rem 0 0.9rem; }
.post-content p, .post-content li { color: var(--muted-strong); }
.post-content blockquote {
    border-left: 3px solid var(--ember); background: var(--mist);
    padding: 1.4rem 1.6rem; border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin: 2rem 0;
}
.post-content img { border-radius: var(--radius-lg); margin: 1.6rem 0; }

/* Pagination */
.pagination { gap: 0.4rem; }
.page-link { border: 1px solid var(--line); border-radius: 10px !important; color: var(--ink); background: var(--paper); padding: 0.6rem 1rem; }
.page-item.active .page-link { background: var(--night); border-color: var(--night); color: var(--ember-2); }
.page-link:hover { background: var(--mist); color: var(--ink); }

/* --------------------------------------------------------------------------
   27. Contact page
   -------------------------------------------------------------------------- */
.contact-info-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 2.2rem; text-align: center; height: 100%;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-icon {
    width: 64px; height: 64px; border-radius: 18px; background: rgba(255, 90, 54, 0.12); color: var(--ember);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem;
}
.contact-icon svg { width: 30px; height: 30px; }
.contact-info-card h4 { margin-bottom: 0.5rem; }
.contact-info-card p { color: var(--muted); margin: 0; line-height: 1.8; }
.contact-info-card a { color: var(--ember-dark); font-weight: 600; }
.contact-info-card a:hover { color: var(--ink); }

.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 460px; }
.map-container iframe { display: block; width: 100%; height: 100%; min-height: 460px; border: 0; }

/* --------------------------------------------------------------------------
   28. Misc / utility
   -------------------------------------------------------------------------- */
.icon-check { width: 18px; height: 18px; color: var(--ember); flex: 0 0 auto; }

.table { --bs-table-bg: transparent; color: var(--ink); }
.table thead th { background: var(--night); color: var(--on-night); font-weight: 700; letter-spacing: 0.05em; border: none; }
.table tbody td { border-color: var(--line); vertical-align: middle; }
.table-hover tbody tr:hover { background: rgba(255, 90, 54, 0.06); }

.alert { border-radius: 14px; }
.alert-info { background: rgba(61, 155, 255, 0.1); border: 1px solid rgba(61, 155, 255, 0.35); color: var(--muted-strong); }

.badge-soft { background: rgba(255, 90, 54, 0.12); color: var(--ember-dark); border-radius: 999px; padding: 0.3rem 0.9rem; font-size: 0.75rem; font-weight: 700; }

/* --------------------------------------------------------------------------
   29. 404
   -------------------------------------------------------------------------- */
.error-page { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; background: var(--night); color: var(--on-night); }
.error-code { font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 20vw, 12rem); line-height: 1; color: var(--ember-2); }
.error-page h2 { color: var(--on-night); font-size: clamp(1.6rem, 4vw, 2.4rem); }
.error-page p { color: var(--on-dark); max-width: 480px; margin: 0 auto 2rem; }

/* --------------------------------------------------------------------------
   30. Animation utilities
   -------------------------------------------------------------------------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-fadeInUp { animation: fadeInUp 0.7s var(--ease) forwards; }

/* --------------------------------------------------------------------------
   30b. Milestones (about timeline)
   -------------------------------------------------------------------------- */
.milestone {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 2rem 1.8rem; height: 100%; position: relative; overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.milestone:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.milestone::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ember), var(--sky));
}
.milestone-year {
    display: block; font-family: var(--font-display); font-weight: 800;
    font-size: 2rem; color: var(--ember); line-height: 1; margin-bottom: 0.9rem;
}
.milestone h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.milestone p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------------
   31. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
    .section { padding: 4.5rem 0; }
    .about-img-secondary { position: relative; bottom: 0; right: 0; width: 100%; margin-top: 1rem; }
    .about-img-main img { width: 100%; }
    .experience-badge { left: 1rem; top: 1rem; }
    .floating-card { left: 1rem; bottom: 1rem; }
    .why-us-image > img { aspect-ratio: 16/11; }
    .cta-box { text-align: center; }
    .footer-bottom-links { justify-content: center; margin-top: 0.8rem; flex-wrap: wrap; }

    .hero-booking { grid-template-columns: 1fr 1fr; }
    .hero-booking .btn { grid-column: 1 / -1; }

    .navbar-collapse {
        background: var(--night); border-radius: var(--radius); padding: 1rem 1.25rem;
        margin-top: 0.75rem; border: 1px solid var(--line-dark);
    }
    #mainNav.scrolled .navbar-collapse { background: var(--night); }
    .navbar-nav .nav-item { padding: 0.25rem 0; }
    .navbar-nav .btn { margin-top: 0.5rem; width: 100%; }
    #mainNav.scrolled .nav-link { color: var(--on-night); }
    #mainNav.scrolled .nav-link:hover, #mainNav.scrolled .nav-link.active { color: var(--ember-2); }
    #mainNav .theme-toggle { border-color: rgba(244, 247, 252, 0.35); color: var(--on-night); }

    .booking-progress { flex-wrap: wrap; gap: 0.8rem; }
    .bp-line { display: none; }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2.7rem; }
    .stat-number { font-size: 2.1rem; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .destination-card { height: 400px; }
    .cta-box { padding: 2.2rem; }
    .footer-bottom { text-align: center; }
    .page-header { padding: 9rem 0 3.5rem; }
    .hero-booking { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { gap: 1.6rem; }
    .testimonial-card { padding: 1.8rem; }
    .booking-form { padding: 1.5rem; }
    .section-title { font-size: 1.9rem; }
}

/* --------------------------------------------------------------------------
   32. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .hero-bg img { animation: none; }
    .marquee-track { animation: none; }
    [data-reveal] { opacity: 1; transform: none; }
}
