/* Import component styles */
@import url('./components/cards.css');
@import url('./components/badges.css');
@import url('./pages.css');

/* --- Smooth underline on hover for nav links --- */
.nav-link,
.nav-center a,
.nav-center .dropdown > button {
  position: relative;
}

.nav-link::after,
.nav-center a::after,
.nav-center .dropdown > button::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background-color: rgba(46,55,148,.18);
  transform: scaleX(0);
  transition: transform .2s ease;
  transform-origin: left;
}

.nav-link:hover::after,
.nav-center a:hover::after,
.nav-center .dropdown > button:hover::after {
  transform: scaleX(1);
}

/* --- Navbar (white) --- */
.navbar-white {
  background-color: #ffffff;
  border-bottom: 1px solid #E3E4E6; /* border token */
}

/* Center menu items spacing */
.nav-center a,
.nav-center .dropdown {
  position: relative;
  margin-left: 4px;
  padding: 10px 12px;
  color: #2B2B2B;
}
.nav-center a:first-child,
.nav-center .dropdown:first-child {
  margin-left: 0;
}
.nav-center a:last-child,
.nav-center .dropdown:last-child {
  margin-right: 0;
}
.nav-center a:hover,
.nav-center .dropdown:hover > button { color: #2E3794; }

/* Remove double padding on dropdown button itself */
.nav-center .dropdown > button {
  padding-left: 0;
  padding-right: 0;
}

/* Services dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 110%; left: 50%; transform: translateX(-50%);
  min-width: 240px; background: #fff; border: 1px solid #E3E4E6; border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  padding: 8px; display: none; z-index: 60;

  /* animated dropdown */
  opacity: 0; transform: translateY(6px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}
.dropdown[aria-expanded="true"] .dropdown-menu {
  display: block;
  opacity: 1; transform: translateY(0) scale(1);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; color: #2B2B2B;
}
.dropdown-menu a:hover { background: #F5F6F8; color: #2E3794; }

/* Rotate chevron when open */
.chev { transition: transform .2s ease; }
.dropdown[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* === Full-bleed helper (cancels page horizontal padding) === */
.full-bleed {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Section padding for non full-bleed sections */
section:not(.full-bleed) {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 640px) {
  section:not(.full-bleed) {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 1024px) {
  section:not(.full-bleed) {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}



/* --- Hero container --- */
.hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.hero-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Left overlay so text is readable on any photo */
.hero-overlay-left {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0) 90%);
  pointer-events: none;
}

/* Content area inside hero */
.hero-content {
  position: absolute; inset: 0;
  display: grid; align-content: center;
  padding: 24px;
}
@media (min-width: 768px){
  .hero-content { padding: 48px; }
}
@media (min-width: 1024px){
  .hero-content { padding: 64px; }
}

/* --- Mobile menu panel animation --- */
.mobile-panel {
  display: none;
  transform-origin: top right;
  transform: scaleY(.98);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}
.mobile-panel.open {
  display: block;
  opacity: 1;
  transform: scaleY(1);
}

/* mobile submenu indent */
.mobile-sub a { padding-left: 2.25rem; }
/* === Airline infinite marquee === */
.airline-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 16px; /* slight gap under hero */
  /* no background on purpose */
}

.airline-track {
  display: flex;
  gap: 36px;                 /* space between logos */
  width: max-content;        /* content defines width */
  will-change: transform;
  /* default to LTR animation (moves content left so loop appears to scroll left) */
  animation: marquee-ltr var(--marquee-speed, 55s) linear infinite;
}

/* Seamless loop: content duplicated once inside the same track.
   A -50% shift lines up perfectly with the second copy. */
/* LTR: move content left (visual leftward marquee) */
@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* RTL: move content right (visual rightward marquee) */
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Logo cells */
.airline-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  height: 64px;          /* normalize cell height */
  min-width: 120px;      /* gives very wide logos room */
}

/* Normalize mixed sizes; grayscale default */
.airline-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1) brightness(1);
  opacity: .85;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
  transform: translateZ(0);
}

/* Hover: reveal color */
.airline-logo:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

