/*
Theme Name: Aeronai Aviation
Theme URI: https://aeronai.aero
Author: Aeronai Aviation Ltd
Author URI: https://aeronai.aero
Description: Ultra-luxury aviation theme — Deep Navy × Liquid Gold. AI-powered charter, fleet management, MRO, training, finance and consulting for the world's most discerning aviation clients.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://aeronai.aero/license
Text Domain: aeronai-aviation
Tags: aviation, luxury, dark, gold, full-width-template, custom-header, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   AERONAI AVIATION — DESIGN TOKEN SYSTEM
   Deep Navy #040d1e × Liquid Gold #e4b23e
   ============================================================ */

:root {
    /* Navy scale */
    --navy-0:        #040d1e;
    --navy-1:        #0a1428;
    --navy-2:        #0f1c36;
    --navy-3:        #162240;
    --navy-4:        #1e2d50;
    --navy-5:        #253660;

    /* Gold scale */
    --gold-primary:  #e4b23e;
    --gold-light:    #f5cc6a;
    --gold-lighter:  #fde8a0;
    --gold-dark:     #b88a24;
    --gold-darker:   #8a6418;
    --gold-glow:     rgba(228,178,62,.15);
    --gold-glow-sm:  rgba(228,178,62,.07);

    /* Neutrals */
    --white:         #ffffff;
    --w95:           rgba(255,255,255,.95);
    --w85:           rgba(255,255,255,.85);
    --w70:           rgba(255,255,255,.70);
    --w60:           rgba(255,255,255,.60);
    --w40:           rgba(255,255,255,.40);
    --w30:           rgba(255,255,255,.30);
    --w15:           rgba(255,255,255,.15);
    --w10:           rgba(255,255,255,.10);
    --w06:           rgba(255,255,255,.06);

    /* Status */
    --success:       rgba(52,211,153,.9);
    --warning:       rgba(251,191,36,.9);
    --danger:        rgba(248,113,113,.9);

    /* Typography */
    --font-display:  'Cormorant Garamond', 'Didot', 'Palatino Linotype', serif;
    --font-ui:       'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --font-mono:     'Courier New', Courier, monospace;

    /* Spacing */
    --radius-xs:     4px;
    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     24px;
    --radius-xl:     40px;
    --radius-pill:   100px;

    /* Transitions */
    --ease-luxury:   cubic-bezier(.22,.61,.36,1);
    --ease-spring:   cubic-bezier(.34,1.56,.64,1);
    --ease-smooth:   cubic-bezier(.4,0,.2,1);
    --t-fast:        .18s;
    --t-mid:         .35s;
    --t-slow:        .7s;
}

/* ── GLOBAL RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--navy-0);
    color: var(--w85);
    font-family: var(--font-ui);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-ui); }
input, select, textarea { font-family: var(--font-ui); }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--navy-1); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* Selection */
::selection { background: rgba(228,178,62,.25); color: var(--gold-light); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container     { max-width: 1380px; margin: 0 auto; padding: 0 2rem; }
.container--sm { max-width: 900px;  margin: 0 auto; padding: 0 2rem; }
.container--xs { max-width: 680px;  margin: 0 auto; padding: 0 2rem; }
.section       { padding: 8rem 2rem; position: relative; }
.section--alt  { background: var(--navy-2); }
.section--dark { background: var(--navy-0); }
.section--mid  { background: var(--navy-1); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-ui); font-size: .72rem; font-weight: 600;
    letter-spacing: .28em; text-transform: uppercase; color: var(--gold-primary);
    margin-bottom: 1.2rem;
}
.eyebrow::before, .eyebrow::after {
    content: ''; display: block;
    width: 28px; height: 1px;
    background: var(--gold-primary); opacity: .55;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 1.2rem;
}
.section-heading em { font-style: italic; color: var(--gold-primary); }

.section-sub {
    font-size: 1rem; color: var(--w60); line-height: 1.8; max-width: 52ch;
}

