/* =========================================================
   MAA Air Ticket Centre
   Palette: deep navy #16234d · teal #2fa37f · gold #b08a3e
   Type: Playfair Display (serif) · Outfit (sans) · Tangerine (script)
   ========================================================= */

:root {
  --bg: #f7f4ee;
  --bg-warm: #f1ece2;
  --surface: #ffffff;
  --navy: #16234d;
  --navy-deep: #0e1838;
  --ink: #1b2540;
  --teal: #2fa37f;
  --teal-deep: #1f7c5f;
  --gold: #b08a3e;
  --gold-soft: #c9a35a;
  --muted: #5a6477;
  --line: rgba(22, 35, 77, 0.12);
  --line-soft: rgba(22, 35, 77, 0.08);
  --shadow-lg: 0 30px 70px -30px rgba(14, 24, 56, 0.35);
  --shadow-md: 0 18px 44px -22px rgba(14, 24, 56, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(47, 163, 127, 0.25); color: var(--navy); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px)  { .container { padding: 0 28px; } }
@media (min-width: 1024px) { .container { padding: 0 56px; } }

.bg-cream { background: var(--bg); }
.bg-white { background: var(--surface); }
.bg-warm  { background: var(--bg-warm); }

.section { padding: 44px 0; }
@media (min-width: 768px)  { .section { padding: 60px 0; } }
/*@media (min-width: 1024px) { .section { padding: 136px 0; } }*/
/*.section-tight { padding: 44px 0; }
@media (min-width: 768px) { .section-tight { padding: 60px 0; } }
*/
/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--gold);
}
.eyebrow-row { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.brand-divider {
  display: inline-block; width: 54px; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--teal) 100%);
}

.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--navy); margin: 0; line-height: 1.06;
}
.display-2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12; color: var(--navy); margin: 0;
}
.display-2 em { font-style: italic; color: var(--teal-deep); }

.muted { color: var(--muted); line-height: 1.75; }
.small { font-size: 0.8rem; }
.serif-italic { font-family: 'Playfair Display', serif; font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: 'Outfit', sans-serif; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; text-align: center;
  transition: background-color .35s ease, color .35s ease, transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.btn i { width: 16px; height: 16px; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 12px 26px -12px rgba(22,35,77,0.6); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(31,124,95,0.55); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---------- Logo placeholders ---------- */
.logo-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; text-align: center;
  border: 1.5px dashed rgba(22,35,77,0.28);
  border-radius: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(22,35,77,0.03) 0 10px, rgba(22,35,77,0.06) 10px 20px);
  color: var(--navy);
}
.logo-ph__label {
  font-family: 'Playfair Display', serif; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.05; color: var(--navy);
}
.logo-ph__sub {
  font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(22,35,77,0.45); font-weight: 600;
}
.logo-ph--header { width: 168px; height: 54px; }
.logo-ph--header .logo-ph__label { font-size: 0.95rem; }
.logo-ph--hero { width: 230px; height: 74px; }
.logo-ph--hero .logo-ph__label { font-size: 1.25rem; }
.logo-ph--brand { width: 100%; height: 84px; }
.logo-ph--brand .logo-ph__label { font-size: 1.05rem; }
.logo-ph--footer {
  width: 180px; height: 56px;
  border-color: rgba(255,255,255,0.4);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 10px, rgba(255,255,255,0.1) 10px 20px);
}
.logo-ph--footer .logo-ph__label { color: #fff; }
.logo-ph--footer .logo-ph__sub { color: rgba(255,255,255,0.6); }

.footer-logo img{
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  border: 1.5px dashed rgba(22,35,77,0.25);
  border-radius: 14px;
  background: repeating-linear-gradient(135deg, rgba(22,35,77,0.03) 0 14px, rgba(22,35,77,0.06) 14px 28px);
  color: rgba(22,35,77,0.5);
}
.img-ph i { width: 40px; height: 40px; }
.img-ph span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background-color .5s ease, border-color .5s ease, box-shadow .5s ease;
  background: transparent; border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247,244,238,0.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(14,24,56,0.4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.nav-desktop { display: none; gap: 38px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  position: relative; font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy);
  transition: color .3s ease;
}
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--teal); transition: width .4s ease; }
.nav-link:hover { color: var(--teal-deep); }
.nav-link:hover::after { width: 100%; }