/* Accessibility: honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  .airline-track { animation: none; }
}

/* === Services Section === */
.services-section {
  background: #fff;
  padding-top: 32px;
  padding-bottom: 32px;
}
.services-wrapper {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.services-left {
  flex: 1 1 320px;
  max-width: 340px;
  min-width: 240px;
  padding-bottom: 24px;
}
.services-eyebrow {
  font-size: 13px;
  color: #6B7280;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.services-headline {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.services-headline .accent {
  color: #2E3794;
}
.services-desc {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 24px;
}
.services-ctas {
  display: flex;
  gap: 16px;
}
.services-btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 22px;
  text-align: center;
  transition: background .18s, color .18s;
  outline: none;
}
.services-btn.primary {
  background: #2E3794;
  color: #fff;
  border: none;
}
.services-btn.primary:hover,
.services-btn.primary:focus {
  background: #4DC6F2;
  color: #fff;
}
.services-btn.secondary {
  background: none;
  color: #2E3794;
  border: none;
  padding: 12px 0;
  text-decoration: underline;
}
.services-btn.secondary:hover,
.services-btn.secondary:focus {
  color: #4DC6F2;
  text-decoration: underline;
}

/* Right grid */
.services-grid {
  flex: 2 1 480px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service-row {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #0F172A;
  padding: 0;
  outline: none;
  border-radius: 10px;
  transition: background .14s;
}
.service-row:focus {
  background: #F6F7F9;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--icon-bg, #F6F7F9);
  flex-shrink: 0;
}
.service-icon i[data-lucide] {
  width: 22px;
  height: 22px;
  font-size: 22px;
  color: inherit; /* uses inline style color from HTML */
  vertical-align: middle;
}
.service-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}
.service-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
  color: #0F172A;
  display: block;
}
.service-title strong {
  font-weight: 700;
  color: #0F172A;
}
.service-desc {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 0;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .services-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .services-left {
    max-width: 100%;
    padding-bottom: 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .services-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .services-wrapper {
    gap: 16px;
  }
  .services-grid {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-row {
    gap: 12px;
  }
  .service-icon {
    width: 38px;
    height: 38px;
  }
  .service-icon i[data-lucide] {
    width: 18px;
    height: 18px;
    font-size: 18px;
  }
}

/* === Utilities === */
.section-spacer { margin-top: 24px; }
@media (max-width: 900px) { .section-spacer { margin-top: 16px; } }

/* === Brand tokens === */
:root{
  --primary: #2E3794;
  --primaryDark: #222A7E;
  --onPrimary: #ffffff;
}

/* === About Section (tight gutters, grid, rhythm, spacing) === */
.about-section {
  background: linear-gradient(90deg, var(--primaryDark) 0%, var(--primary) 100%);
  color: var(--onPrimary);
  padding-top: 48px;
  padding-bottom: 48px;
  margin-top: 44px; 
}

/* === ABOUT: container + grid (desktop baseline already OK) === */
.about-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
/* ≤1024px: stack, tighter gaps, fix order (text first, image second) */
@media (max-width: 1024px){
  .about-grid{ grid-template-columns: 1fr; gap: 16px; }
  .about-copy{ order: 1; }
  .about-media{ order: 2; }
}

/* Compact vertical rhythm (title → body → stats) on small screens */
/* Base rhythm */
.about-eyebrow{ margin-bottom: 6px; }
.about-headline{ margin: 0 0 8px 0; }
.about-body{ margin: 0 0 10px 0; }
/* ≤1024px: smaller headline + tighter spacing */
@media (max-width: 1024px){
  .about-headline{ font-size: 1.75rem; margin-bottom: 6px; }
  .about-body{ margin-bottom: 8px; }
}
/* ≤640px: phone rhythm */
@media (max-width: 640px){
  .about-section{ padding-top: 24px; padding-bottom: 16px; }
  .about-headline{ font-size: 1.5rem; margin-bottom: 6px; }
  .about-body{ font-size: .95rem; line-height: 1.55; margin-bottom: 6px; }
}

/* === About Section: image sizing desktop/mobile === */
.about-media picture,
.about-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  max-height: 520px;
}
@media (max-width: 1024px) {
  .about-media img {
    max-height: 220px;
  }
}
@media (max-width: 640px) {
  .about-media img {
    max-height: 46vh;
    align-items: center;
  }
}

/* === About Section: title, body, and stats spacing & sizing === */
.about-eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: .04em;
  opacity: .9;
}
.about-headline {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px 0;
}
.about-headline .accent {
  color: var(--onPrimary);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.4);
}
.about-body {
  font-size: 1rem;
  line-height: 1.6;
  opacity: .95;
  margin: 0 0 18px 0;
}

/* Responsive font sizes for headline/body */
@media (max-width: 1024px) {
  .about-headline { font-size: 1.75rem; margin-bottom: 12px; }
  .about-body { font-size: 1rem; margin-bottom: 12px; }
}
@media (max-width: 640px) {
  .about-headline { font-size: 1.5rem; margin-bottom: 10px; }
  .about-body { font-size: .95rem; margin-bottom: 10px; }
}