.section-header-center { text-align: center; margin-bottom: 5rem; }
.section-header-center .section-sub { margin: 0 auto; }

.gold-rule {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 1.5rem 0;
}
.gold-rule--center { margin: 1.5rem auto; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-ui); font-size: .78rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    padding: .9rem 2.2rem; border-radius: var(--radius-pill);
    cursor: pointer; border: none; white-space: nowrap;
    transition: all var(--t-mid) var(--ease-luxury);
}
.btn--gold {
    background: var(--gold-primary); color: var(--navy-1);
    box-shadow: 0 6px 28px rgba(228,178,62,.22);
}
.btn--gold:hover {
    background: var(--gold-light); transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(228,178,62,.4); color: var(--navy-1);
}
.btn--outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(228,178,62,.45);
}
.btn--outline:hover {
    border-color: var(--gold-primary);
    background: var(--gold-glow); color: var(--gold-light);
}
.btn--ghost {
    background: transparent; color: var(--gold-primary);
    border: none; padding-left: 0; padding-right: 0;
    letter-spacing: .14em;
}
.btn--ghost:hover { color: var(--gold-light); gap: .8rem; }
.btn--navy {
    background: var(--navy-1); color: var(--white); border: none;
}
.btn--navy:hover {
    background: var(--navy-3); transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.btn--navy-outline {
    background: transparent; color: var(--navy-1);
    border: 2px solid var(--navy-1);
}
.btn--navy-outline:hover { background: var(--navy-1); color: var(--white); }
.btn--danger {
    background: rgba(239,68,68,.15); color: #fca5a5;
    border: 1px solid rgba(239,68,68,.3);
}
.btn--danger:hover { background: rgba(239,68,68,.25); }
.btn--sm  { padding: .6rem 1.5rem;  font-size: .7rem; }
.btn--md  { padding: .8rem 2rem;    font-size: .78rem; }
.btn--lg  { padding: 1.1rem 3rem;   font-size: .85rem; }
.btn--xl  { padding: 1.3rem 3.5rem; font-size: .9rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--icon { padding: .9rem; border-radius: 50%; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-label {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold-primary); font-weight: 600;
}
.form-input, .form-select, .form-textarea {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(228,178,62,.15);
    border-radius: var(--radius-sm);
    padding: .9rem 1.1rem;
    font-family: var(--font-ui); font-size: .9rem;
    color: var(--white); outline: none; width: 100%;
    transition: border-color var(--t-fast), background var(--t-fast);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--w30); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold-primary); background: rgba(228,178,62,.04);
}
.form-select option { background: var(--navy-2); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
    background: var(--navy-1);
    border: 1px solid rgba(228,178,62,.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--t-mid) var(--ease-luxury);
}
.card:hover {
    border-color: rgba(228,178,62,.35);
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.card--glass {
    background: rgba(10,20,40,.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.card--gold-border {
    border: 1px solid rgba(228,178,62,.3);
}

/* ── BADGE / TAG ─────────────────────────────────────────── */
.badge {
    display: inline-block;
    font-size: .6rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: var(--radius-pill);
}
.badge--gold  { background: var(--gold-primary); color: var(--navy-1); }
.badge--navy  { background: rgba(228,178,62,.12); color: var(--gold-primary); border: 1px solid rgba(228,178,62,.25); }
.badge--green { background: rgba(52,211,153,.12); color: var(--success); border: 1px solid rgba(52,211,153,.25); }
.badge--pulse { animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,.4); }
    50%      { box-shadow: 0 0 0 6px rgba(52,211,153,.0); }
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity var(--t-slow) var(--ease-luxury),
                transform var(--t-slow) var(--ease-luxury);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--left.visible, .reveal--right.visible { transform: translateX(0); }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; } .rd4 { transition-delay: .4s; }
.rd5 { transition-delay: .5s; } .rd6 { transition-delay: .6s; }

/* ── DIVIDERS ────────────────────────────────────────────── */
.divider-gold {
    display: flex; align-items: center; gap: 0; padding: 0 3rem;
}
.divider-gold__line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(228,178,62,.3), rgba(228,178,62,.1));
}
.divider-gold__line:last-child {
    background: linear-gradient(90deg, rgba(228,178,62,.1), rgba(228,178,62,.3), transparent);
}
.divider-gold__diamond {
    padding: 0 12px; display: flex; align-items: center;
}