.header-cta { display: none; padding: 12px 24px; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

.mobile-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 0; color: var(--navy); cursor: pointer; padding: 8px; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-menu { background: #fff; border-top: 1px solid var(--line); padding: 20px 28px; flex-direction: column; gap: 18px; display: none; }
.mobile-menu.is-open { display: flex; }
@media (min-width: 1024px) { .mobile-menu, .mobile-menu.is-open { display: none !important; } }
.mobile-menu a:not(.btn) { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); font-weight: 600; }
.mobile-menu .btn { margin-top: 8px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: 120px; 
  /*padding-bottom: 72px;*/
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(47,163,127,0.10), transparent 60%),
    radial-gradient(900px 520px at -5% 10%, rgba(176,138,62,0.10), transparent 55%),
    linear-gradient(180deg, #fbf9f4 0%, var(--bg) 100%);
}
/*@media (min-width: 1024px) { .hero { padding-top: 150px; padding-bottom: 96px; } }*/
.hero-texture {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(22,35,77,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,35,77,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
}
.hero-inner { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: top; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }

.hero-logo { display: inline-block; margin-bottom: 26px; }
.hero-tagline {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem); color: var(--gold);
  margin: 0 0 18px;
}
.hero-title { font-size: clamp(2.4rem, 5.2vw, 4rem); max-width: 14ch; }
.hero-sub { margin-top: 24px; font-size: 1.6rem; color: var(--muted); max-width: 46ch; font-weight: 300; }

.hero-rule { display: flex; align-items: center; gap: 12px; margin-top: 40px; color: var(--gold); max-width: 320px; }
.hero-rule .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-rule .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-rule i { width: 18px; height: 18px; transform: rotate(45deg); }

.hero-plane {
    position: absolute;
    top: 40px;
    right: 240px;
    width: 420px;
    opacity: .50;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .hero-plane {
        width: 220px;
        top: 90px;
        right: 20px;
        opacity: .12;
    }
}

.hero-right {
    position: relative;
}

.founder-card {
    max-width: 620px;
    margin-left: auto;
}

/*.founder-photo {
    transform: translateY(20px);
}
*/
/* Founder card */
/*.founder-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 18px; box-shadow: var(--shadow-lg);
}*/
.founder-card {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}
/*.founder-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 18px; padding: 1px;
  background: linear-gradient(135deg, rgba(176,138,62,0.5), rgba(47,163,127,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}*/
.founder-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 16/11; }
.founder-note { padding: 22px 14px 10px; text-align: center; }
.note-script {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.04rem; line-height: 1.5; color: var(--ink); margin: 0 0 14px;
}
.signature {
  font-family: 'Tangerine', cursive; font-weight: 700;
  font-size: 3rem; line-height: 0.8; color: var(--teal-deep); margin-bottom: 6px;
}
.founder-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.5rem; color: var(--navy); }
.founder-role { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-top: 4px; }

/* ---------- Narrative ---------- */
.narrative { max-width: 920px; }
.narrative-lead {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1.4; color: var(--navy);
  margin: 0 0 28px; letter-spacing: -0.005em;
}
.narrative-lead strong { color: var(--teal-deep); font-weight: 600; }
.narrative-body { font-size: 1.08rem; color: var(--muted); margin: 0 0 22px; line-height: 1.8; }
.sbt-block {
  margin-top: 48px; padding-top: 44px; border-top: 1px solid var(--line);
}
.narrative-close { color: var(--ink); font-weight: 400; }

/* ---------- Brands ---------- */
.bg-brands {
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(176,138,62,0.08), transparent 60%),
    var(--bg-warm);
}
.brands-head { text-align: center; margin-bottom: 56px; }
.brands-kicker {
  display: inline-block;
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2.1rem); color: var(--navy);
  letter-spacing: 0.01em; position: relative; padding-bottom: 18px;
}
.brands-kicker::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0;
  width: 90px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--teal));
}

.brands-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 600px)  { .brands-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1240px) { .brands-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; } }

.brand-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: 16px; padding: 30px 22px;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .45s ease;
}
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(47,163,127,0.35); }
.brand-logo-wrap { width: 100%; margin-bottom: 20px; }
.brand-name {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.12rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy);
  margin: 0 0 12px; line-height: 1.3;
}
.brand-desc { font-size: 0.92rem; color: var(--muted); margin: 0 0 18px; line-height: 1.65; flex-grow: 1; }
.brand-learn {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; border: 1px solid var(--teal); color: var(--teal-deep);
  font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; cursor: pointer; margin-bottom: 16px;
  transition: background-color .3s ease, color .3s ease, transform .3s ease, gap .3s ease;
}
.brand-learn i { width: 14px; height: 14px; transition: transform .3s ease; }
.brand-learn:hover { background: var(--teal-deep); color: #fff; gap: 11px; }
.brand-learn:hover i { transform: translateX(2px); }
.brand-url {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.84rem;
  color: var(--gold); letter-spacing: 0.01em; margin-top: auto;
  transition: color .3s ease;
}
.brand-url:hover { color: var(--teal-deep); }

/* ---------- Accreditations ---------- */
.accreditations { border-top: 1px solid var(--line-soft); }
.accred-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:32px;
    align-items:center;
    justify-items:center;
}

.accred-item{
    width:120px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    transition:all .25s ease;
}

.accred-item:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.accred-item img{
    max-width:100%;
    max-height:80px;
    object-fit:contain;
    transition:all .25s ease;
}

.accred-item:hover img{
    filter:grayscale(100%);
    opacity:.85;
}

@media(max-width:1024px){
    .accred-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:640px){
    .accred-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .accred-item{
        width:100px;
        height:100px;
    }
}

/* ---------- Grid helpers ---------- */
.grid-12 { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) {
  .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 72px; }
  .col-5 { grid-column: span 5; }
  .col-7 { grid-column: span 7; }
}