/* === About Section: stats layout and spacing === */
.about-stats-inline {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
  color: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.about-stats-inline::-webkit-scrollbar { display: none; }

.about-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.about-stat__icon.icon-tile--light {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  color: #fff;
  flex-shrink: 0;
}
.about-stat__icon.icon-tile--light i[data-lucide],
.about-stat__icon.icon-tile--light svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  color: #fff;
}

.about-stat__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.about-stat__label {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  font-weight: 600;
  line-height: 1.1;
}
.about-stat__num {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: .01em;
}

.about-btn {
  background: #fff;
  color: var(--primaryDark);
  border: 1px solid rgba(255,255,255,0);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  display: inline-block;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 28px;
  line-height: 1;
  text-align: center;
  font-size: 1rem;
  transition: background .18s, color .18s, box-shadow .18s;
}



/* === CTA Accent Section Styling === */
.cta-accent {
  padding-top: 0;
  padding-bottom: 36px;
  background: #0095D9;
  color: #fff;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 12px 0 12px;
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

@media (max-width: 1024px) {
  .cta-title { font-size: 2rem; }
}

.cta-sub {
  font-size: 1.08rem;
  opacity: .95;
  margin: 0 0 18px 0;
}

.cta-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-actions .cta-btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 28px;
  line-height: 1;
  text-align: center;
  font-size: 1rem;
  transition: background .18s, color .18s, box-shadow .18s;
}

.cta-actions .cta-btn.primary {
  background: #fff;
  color: var(--primaryDark);
  border: 1px solid rgba(255,255,255,0);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

.cta-actions .cta-btn.primary:hover {
  opacity: .94;
}

.cta-actions .cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.92);
}

.cta-actions .cta-btn.secondary:hover {
  background: rgba(255,255,255,.10);
}

@media (max-width: 640px) {
  .cta-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
  .cta-actions {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .cta-title {
    font-size: 1.5rem;
  }
}

/* Optional: hide horizontal scrollbar where desired */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { scrollbar-width: none; }
/* === Contact Section (split bg: left light gray, right white) === */
.contact-split-bg {
  position: relative;
  /* 65% light gray then white, matches the reference look */
  background: linear-gradient(90deg, #F5F6F8 0 65%, #FFFFFF 65% 100%);
  padding: 40px 8px;
}
@media (max-width: 1024px) {
  .contact-split-bg { background: #F5F6F8; }
}

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 24px; }
}

/* Card base (inherits brand feel) */
.card {
  background: #FFFFFF;
  border: 1px solid #E3E4E6;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Contact section title above everything, centered */
.contact-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #222A7E;
  letter-spacing: .01em;
}

/* LEFT: form */
.contact-form { padding: 24px; }
.contact-title {
  text-align: center;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 0 12px 0;
}
.contact-form-header h3 {
  margin: 0 0 6px 0;
  font-weight: 800;
  font-size: 1.15rem;
}
.contact-form-header p {
  margin: 0 0 16px 0;
  color: #475569;
  font-size: .95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .9rem; color: #334155; font-weight: 600; }
.field input, .field select, .field textarea {
  border: 1px solid #E3E4E6;
  border-radius: 10px;
  padding: 12px 12px;
  outline: none;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-size: 1rem;
}
.field input::placeholder,
.field textarea::placeholder { color: #94A3B8; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary, #2E3794);
  box-shadow: 0 0 0 3px rgba(46,55,148,.12);
}
.field-full { grid-column: 1 / -1; }

.field-phone .phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}
.field-phone select {
  min-width: 80px;
  max-width: 110px;
}
.field-phone input[type="tel"] {
  width: 100%;
}

/* Consistent field widths */
.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
}