/* ── UTILITIES ───────────────────────────────────────────── */
.text-gold   { color: var(--gold-primary); }
.text-muted  { color: var(--w60); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.mb-3  { margin-bottom: 3rem; }
.pt-0  { padding-top: 0; }
.pb-0  { padding-bottom: 0; }
.d-flex     { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; } .gap-2 { gap: 2rem; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.wp-block-image img { border-radius: var(--radius-md); }

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem; height: 80px;
    display: flex; align-items: center;
    background: transparent;
    transition: background var(--t-mid), height var(--t-fast),
                backdrop-filter var(--t-mid), box-shadow var(--t-mid);
}
.site-nav.scrolled {
    background: rgba(6,12,28,.96);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(228,178,62,.1), 0 4px 32px rgba(0,0,0,.4);
    height: 68px;
}
.nav-container {
    width: 100%; max-width: 1380px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}

/* Logo */
.logo {
    display: flex; align-items: center; gap: 14px;
    flex-shrink: 0; cursor: pointer;
}
.logo-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(228,178,62,.22));
    transition: transform .6s var(--ease-spring), filter var(--t-mid);
}
.logo:hover .logo-icon {
    transform: rotate(45deg);
    filter: drop-shadow(0 0 14px rgba(228,178,62,.55));
}
.logo-text { display: flex; flex-direction: column; gap: 3px; }
.logo-main {
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    letter-spacing: 6px; line-height: 1; text-transform: uppercase;
    background: linear-gradient(135deg,#c8941e 0%,#f5d978 28%,#e4b23e 52%,#f5d472 74%,#b8821a 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-sub {
    font-family: var(--font-ui); font-size: 8px; font-weight: 300;
    letter-spacing: 6px; color: rgba(228,178,62,.45); text-transform: uppercase;
}

/* Nav menu */
.nav-menu {
    display: flex; align-items: center; gap: 2rem; margin-left: auto;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    font-family: var(--font-ui); font-size: 11px; font-weight: 400;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--w75);
    padding-bottom: 3px; position: relative;
    transition: color var(--t-fast);
}
.nav-menu > li > a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: linear-gradient(90deg,#c8941e,#f5d978,#c8941e);
    transition: width var(--t-mid) var(--ease-luxury);
}
.nav-menu > li > a:hover, .nav-menu > li.current-menu-item > a { color: var(--gold-primary); }
.nav-menu > li > a:hover::after, .nav-menu > li.current-menu-item > a::after { width: 100%; }