/* ---------- Contact ---------- */
.contact-list { margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; border-top: 1px solid var(--line); padding-top: 20px; }
.contact-icon { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; background: var(--bg); border: 1px solid var(--line); color: var(--teal-deep); border-radius: 10px; flex-shrink: 0; }
.contact-icon i { width: 18px; height: 18px; }
.contact-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 4px; font-weight: 600; }
.contact-val { color: var(--navy); font-weight: 500; }

.contact-form { background: #fff; border: 1px solid var(--line-soft); padding: 24px; border-radius: 16px; box-shadow: var(--shadow-md); }
@media (min-width: 640px) { .contact-form { padding: 36px; } }
@media (min-width: 768px) { .contact-form { padding: 44px; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 600px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.field.full { grid-column: 1 / -1; }
.field span { display: inline-block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.field span em { color: var(--teal-deep); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; height: 50px; padding: 0 15px; background: var(--bg);
  border: 1px solid var(--line); color: var(--navy);
  font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; border-radius: 10px;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.field textarea { height: auto; padding: 14px 15px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(22,35,77,0.4); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(47,163,127,0.12); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-foot { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.form-status { margin-top: 22px; padding: 14px 16px; font-size: 0.9rem; border-radius: 10px; border: 1px solid; }
.form-status.ok { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.form-status.err { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.85); }
.footer-grid { padding: 72px 0; display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; padding: 88px 0; } }
/* Mobile footer spacing fix */

.footer-grid > *{
    min-width:0;
}

@media (max-width:768px){

    .site-footer .container{
        padding-left:28px;
        padding-right:28px;
    }

    .footer-grid{
        padding-top:56px;
        padding-bottom:56px;
    }

    .footer-brand p{
        max-width:100%;
    }

}

.footer-logo { display: inline-block; }
.footer-brand p { margin-top: 22px; max-width: 460px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; color: rgba(255,255,255,0.82); }
.footer-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-soft); margin-bottom: 20px; font-weight: 600; }
.footer-nav { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.6); }
.footer-nav a:hover { color: var(--teal); }
.footer-bottom { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
@media (min-width: 600px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom .serif-italic { color: var(--gold-soft); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(14,24,56,0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fadeIn .3s ease both; }
.modal-dialog {
  position: relative; width: 100%; max-width: 620px; max-height: 86vh; overflow-y: auto;
  background: var(--surface); border-radius: 18px; padding: 44px 38px 40px;
  box-shadow: var(--shadow-lg); animation: modalIn .45s cubic-bezier(.16,1,.3,1) both;
  border-top: 4px solid var(--teal);
}
@media (max-width: 560px) { .modal-dialog { padding: 38px 24px 32px; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg); border: 1px solid var(--line); border-radius: 50%;
  color: var(--navy); cursor: pointer; transition: background-color .3s ease, transform .3s ease;
}
.modal-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }
.modal-close i { width: 18px; height: 18px; }
.modal-kicker { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.modal-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.5rem, 3.5vw, 2rem); color: var(--navy); margin: 0 0 18px; line-height: 1.2; }
.modal-body { color: var(--muted); font-size: 1.02rem; line-height: 1.8; margin: 0; }
.modal-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-weight: 600; font-size: 0.86rem; color: var(--teal-deep); letter-spacing: 0.02em; }
.modal-link[hidden] { display: none; }
.modal-link::after { content: '→'; transition: transform .3s ease; }
.modal-link:hover::after { transform: translateX(4px); }

/* ---------- Animations ---------- */
.fade-up { animation: fadeUp .9s cubic-bezier(.16,1,.3,1) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(26px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; top: 24px; right: 24px; z-index: 150;
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--teal);
  padding: 16px 20px; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--ink);
  box-shadow: var(--shadow-md); animation: toastIn .4s ease both; max-width: 360px;
}
.toast.err { border-left-color: #b91c1c; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }


/* ==========================================
   AIR TICKET CENTRE HERO LOGO
   ========================================== */

.site-header {
    overflow: visible;
}

.brand-logo.floating-logo {
    position: relative;
    z-index: 100;
    display: block;
}

.brand-logo.floating-logo img {
    display: block;
    width: 180px;
    height: auto;
    transition: all .45s cubic-bezier(.16,1,.3,1);
}

/* Hero State */

.site-header:not(.scrolled) .brand-logo.floating-logo img {
    width: 420px;
    transform: translateY(85px);
}

/* Sticky Header State */

.site-header.scrolled .brand-logo.floating-logo img {
    width: 120px;
    transform: translateY(0);
}

/* Push Hero Down */

.hero {
    padding-top: 260px;
}

/* Mobile */

@media (max-width: 991px) {

    .site-header:not(.scrolled) .brand-logo.floating-logo img {
        width: 240px;
        transform: translateY(40px);
    }

    .site-header.scrolled .brand-logo.floating-logo img {
        width: 140px;
    }

    .hero {
        padding-top: 190px;
    }
}

.founder-photo {
    position: relative;
    overflow: visible;
    background: transparent;
    aspect-ratio: auto;
    border-radius: 0;
}

.founder-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Anchor Offset for Fixed Header */

section[id] {
    scroll-margin-top: 80px;
}