/* Button: match rest of site (not pill) */
.contact-btn {
  background: var(--primary, #2E3794);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition:  opacity .12s ease, background .15s ease;
  box-shadow: 0 2px 8px rgba(46,55,148,.08);
}
.contact-btn:hover { transform: translateY(-1px); opacity: .95; }

/* RIGHT: contact details card */
.contact-card {
  background: #0B1E3F;
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: 0 16px 40px rgba(8,31,61,.25);
  min-width: 0;
}
.contact-card__intro h4 {
  margin: 0 0 4px 0;
  font-weight: 800;
}
.contact-card__intro p {
  margin: 0 0 14px 0;
  opacity: .85;
}

/* Contact rows: faded white bg on whole row, rounded, gap between */
.contact-list { list-style: none; margin-bottom: 12px; padding: 0; display: grid; gap: 18px; }
.contact-item.contact-row-bg {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.13);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 0;
  transition: background .15s;
}
.contact-item.contact-row-bg:hover,
.contact-item.contact-row-bg:focus-within {
  background: rgba(255,255,255,.18);
}
.icon-tile2 {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  background: none;
  flex-shrink: 0;
}
.icon-tile2 i[data-lucide],
.icon-tile2 svg { width: 22px; height: 22px; color: #fff; stroke-width: 2.2; }

.text .label { display: block; font-size: .86rem; opacity: .9; }
.text .value { display: block; font-weight: 700; }
.link-row {
  display: flex;
}

/* Social row */
.contact-social { margin-top: auto; padding-top: 16px; border-top: 1px dashed rgba(255,255,255,.18); }
.contact-social .label { display: block; margin-bottom: 10px; opacity: .95; }
.contact-social .icons { display: flex; gap: 12px; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  transition: transform .12s ease, background .15s ease;
}
.contact-social a:hover { transform: translateY(-1px); background: rgba(255,255,255,.18); }
.contact-social i[data-lucide], .contact-social svg { width: 22px; height: 22px; color: #fff; }

/* Responsive stacking */
@media (max-width: 1024px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 24px; }
  .contact-card { order: 2; }
  .contact-form { order: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-phone .phone-row { grid-template-columns: 110px 1fr; }
}
@media (max-width: 640px) {
  .contact-split-bg { padding: 28px 8px; }
  .contact-card, .contact-form { border-radius: 14px; }
  .contact-section-title { font-size: 1.3rem; margin-bottom: 20px; }
}

/* === Map Section (card-width, respects page gutters) === */
.map-section {
  background: #fff;  
  padding: 8px 8px 24px; 
}

.map-inner {
  max-width: 1200px;  
  margin: 0 auto;
  padding: 0 12px;   
}

.map-card {
  position: relative;
  border: 1px solid #E3E4E6;
  border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden; 
  background: #f8fafc;
}

/* 16:9 responsive frame */
.map-card::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.map-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Tighten gutters on very small screens */
@media (max-width: 640px) {
  .map-inner { padding: 0 8px; }
}


/* === FAQ Section (light gray bg, smooth accordion) === */
.faq-section {
  background: #F5F6F8;               /* light gray */
  padding: 36px 8px;
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.faq-header {
  text-align: center;
  margin-bottom: 18px;
}
.faq-eyebrow {
  font-size: 13px;
  color: #6B7280;
  letter-spacing: .04em;
  margin: 0 0 6px 0;
}
.faq-title {
  margin: 0 0 6px 0;
  font-size: 2rem;
  font-weight: 800;
  color: #0F172A;
}
.faq-sub {
  margin: 0 0 10px 0;
  color: #475569;
  font-size: .98rem;
}

/* list */
.faq-list {
  display: grid;
  gap: 10px;
}

/* item */
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E3E4E6;
  border-radius: 12px;
  overflow: hidden;                  /* clips animated content corners */
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

/* toggle button */
.faq-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.faq-q {
  font-weight: 700;
  color: #0F172A;
}
.faq-icon {
  width: 22px; height: 22px;
  transition: transform .18s ease;
}

/* FAQ answer: simple, smooth, reliable */
.faq-a {
  max-height: 0;                 /* collapsed */
  overflow: hidden;
  transition: max-height .24s ease;
  padding: 0 16px;               /* only side padding when closed */
  color: #334155;
  line-height: 1.6;
}

/* When open, allow bottom padding (nice rhythm) */
.faq-item.is-open .faq-a {
  padding: 0 16px 16px 16px;
}

/* Keep chevron rotation */
.faq-item.is-open .faq-icon { transform: rotate(180deg); }

/* collapsed state handled by [hidden] + JS height animation */
.faq-item.is-open .faq-icon { transform: rotate(180deg); }

/* responsive */
@media (max-width: 640px) {
  .faq-title { font-size: 1.5rem; }
  .faq-toggle { padding: 14px 14px; }
  .faq-a { padding: 0 14px 14px 14px; }
}

/* Focus style for FAQ tabs (global, small addition) */
.faq-tab:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(46,55,148,0.12);
  border-radius: 999px;
}


/* ====== FOOTER ====== */
.site-footer {
  --inkA: var(--ink-a, #0B1220);
  --inkB: var(--ink-b, #0A0F1A);
  --inkC: var(--ink-c, #08101A);
  --primary: var(--primary, #2E3794);
  --muted: #94A3B8;
  color: #E6EAF2;
  background: linear-gradient(180deg, var(--inkA) 0%, var(--inkB) 60%, var(--inkC) 100%);
}

/* Tier 1 CTA */
.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 20px 8px;
}
.footer-cta__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 12px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
}
.footer-cta__text .eyebrow {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.footer-cta__text h3 { margin: 4px 0 0 0; font-size: 1.25rem; color: #fff; }
.footer-cta__actions { display: flex; gap: 10px; }
.btn-primary, .btn-outline {
  border-radius: 999px; padding: 10px 18px; font-weight: 700; line-height: 1;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border: 0; }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-primary:hover { opacity: .95; }
.btn-outline:hover { background: rgba(255,255,255,.06); }

/* Tier 2 Main */
.footer-main { padding: 26px 8px; }
.footer-main__grid {
  max-width: 1200px; margin: 0 auto; padding: 0 12px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 22px;
}

/* Brand column */
.brand .brand-name { margin: 0 0 6px 0; font-weight: 800; color: #fff; font-size: 1.15rem; }
.brand .brand-tagline { margin: 0 0 12px 0; color: rgba(255,255,255,.8); }

/* Social row (Lucide) */
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); transition: transform .12s ease, background .15s ease;
}
.social-row a:hover { transform: translateY(-1px); background: rgba(255,255,255,.12); }
.social-row i[data-lucide], .social-row svg { width: 20px; height: 20px; color: #fff; }

/* Link columns */
.fcol h5 { margin: 0 0 10px 0; color: #fff; font-weight: 800; font-size: 0.95rem; }
.fcol ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.fcol ul li a { color: rgba(255,255,255,.85); text-decoration: none; }
.fcol ul li a:hover { color: #fff; text-decoration: underline; }

/* Support + contact mini */
.support .mini { margin-bottom: 12px; }

/* Bottom bar */
.footer-bottom {
  max-width: 1200px; margin: 16px auto 0; padding: 12px 12px 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
  border-top: 1px dashed rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
}
.footer-bottom .right { display: flex; gap: 10px; align-items: center; }
.footer-bottom .right a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-bottom .right a:hover { color: #fff; text-decoration: underline; }
.footer-bottom .dot { opacity: .6; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-cta__inner { grid-template-columns: 1fr; text-align: center; }
  .footer-cta__actions { justify-content: center; }
  .footer-main__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-main__grid { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
}

/* === Sticky Language Switcher (flush-right, compact, vertical) === */
.lang-switcher{
  position: fixed;
  top: 40%;
  right: 0;               /* flush to the extreme right */
  z-index: 1200;
  isolation: isolate;     /* keep its stacking context clean */
  transition: opacity .25s ease, transform .25s ease;
}

.lang-switcher.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
}

/* Vertical tab button */
.lang-switcher__button{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #0B1E3F;       /* your ink-blue */
  color: #fff;
  border: 0;                  /* no border */
  border-radius: 0;           /* no radius */
  padding: 10px 8px;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  user-select: none;
  cursor: pointer;
}

/* “English” label sizing responsive */
.lang-switcher__label{
  font-size: clamp(10px, 1.6vw, 12px);
}

/* Chevron (kept subtle and small) */
.lang-switcher__chev{
  transform: rotate(90deg);
  transition: transform .2s ease;
}
.lang-switcher[aria-expanded="true"] .lang-switcher__chev{
  transform: rotate(-90deg);
}

/* Dropdown panel */
.lang-switcher__menu{
  position: absolute;
  top: 50%;
  right: 100%;               /* open to the left of the tab */
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #E3E4E6;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  padding: 8px;
  min-width: 180px;
  display: none;
}

.lang-switcher[aria-expanded="true"] .lang-switcher__menu{ display: block; }

/* Dropdown header + separator */
.lang-menu__head{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6B7280;
  padding: 4px 6px 6px;
}
.lang-menu__sep{
  height: 1px;
  background: #ECEDEF;
  margin: 0 6px 6px;
}

/* Items */
.lang-item{
  width: 100%;
  display: block;
  background: none;
  border: 0;
  text-align: left;
  padding: 10px 10px;
  border-radius: 6px;
  font-weight: 600;
  color: #111827;
  font-size: 14px;
  cursor: pointer;
}
.lang-item:hover{ background: #F5F6F8; color: #2E3794; }

/* Responsiveness — keep it small on tablets/mobiles */
@media (max-width: 1024px){
  .lang-switcher__button{ padding: 8px 6px; }
  .lang-switcher__label{ font-size: clamp(10px, 2vw, 11px); }
}
@media (max-width: 640px){
  .lang-switcher{ top: 36%; }
  .lang-switcher__button{ padding: 8px 5px; }
  .lang-switcher__label{ font-size: 10px; }
  .lang-switcher__chev{ width: 14px; height: 14px; }
  .lang-switcher__menu{ min-width: 160px; }
}