/* Dropdown */
.nav-menu .sub-menu {
    position: absolute; top: calc(100% + 18px); left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 220px;
    background: rgba(10,20,40,.98);
    border: 1px solid rgba(228,178,62,.2);
    border-radius: var(--radius-md);
    padding: .75rem 0;
    opacity: 0; pointer-events: none;
    transition: all var(--t-mid) var(--ease-luxury);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.nav-menu > li:hover .sub-menu {
    opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-menu .sub-menu li a {
    display: block; padding: .7rem 1.4rem;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--w60);
    transition: color var(--t-fast), padding-left var(--t-fast);
}
.nav-menu .sub-menu li a:hover { color: var(--gold-primary); padding-left: 1.8rem; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* Hamburger */
.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 4px; width: 32px; height: 32px;
}
.menu-toggle span {
    display: block; width: 24px; height: 1.5px;
    background: var(--gold-primary); border-radius: 2px;
    transition: transform var(--t-mid), opacity var(--t-mid), width var(--t-mid);
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 1060px) {
    .menu-toggle { display: flex; }
    .nav-cta .btn--outline { display: none; }
    .nav-menu {
        position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(6,12,28,.98); backdrop-filter: blur(16px);
        border-top: 1px solid rgba(228,178,62,.15);
        flex-direction: column; align-items: flex-start; gap: 0;
        padding: 1.5rem 2rem 2rem;
        transform: translateY(-20px); opacity: 0; pointer-events: none;
        transition: all var(--t-mid) var(--ease-luxury);
        margin: 0;
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-menu > li { width: 100%; border-bottom: 1px solid var(--w06); }
    .nav-menu > li > a { display: block; padding: 1rem 0; font-size: 13px; letter-spacing: 3px; }
    .nav-menu .sub-menu {
        position: static; transform: none; opacity: 1; pointer-events: all;
        background: transparent; border: none; padding: 0 0 .5rem 1rem;
        backdrop-filter: none; box-shadow: none; min-width: 0;
    }
    .nav-menu > li:hover .sub-menu { transform: none; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #060e1c; }
.footer-rule { display: flex; align-items: center; padding: 0 3rem; }
.footer-rule__line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg,transparent,rgba(228,178,62,.3),rgba(228,178,62,.1));
}
.footer-rule__line:last-child {
    background: linear-gradient(90deg,rgba(228,178,62,.1),rgba(228,178,62,.3),transparent);
}
.footer-rule__diamond { padding: 0 12px; display: flex; align-items: center; }
.footer-inner {
    max-width: 1380px; margin: 0 auto;
    padding: 4rem 3rem 3rem;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem;
}
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 1.25rem; }
.footer-logo-icon {
    filter: drop-shadow(0 0 10px rgba(228,178,62,.2));
    transition: transform .6s var(--ease-spring), filter var(--t-mid);
}
.footer-logo:hover .footer-logo-icon { transform: rotate(45deg); filter: drop-shadow(0 0 18px rgba(228,178,62,.45)); }
.footer-logo-wordmark { display: flex; flex-direction: column; gap: 4px; }
.footer-logo-name {
    font-family: var(--font-display); font-size: 24px; font-weight: 600;
    letter-spacing: 8px; text-transform: uppercase; line-height: 1;
    background: linear-gradient(135deg,#c8941e 0%,#f5d978 28%,#e4b23e 52%,#f5d472 74%,#b8821a 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-logo-sub {
    font-family: var(--font-ui); font-size: 8px; font-weight: 300;
    letter-spacing: 6px; color: rgba(228,178,62,.4); text-transform: uppercase;
}
.footer-about {
    font-family: var(--font-ui); font-size: 13px; line-height: 1.8;
    color: rgba(255,255,255,.4); margin: 0 0 1.5rem; max-width: 280px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(228,178,62,.2);
    color: rgba(228,178,62,.5); font-size: 13px; font-weight: 700;
    transition: all var(--t-fast);
}
.footer-social a:hover {
    color: var(--gold-primary); border-color: rgba(228,178,62,.6);
    background: rgba(228,178,62,.06);
}
.footer-col-title {
    font-family: var(--font-ui); font-size: 9px; font-weight: 600;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--gold-primary); margin: 0 0 1.25rem; opacity: .9;
}
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a {
    font-family: var(--font-ui); font-size: 13px; font-weight: 300;
    letter-spacing: .5px; color: rgba(255,255,255,.45);
    transition: color var(--t-fast), padding-left var(--t-fast);
    display: inline-block;
}
.footer-links a:hover { color: rgba(228,178,62,.85); padding-left: 4px; }
.footer-address { font-style: normal; display: flex; flex-direction: column; gap: 1rem; }
.footer-address p { margin: 0; font-family: var(--font-ui); font-size: 12.5px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.4); }
.footer-address a { color: rgba(228,178,62,.65); transition: color var(--t-fast); }
.footer-address a:hover { color: var(--gold-primary); }
.footer-address-label { display: block; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(228,178,62,.4); margin-bottom: 3px; }
.footer-bottom { border-top: 1px solid rgba(228,178,62,.1); padding: 1.5rem 3rem; }
.footer-bottom-inner {
    max-width: 1380px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.footer-copy { font-family: var(--font-ui); font-size: 11px; color: rgba(255,255,255,.25); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: var(--font-ui); font-size: 11px; color: rgba(255,255,255,.25); transition: color var(--t-fast); }
.footer-legal a:hover { color: rgba(228,178,62,.6); }
.footer-cert { font-family: var(--font-ui); font-size: 10px; letter-spacing: 1.5px; color: rgba(228,178,62,.25); text-transform: uppercase; margin: 0; }

@media (max-width: 1100px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .footer-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; }
    .footer-bottom { padding: 1.25rem 1.5rem; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
    .footer-rule { padding: 0 1.5rem; }
}

/* ── AEROAI CHATBOT ──────────────────────────────────────── */
.aeroai-launcher {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 9000;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--gold-primary);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(228,178,62,.4);
    transition: all var(--t-mid) var(--ease-spring);
    animation: launcherFloat 3s ease-in-out infinite;
}
@keyframes launcherFloat {
    0%,100% { box-shadow: 0 8px 32px rgba(228,178,62,.4); transform: translateY(0); }
    50%      { box-shadow: 0 14px 44px rgba(228,178,62,.55); transform: translateY(-3px); }
}
.aeroai-launcher:hover { transform: scale(1.08) !important; background: var(--gold-light); }
.aeroai-launcher__badge {
    position: absolute; top: -4px; right: -4px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--success); border: 2px solid #060e1c;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; color: #fff;
    animation: badgePulse 2s ease-in-out infinite;
}
.aeroai-window {
    position: fixed; bottom: 6.5rem; right: 2rem; z-index: 9001;
    width: 380px; height: 560px;
    background: rgba(10,20,40,.97);
    border: 1px solid rgba(228,178,62,.25);
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column;
    box-shadow: 0 40px 100px rgba(0,0,0,.7);
    transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none;
    transition: all var(--t-mid) var(--ease-luxury);
    backdrop-filter: blur(24px); overflow: hidden;
}
.aeroai-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.aeroai-header {
    padding: 1.25rem 1.5rem;
    background: rgba(228,178,62,.08);
    border-bottom: 1px solid rgba(228,178,62,.15);
    display: flex; align-items: center; gap: 1rem;
}
.aeroai-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gold-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.aeroai-info h4 {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 600; color: var(--white); margin-bottom: 2px;
}
.aeroai-info span {
    font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--success);
    display: flex; align-items: center; gap: .35rem;
}
.aeroai-info span::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--success); animation: badgePulse 2s infinite;
}
.aeroai-close {
    margin-left: auto; background: none; border: none;
    color: var(--w60); cursor: pointer; font-size: 1.2rem;
    transition: color var(--t-fast);
}
.aeroai-close:hover { color: var(--gold-primary); }
.aeroai-messages {
    flex: 1; overflow-y: auto; padding: 1.25rem;
    display: flex; flex-direction: column; gap: 1rem;
    scroll-behavior: smooth;
}
.aeroai-messages::-webkit-scrollbar { width: 3px; }
.aeroai-messages::-webkit-scrollbar-thumb { background: rgba(228,178,62,.3); }
.msg {
    display: flex; gap: .75rem; align-items: flex-end; max-width: 90%;
}
.msg--bot { align-self: flex-start; }
.msg--user { align-self: flex-end; flex-direction: row-reverse; }
.msg__avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(228,178,62,.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: .65rem; color: var(--gold-primary);
}
.msg--user .msg__avatar { background: var(--navy-4); color: var(--w60); }
.msg__bubble {
    padding: .75rem 1rem; border-radius: 14px;
    font-size: .82rem; line-height: 1.6; max-width: calc(100% - 40px);
}
.msg--bot .msg__bubble {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(228,178,62,.12);
    color: var(--w85); border-bottom-left-radius: 4px;
}
.msg--user .msg__bubble {
    background: var(--gold-primary);
    color: var(--navy-1); font-weight: 500;
    border-bottom-right-radius: 4px;
}
.msg__typing { display: flex; gap: 4px; align-items: center; padding: .5rem .75rem; }
.msg__typing span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-primary); opacity: .4;
    animation: typingDot 1.4s ease-in-out infinite;
}
.msg__typing span:nth-child(2) { animation-delay: .2s; }
.msg__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
    0%,80%,100% { transform: scale(.8); opacity: .4; }
    40%          { transform: scale(1.2); opacity: 1; }
}
.aeroai-quick-replies {
    padding: .75rem 1.25rem 0;
    display: flex; gap: .5rem; flex-wrap: wrap;
}
.quick-reply {
    padding: .4rem 1rem; border-radius: var(--radius-pill);
    border: 1px solid rgba(228,178,62,.25);
    background: transparent; color: rgba(228,178,62,.8);
    font-family: var(--font-ui); font-size: .68rem; letter-spacing: .1em;
    cursor: pointer; transition: all var(--t-fast);
}
.quick-reply:hover { background: var(--gold-glow); border-color: var(--gold-primary); color: var(--gold-primary); }
.aeroai-input-area {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(228,178,62,.1);
    display: flex; gap: .75rem; align-items: center;
}
.aeroai-input {
    flex: 1; background: rgba(255,255,255,.06);
    border: 1px solid rgba(228,178,62,.15);
    border-radius: var(--radius-pill);
    padding: .65rem 1.1rem;
    font-family: var(--font-ui); font-size: .82rem; color: var(--white); outline: none;
    transition: border-color var(--t-fast);
}
.aeroai-input::placeholder { color: var(--w30); }
.aeroai-input:focus { border-color: var(--gold-primary); }
.aeroai-send {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: var(--gold-primary); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t-fast);
}
.aeroai-send:hover { background: var(--gold-light); transform: scale(1.08); }
@media (max-width: 480px) {
    .aeroai-window { width: calc(100vw - 2rem); right: 1rem; bottom: 6rem; }
    .aeroai-launcher { bottom: 1.5rem; right: 1.5rem; }
}

