/* Flight Booking Center — mobile-first preview stylesheet.
   All class names and custom properties use the wcg- prefix.
   Adjust the colors below to change the theme. */

.wcg-page {
  --wcg-navy: #082858;
  --wcg-blue: #00669b;
  --wcg-blue-hover: #004e7a;
  --wcg-text: #294367;
  --wcg-pale: #f2f8fd;
  --wcg-hero-background: #edf6fc;
  --wcg-border: #dfe7ef;
  --wcg-radius: 12px;
  --wcg-gutter: clamp(20px, 4.4vw, 42px);
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 calc(92px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  color: var(--wcg-text);
  box-shadow: 0 0 45px rgb(8 40 88 / 10%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

/* The page canvas; the content stays centered on wide screens. */
html {
  background: #f3f5f7;
  scroll-padding-block: 20px 110px;
}

.wcg-page,
.wcg-page *,
.wcg-page *::before,
.wcg-page *::after { box-sizing: border-box; }
.wcg-page [hidden] { display: none !important; }
.wcg-page :where(h1, h2, h3, p, ul, ol) { margin: 0; }
.wcg-page :where(h1, h2, h3) { color: var(--wcg-navy); line-height: 1.22; }
.wcg-page :where(a) { color: inherit; text-underline-offset: 3px; }
.wcg-page :where(img) { max-width: 100%; height: auto; }
.wcg-page :where(a, summary) { -webkit-tap-highlight-color: transparent; }
.wcg-page :where(a, summary):focus-visible {
  outline: 3px solid #be5900;
  outline-offset: 5px;
}
.wcg-main:focus { outline: none; }

/* Accessible text remains available to screen readers. */
.wcg-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.wcg-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  transform: translateY(-180%);
  border-radius: 6px;
  background: var(--wcg-navy);
  color: #fff;
  font-weight: 700;
}
.wcg-skip-link:focus { transform: translateY(0); }

/* Header and native, JavaScript-free menu. */
.wcg-header {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 18px var(--wcg-gutter);
  background: #fff;
}
.wcg-brand {
  display: inline-flex;
  flex: 1 1 190px;
  align-items: center;
  gap: 10px;
  color: var(--wcg-navy);
  text-decoration: none;
}
.wcg-brand__logo { flex: 0 0 42px; width: 42px; }
.wcg-brand__name { font-size: clamp(20px, 3vw, 29px); font-weight: 750; letter-spacing: -1px; line-height: 1.1; }
.wcg-header > .wcg-button { display: none; }

/* Shared call buttons. Phone integration will be added separately. */
.wcg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, box-shadow 150ms ease;
}
.wcg-button--primary { background: var(--wcg-blue); color: #fff; }
.wcg-button--primary:hover { background: var(--wcg-blue-hover); box-shadow: 0 4px 12px rgb(0 78 122 / 18%); }
.wcg-button--secondary { border-color: var(--wcg-navy); color: var(--wcg-navy); background: #fff; }
.wcg-button--secondary:hover { background: var(--wcg-pale); }
.wcg-button .wcg-icon { width: 24px; height: 24px; flex: 0 0 24px; padding: 0; background: transparent; color: inherit; }
.wcg-button .wcg-icon::before { width: 100%; height: 100%; }

/* Hero: use this exact solid color as the Canva image background. */
.wcg-hero {
  display: grid;
  overflow: hidden;
  background: var(--wcg-hero-background);
}
.wcg-hero__content {
  max-width: 520px;
  padding: 38px var(--wcg-gutter) 30px;
}
.wcg-hero__title { max-width: 420px; font-size: clamp(36px, 5.2vw, 48px); font-weight: 750; letter-spacing: -1.3px; line-height: 1.13; }
.wcg-hero__description { margin-top: 18px; max-width: 380px; font-size: 18px; }
.wcg-hero .wcg-button { width: 100%; margin-top: 22px; }
.wcg-disclosure { font-size: 14px; line-height: 1.5; }
.wcg-hero .wcg-disclosure { display: flex; gap: 10px; max-width: 365px; margin-top: 22px; }
.wcg-disclosure .wcg-icon { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; padding: 0; background: transparent; }
.wcg-disclosure .wcg-icon::before { width: 100%; height: 100%; }
.wcg-hero__media {
  display: block;
  align-self: end;
  width: 100%;
  line-height: 0;
}
.wcg-hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Three-item service strip. */
.wcg-service-summary { padding: 24px var(--wcg-gutter); background: var(--wcg-pale); }
.wcg-service-summary__list { display: grid; gap: 20px; padding: 0; list-style: none; }
.wcg-service-summary__item { display: grid; grid-template-columns: 58px 1fr; column-gap: 14px; align-content: center; }
.wcg-service-summary__item > .wcg-icon { grid-row: span 2; }
.wcg-service-summary__title { align-self: end; font-size: 16px; margin-bottom: 4px; }
.wcg-service-summary__description { font-size: 14px; }

/* Content sections and reusable cards. */
.wcg-benefits, .wcg-process, .wcg-booking-topics, .wcg-faq { padding: 30px var(--wcg-gutter) 0; }
.wcg-section-title { font-size: clamp(23px, 3vw, 26px); text-align: center; letter-spacing: -.4px; }
.wcg-section-intro { max-width: 590px; margin: 8px auto 0; text-align: center; }
.wcg-benefits__list, .wcg-process__list, .wcg-booking-topics__list { display: grid; gap: 18px; margin-top: 22px; padding: 0; list-style: none; }
.wcg-card { min-width: 0; padding: 22px; border: 1px solid var(--wcg-border); border-radius: var(--wcg-radius); background: #fff; }
.wcg-benefits__item { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 14px; box-shadow: 0 2px 10px rgb(8 40 88 / 5%); }
.wcg-card__title { font-size: 16px; }
.wcg-card__description { grid-column: 1 / -1; font-size: 16px; }
.wcg-process__list { counter-reset: wcg-step; gap: 24px; }
.wcg-process__step { position: relative; display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 14px; counter-increment: wcg-step; }
.wcg-process__step::before { content: counter(wcg-step); position: absolute; top: -10px; left: 0; display: grid; place-items: center; width: 28px; height: 28px; border: 3px solid #fff; border-radius: 50%; background: var(--wcg-blue); color: #fff; font-size: 14px; font-weight: 700; }
.wcg-booking-topics__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 16px; }
.wcg-booking-topics__item { min-width: 0; text-align: center; }
.wcg-booking-topics__item > .wcg-icon { margin: 0 auto 12px; background: #fff; border: 1px solid var(--wcg-border); color: var(--wcg-blue); }
.wcg-booking-topics__title { font-size: 16px; }
.wcg-booking-topics__description { margin-top: 10px; font-size: 14px; }

/* About: a readable supporting page using the shared type, spacing and palette.
   No sticky sales bar, so this page needs no reserved space below the footer. */
.wcg-page--about { padding-bottom: 0; }
.wcg-about { padding: 38px var(--wcg-gutter) 30px; border-top: 1px solid var(--wcg-border); }
.wcg-about__intro, .wcg-about__section { max-width: 70ch; margin-inline: auto; }
.wcg-about .wcg-hero__title { max-width: none; }
.wcg-about .wcg-section-title { text-align: left; }
.wcg-about p { margin-top: 14px; }
.wcg-about__intro > p:first-of-type { margin-top: 22px; }
.wcg-about__section { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--wcg-border); }
.wcg-about .wcg-text-link { color: var(--wcg-blue); overflow-wrap: anywhere; }
.wcg-about .wcg-button { max-width: 100%; margin-top: 22px; }

/* Legal-page lists retain the supporting-page rhythm and remain easy to scan. */
.wcg-legal__effective-date { color: var(--wcg-navy); font-weight: 700; }
.wcg-legal ul { margin-top: 14px; padding-left: 1.4em; }
.wcg-legal li + li { margin-top: 6px; }

/* Native FAQ disclosure: keyboard operation comes from HTML. */
.wcg-faq__list { display: grid; gap: 8px; margin-top: 18px; }
.wcg-faq__item { border: 1px solid var(--wcg-border); border-radius: 8px; background: #fff; }
.wcg-faq__question { position: relative; padding: 13px 48px 13px 20px; color: var(--wcg-navy); font-weight: 600; cursor: pointer; list-style: none; }
.wcg-faq__question::-webkit-details-marker { display: none; }
.wcg-faq__question::before, .wcg-faq__question::after { content: ""; position: absolute; top: 50%; right: 20px; width: 12px; height: 2px; background: currentColor; }
.wcg-faq__question::after { transform: rotate(90deg); }
.wcg-faq__item[open] > .wcg-faq__question::after { transform: rotate(0); }
.wcg-faq__item[open] { background: #f8fbfe; }
.wcg-faq__question:hover { color: var(--wcg-blue); }
.wcg-faq__answer { padding: 0 20px 18px; max-width: 75ch; }

/* Closing call panel and footer. */
.wcg-final-cta { display: grid; gap: 16px; margin: 24px var(--wcg-gutter) 0; padding: 22px; border: 1px solid #dbeaf6; border-radius: var(--wcg-radius); background: var(--wcg-pale); text-align: center; }
.wcg-final-cta > .wcg-icon { width: 68px; height: 68px; margin: auto; color: #fff; background: var(--wcg-blue); }
.wcg-final-cta > .wcg-icon::before { width: 34px; height: 34px; }
.wcg-final-cta .wcg-section-title { font-size: 23px; }
.wcg-final-cta__description { margin-top: 8px; font-size: 15px; }
.wcg-final-cta__action .wcg-button { width: 100%; }
.wcg-final-cta__action .wcg-disclosure { margin-top: 9px; font-size: 13px; }
.wcg-footer { padding: 20px var(--wcg-gutter) 24px; text-align: center; font-size: 14px; }
.wcg-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 24px; padding: 0; list-style: none; }
.wcg-footer__link { display: inline-flex; align-items: center; min-height: 44px; color: var(--wcg-navy); font-size: 13px; font-weight: 700; text-decoration: none; }
.wcg-footer__link:hover { text-decoration: underline; }
.wcg-footer__disclosure { max-width: 730px; margin: 8px auto; }
.wcg-footer__copyright small { font-size: inherit; }

/* Mobile bar: reserved body padding keeps the footer above it. */
.wcg-sticky-cta { position: fixed; bottom: 0; inset-inline: 0; z-index: 20; padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--wcg-border); background: #fff; box-shadow: 0 -4px 18px rgb(8 40 88 / 8%); }
.wcg-button--sticky { width: 100%; }
.wcg-button--sticky .wcg-icon--chevron-right { margin-left: auto; }
.wcg-button--sticky .wcg-button__label { margin-right: auto; }

/* Small decorative SVG icons, embedded in CSS: no libraries or network requests.
   The HTML spans are aria-hidden; visible text supplies their meaning. */
.wcg-icon { display: inline-grid; place-items: center; flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: #e7f1fa; color: var(--wcg-navy); }
.wcg-icon::before { content: ""; display: block; width: 29px; height: 29px; background: currentColor; -webkit-mask: var(--wcg-icon) center / contain no-repeat; mask: var(--wcg-icon) center / contain no-repeat; }
.wcg-icon--phone { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8a15.4 15.4 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.24c1.1.36 2.3.55 3.6.55a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.6 21 3 13.4 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.3.2 2.5.55 3.6a1 1 0 0 1-.24 1z'/%3E%3C/svg%3E"); }
.wcg-icon--menu { width: 28px; height: 28px; background: none; --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 5h18M3 12h18M3 19h18'/%3E%3C/svg%3E"); }
.wcg-icon--shield { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Cpath d='M12 2c3 2 6 3 9 3v6c0 5-5 9-9 11C8 20 3 16 3 11V5c3 0 6-1 9-3Z'/%3E%3C/svg%3E"); }
.wcg-icon--privacy { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Crect x='4' y='10' width='16' height='12' rx='2'/%3E%3Cpath d='M7 10V7a5 5 0 0 1 10 0v3m-5 5v4'/%3E%3C/svg%3E"); }
.wcg-icon--information { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 11v6m0-10v2'/%3E%3C/svg%3E"); }
.wcg-icon--calendar { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M7 2v6m10-6v6M3 10h18m-14 4h3m4 0h3M7 17h3'/%3E%3C/svg%3E"); }
.wcg-icon--search { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Ccircle cx='10' cy='10' r='7'/%3E%3Cpath d='m15 15 7 7'/%3E%3C/svg%3E"); }
.wcg-icon--ticket { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Cpath d='M2 5h20v5a2 2 0 0 0 0 4v5H2v-5a2 2 0 0 0 0-4Zm7 0v3m0 2v4m0 2v3m4-10h5m-5 6h5'/%3E%3C/svg%3E"); }
.wcg-icon--conversation { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Cpath d='M16 10c0 4-5 6-9 4l-4 2 1-4C-1 6 6 1 12 4c3 1 4 3 4 6Zm-6 7c2 3 6 3 8 2l4 2-1-4c3-4 0-8-3-8'/%3E%3C/svg%3E"); }
.wcg-icon--plane { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 1-5 6-7-2-2 2 7 4-3 4-3-1-1 2 5 5 2-1-1-3 4-3 4 7 2-2-2-7 6-5Z'/%3E%3C/svg%3E"); }
.wcg-icon--globe { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cellipse cx='12' cy='12' rx='4' ry='10'/%3E%3Cpath d='M3 8h18M3 16h18'/%3E%3C/svg%3E"); }
.wcg-icon--traveler { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Ccircle cx='12' cy='7' r='5'/%3E%3Cpath d='M3 22v-2c0-7 18-7 18 0v2Z'/%3E%3C/svg%3E"); }
.wcg-icon--location { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.wcg-icon--chevron-right { --wcg-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='m9 5 7 7-7 7'/%3E%3C/svg%3E"); }

/* Tablet: allow the header and service strip to sit side by side. */
@media (min-width: 600px) {
  .wcg-header { flex-wrap: nowrap; gap: 24px; }
  .wcg-hero .wcg-button { width: auto; min-width: 275px; }
  .wcg-service-summary__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .wcg-service-summary__item { grid-template-columns: 1fr; gap: 8px; }
  .wcg-service-summary__item > .wcg-icon { grid-row: auto; }
  .wcg-booking-topics__list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
  .wcg-booking-topics__item { padding-inline: 16px; }
  .wcg-booking-topics__item + .wcg-booking-topics__item { border-left: 1px solid var(--wcg-border); }
}

/* Desktop: the same HTML becomes a wider, centered layout. */
@media (min-width: 800px) {
  .wcg-page { padding-bottom: 0; }
  .wcg-sticky-cta { display: none; }
  .wcg-header > .wcg-button { display: inline-flex; width: auto; white-space: nowrap; }
  .wcg-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    align-items: center;
    min-height: 455px;
  }
  .wcg-hero__content { padding: 44px 0 44px var(--wcg-gutter); }
  .wcg-hero__media { align-self: stretch; display: grid; align-items: center; }
  .wcg-service-summary__item { grid-template-columns: 56px 1fr; gap: 0 14px; }
  .wcg-service-summary__item > .wcg-icon { grid-row: span 2; }
  .wcg-service-summary__item + .wcg-service-summary__item { padding-left: 20px; border-left: 1px solid #d2dfec; }
  .wcg-benefits__list, .wcg-process__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wcg-process__list { gap: 44px; }
  .wcg-process__step:not(:last-child)::after { content: ""; position: absolute; top: 45%; left: calc(100% + 9px); width: 26px; border-top: 3px dotted #9cacbf; }
  .wcg-final-cta { grid-template-columns: 68px minmax(0, 1fr) 300px; align-items: center; gap: 20px; padding: 18px; text-align: left; }
  .wcg-final-cta .wcg-section-title { text-align: left; font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .wcg-button { transition: none; }
}

@media (forced-colors: active) {
  .wcg-icon::before, .wcg-faq__question::before, .wcg-faq__question::after { background: CanvasText; }
}

@media print {
  html { background: #fff; }
  .wcg-page { max-width: none; padding-bottom: 0; box-shadow: none; }
  .wcg-sticky-cta, .wcg-skip-link { display: none; }
  .wcg-card, .wcg-final-cta { break-inside: avoid; }
}