/* ── PROGRESS BAR ────────────────────────────────────────── */
#page-progress {
    position: fixed; top: 0; left: 0; z-index: 9999;
    height: 2px; width: 0; background: var(--gold-primary);
    transition: width .1s linear;
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
#back-top {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(10,20,40,.85); border: 1px solid rgba(228,178,62,.25);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gold-primary);
    opacity: 0; transform: translateY(10px); pointer-events: none;
    transition: all var(--t-mid); backdrop-filter: blur(8px);
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-top:hover { background: rgba(228,178,62,.1); border-color: var(--gold-primary); }

/* ── COOKIE BANNER ───────────────────────────────────────── */
#cookie-banner {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    z-index: 8888; max-width: 680px; width: calc(100% - 3rem);
    background: rgba(10,20,40,.95); border: 1px solid rgba(228,178,62,.2);
    border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    backdrop-filter: blur(20px); box-shadow: 0 20px 60px rgba(0,0,0,.5);
    transition: all var(--t-mid); transform: translateX(-50%) translateY(0);
}
#cookie-banner.hidden { transform: translateX(-50%) translateY(120px); opacity: 0; pointer-events: none; }
#cookie-banner p { font-size: .8rem; color: var(--w60); margin: 0; flex: 1; min-width: 200px; line-height: 1.5; }
#cookie-banner p a { color: var(--gold-primary); }
#cookie-banner .btn { flex-shrink: 0; }

/* ── PRELOADER ───────────────────────────────────────────── */
#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--navy-0);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 2rem;
    transition: opacity .6s ease, visibility .6s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo { animation: preloaderPulse 1.5s ease-in-out infinite; }
@keyframes preloaderPulse {
    0%,100% { filter: drop-shadow(0 0 8px rgba(228,178,62,.3)); }
    50%      { filter: drop-shadow(0 0 24px rgba(228,178,62,.7)); }
}
.preloader-bar {
    width: 200px; height: 2px;
    background: rgba(228,178,62,.15);
    border-radius: 1px; overflow: hidden;
}
.preloader-bar-fill {
    height: 100%; background: var(--gold-primary);
    width: 0; animation: preloaderFill 1.8s var(--ease-luxury) forwards;
}
@keyframes preloaderFill { to { width: 100%; } }
.preloader-text {
    font-family: var(--font-ui); font-size: .68rem; letter-spacing: .28em;
    text-transform: uppercase; color: rgba(228,178,62,.5);
}

/* ── NOTIFICATION TOAST ──────────────────────────────────── */
.toast-wrap {
    position: fixed; top: 90px; right: 2rem; z-index: 9002;
    display: flex; flex-direction: column; gap: .75rem;
    pointer-events: none;
}
.toast {
    background: rgba(10,20,40,.96); border: 1px solid rgba(228,178,62,.25);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: .75rem;
    min-width: 280px; max-width: 360px;
    pointer-events: all; cursor: pointer;
    transform: translateX(120%);
    transition: transform var(--t-mid) var(--ease-luxury);
    backdrop-filter: blur(16px);
}
.toast.show { transform: translateX(0); }
.toast__icon { font-size: 1rem; flex-shrink: 0; }
.toast__msg { font-size: .82rem; color: var(--w85); line-height: 1.4; flex: 1; }
.toast--success { border-color: rgba(52,211,153,.3); }
.toast--success .toast__icon { color: var(--success); }
.toast--error { border-color: rgba(248,113,113,.3); }
.toast--error .toast__icon { color: var(--danger); }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(4,13,30,.92);
    backdrop-filter: blur(12px); z-index: 9500;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; padding: 2rem;
    transition: opacity var(--t-mid);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--navy-2); border: 1px solid rgba(228,178,62,.25);
    border-radius: var(--radius-lg); padding: 3rem;
    max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto;
    transform: translateY(30px);
    transition: transform var(--t-mid) var(--ease-luxury);
    position: relative;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(228,178,62,.3); background: transparent;
    color: var(--w60); cursor: pointer; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t-fast);
}
.modal-close:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.modal-title {
    font-family: var(--font-display); font-size: 2rem;
    font-weight: 600; color: var(--white); margin-bottom: .5rem;
}
.modal-sub { font-size: .88rem; color: var(--w60); margin-bottom: 2.5rem; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideInRight { from{transform:translateX(40px);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes pulse    { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
@keyframes spin     { to{transform:rotate(360deg)} }
@keyframes shimmer  { to{background-position:200% center} }
.animate-fadeIn    { animation: fadeIn .6s ease forwards; }
.animate-fadeInUp  { animation: fadeInUp .6s var(--ease-luxury) forwards; }
.loading-shimmer {
    background: linear-gradient(90deg,rgba(228,178,62,.06) 25%,rgba(228,178,62,.12) 50%,rgba(228,178,62,.06) 75%);
    background-size: 200% auto;
    animation: shimmer 1.8s linear infinite;
}

/* ── WORDPRESS SPECIFIC ──────────────────────────────────── */
.aligncenter { display: block; margin: 0 auto; }
.alignleft   { float: left; margin: 0 2rem 1rem 0; }
.alignright  { float: right; margin: 0 0 1rem 2rem; }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--w60); margin-top: .5rem; text-align: center; }
.screen-reader-text { @extend .sr-only; }
.site-main { padding-top: 80px; }

/* ── RESPONSIVE HELPERS ──────────────────────────────────── */
@media (max-width: 768px) {
    .section { padding: 5rem 1.5rem; }
    .section-heading { font-size: clamp(1.8rem,5vw,2.6rem); }
    .btn--lg { padding: .9rem 2rem; font-size: .78rem; }
    .modal-box { padding: 2rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 4rem 1.25rem; }
}
