/*
Theme Name: SneakerFlights
Theme URI: https://sneakerflights.com
Author: SneakerFlights
Author URI: https://sneakerflights.com
Description: Business class and first class flight booking agency theme. Specialising in cheap business class flights, booking first class airline tickets, and premium cabin travel at wholesale prices — up to 70% off published fares.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: sneakerflights
Tags: travel, flights, business-class, first-class, booking, airline
*/

/* =========================================================
   FONTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root{
  --navy: #0A0A0A;
  --navy-light: #1F1F1F;
  --navy-deep: #000000;
  --text: #1C2B3A;
  --text-soft: #56697C;
  --gold: #FDBF51;
  --gold-light: #FEE4A0;
  --gold-dim: #7A5C00;
  --coral: #0A0A0A;
  --coral-dark: #1F1F1F;
  --cream: #F7F4EE;
  --mist: #EAEFF3;
  --white: #FFFFFF;
  --border: #DDE3E8;
  --success: #2E8B57;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --container: 1180px;
  --shadow-card: 0 8px 24px rgba(11,37,64,0.08);
  --shadow-card-hover: 0 16px 36px rgba(11,37,64,0.16);
  --shadow-pop: 0 24px 60px rgba(11,37,64,0.22);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
input,select,textarea{ font-family: inherit; font-size: 1rem; }
:focus-visible{ outline: 3px solid var(--gold); outline-offset: 2px; }
.screen-reader-text{ position:absolute !important; left:-9999px; top:-9999px; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.15;
}
p{ margin: 0 0 1em; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.eyebrow{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--white);
  /*color: var(--gold-dim);*/
  font-weight: 600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 18px; height: 2px;
  background: #fff;
  /*background: var(--coral);*/
  display:inline-block;
}

.section{ padding: 88px 0; }
.section--tight{ padding: 56px 0; }
.section--navy{ background: var(--navy); color: rgba(255,255,255,0.88); }
.section--navy h2, .section--navy h3{ color: var(--white); }
.section--mist{ background: var(--mist); }
.section--cream{ background: var(--cream); }

.section-head{ max-width: 640px; margin: 0 0 48px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-head p{ color: var(--text-soft); font-size: 1.05rem; }
.section--navy .section-head p{ color: rgba(255,255,255,0.72); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-body);
  font-weight:700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-coral{ background: var(--coral); color: var(--white); box-shadow: 0 10px 24px rgba(253,191,81,0.45); }
.btn-coral:hover{ background: var(--coral-dark); }
.btn-gold{ background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover{ background: var(--gold-light); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-navy{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 9px 18px; font-size: 0.85rem; }

/* =========================================================
   TOP UTILITY BAR + HEADER
   ========================================================= */
.topbar{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:8px;
  padding-bottom:8px;
  gap:16px;
  flex-wrap: wrap;
}
.topbar a{ color: var(--gold-light); font-weight:600; }
.topbar a:hover{ color:var(--white); }
.topbar__hours{ opacity:0.85; }
.topbar__phone{ display:inline-flex; align-items:center; gap:6px; }

.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{ width:38px; height:38px; flex-shrink:0; }
.brand__text{
  font-family: var(--font-display);
  font-weight:600;
  font-size: 1.32rem;
  text-transform:uppercase;
  letter-spacing: 0.01em;
  line-height:1;
  color: var(--navy);
}
.brand__text span{ color: var(--gold-dim); }

.main-nav{ display:flex; align-items:center; gap: 36px; }
.main-nav ul{ display:flex; align-items:center; gap: 30px; }
.main-nav a{
  font-weight:600;
  font-size: 0.95rem;
  color: var(--text);
  position:relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0%; height:2px; background: var(--coral);
  transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav li.current-menu-item a::after{ width:100%; }
.header-cta{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  align-items:center; justify-content:center;
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{ width:20px; height:2px; background: var(--navy); display:block; transition: transform .25s ease, opacity .25s ease; }
/* Animate to X when open */
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px){
  /* Dropdown panel — falls from the top edge of the viewport */
  .main-nav{
    position:fixed;
    top: 0; left: 0; right: 0;      /* full width, anchored to top */
    height: auto;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background: var(--white);
    flex-direction:column;
    align-items:flex-start;
    padding: 80px 28px 32px;
    /* slide up off-screen by default, then drop down when open */
    transform: translateY(-110%);
    transition: transform .3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 300;                    /* above header (200) AND backdrop (210) */
  }
  .main-nav.is-open{ transform: translateY(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap: 20px; width:100%; }
  .main-nav ul li{ width:100%; }
  .main-nav a{
    display:block; font-size:1.1rem; padding: 8px 0;
    border-bottom: 1px solid var(--border);
    width:100%;
  }
  .main-nav ul li:last-child a{ border-bottom:none; }
  .header-cta{
    margin-top: 28px; flex-direction:row; gap:12px; width:100%;
  }
  .header-cta .btn{ flex:1; text-align:center; }
  .nav-toggle{ display:flex; z-index:310; position:relative; }
  .nav-backdrop{
    position:fixed; inset:0;
    background: rgba(0,0,0,0.45);
    opacity:0; pointer-events:none;
    transition:opacity .25s ease;
    z-index: 210;                    /* above header, below nav panel */
  }
  .nav-backdrop.is-open{ opacity:1; pointer-events:auto; }
}
@media (min-width: 881px){
  .header-cta .btn-sm{ display:none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  background:
    radial-gradient(820px 420px at 88% -8%, rgba(253,191,81,0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  overflow:hidden;
  padding: 64px 0 96px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:0.35;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.1) 70%);
}
.hero .container{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items:center;
}
.hero__copy h1{
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}
.hero__copy h1 em{
  font-style:normal; color: var(--gold-light);
}
.hero__copy p.lede{
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  max-width: 480px;
}
.hero__stats{
  display:flex; gap: 28px; margin-top: 34px; flex-wrap:wrap;
}
.hero__stat strong{
  display:block; font-family: var(--font-display);
  font-size: 1.7rem; color: var(--gold-light);
}
.hero__stat span{
  font-size:0.78rem; text-transform:uppercase; letter-spacing:.08em;
  color: rgba(255,255,255,0.6);
}

/* ---- Boarding pass quote form ---- */
.boarding-pass{
  position:relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow:hidden;
}
.boarding-pass__top{
  background: var(--gold);
  color: var(--navy-deep);
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 26px;
  font-family: var(--font-mono);
}
.boarding-pass__top .bp-label{
  font-size:0.72rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
}
.boarding-pass__top .bp-plane{ width:20px; height:20px; }
.boarding-pass__body{ padding: 28px 28px 8px; position:relative; }
.boarding-pass__body h3{
  font-size: 1.3rem; margin-bottom:4px;
}
.boarding-pass__body > p{
  font-size: 0.92rem; color: var(--text-soft); margin-bottom: 18px;
}

.trip-toggle{
  display:inline-flex;
  background: var(--mist);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 18px;
}
.trip-toggle button{
  border:none; background:transparent;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight:700; font-size:0.82rem;
  color: var(--text-soft);
  text-transform:uppercase; letter-spacing:.04em;
}
.trip-toggle button.is-active{ background: var(--navy); color: var(--white); }

.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom:14px; position:relative; }
.field-row.from-to::after{
  content:"";
  position:absolute; left:50%; top:50%; width:26px; height:26px;
  transform: translate(-50%,-50%);
  background: var(--cream);
  border: 1px dashed var(--gold-dim);
  border-radius:50%;
  display:none;
}
@media(min-width:1180px){ .field-row.from-to::after{ display:block; } }

.field{ display:flex; flex-direction:column; gap:6px; }
.field label{
  font-family: var(--font-mono);
  font-size: 0.68rem; text-transform:uppercase; letter-spacing:.1em;
  color: var(--text-soft); font-weight:600;
}
.field input, .field select{
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
}
.field input:focus, .field select:focus{ border-color: var(--gold-dim); }

.bp-perforation{
  display:flex; align-items:center; gap:6px;
  margin: 18px -28px 18px;
  padding: 0 28px;
}
.bp-perforation::before{
  content:"";
  flex:1;
  height:0;
  border-top: 2px dashed var(--border);
}
.bp-perforation .bp-dot{
  width:18px; height:18px; border-radius:50%;
  background: var(--white);
  border:1px solid var(--border);
  flex-shrink:0;
  margin-left:-9px;
}
.bp-perforation .bp-dot:last-child{ margin-left:auto; margin-right:-9px; }

.boarding-pass__footer{ padding: 0 28px 28px; }
.bp-note{
  text-align:center; font-size:0.78rem; color: var(--text-soft); margin-top:12px;
}
.bp-note strong{ color: var(--success); }
.hp-field{ position:absolute; left:-9999px; opacity:0; }

.form-success{
  background: rgba(46,139,87,0.1);
  border: 1.5px solid var(--success);
  color: #1f6b41;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight:600;
}
.form-error{
  background: rgba(10,10,10,0.06);
  border: 1.5px solid var(--coral-dark);
  color: var(--coral-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight:600;
}

@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .field-row{ grid-template-columns: 1fr; }
  .hero{ padding-top: 40px; }
}

/* ---- Boarding pass full mobile fix ---- */
@media (max-width: 640px){
  .hero{ padding: 32px 0 48px; }

  /* Stack hero copy above the form */
  .hero .container{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Boarding pass: reduce padding so it fits the screen */
  .boarding-pass__top{
    padding: 10px 16px;
    font-size: 0.72rem;
  }
  .boarding-pass__body{
    padding: 18px 16px 6px;
  }
  .boarding-pass__footer{
    padding: 0 16px 20px;
  }
  .bp-perforation{
    margin: 14px -16px 14px;
    padding: 0 16px;
  }

  /* Trip toggle: stretch full width so buttons don't overflow */
  .trip-toggle{
    display: flex;
    width: 100%;
  }
  .trip-toggle button{
    flex: 1;
    padding: 8px 6px;
    font-size: 0.75rem;
    text-align: center;
  }

  /* All form fields full width on mobile */
  .field-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Hero headline smaller on very narrow screens */
  .hero__copy h1{
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }
  .hero__copy p.lede{
    font-size: 0.98rem;
  }
  .hero__stats{
    gap: 18px;
  }
  .hero__stat strong{
    font-size: 1.3rem;
  }

  /* Make the review form card full-width */
  .review-form-card{
    padding: 24px 16px;
  }
}

/* =========================================================
   PARTNER / TRUST STRIP
   ========================================================= */
.trust-strip{ padding: 40px 0; border-bottom:1px solid var(--border); }
.trust-strip .container{
  display:flex; align-items:center; gap:28px; flex-wrap:wrap; justify-content:space-between;
}
.trust-strip p{
  margin:0; font-family: var(--font-mono); font-size:0.74rem;
  text-transform:uppercase; letter-spacing:.12em; color: var(--text-soft);
  white-space:nowrap;
}
.trust-badges{ display:flex; gap:22px; flex-wrap:wrap; }
.trust-badge{
  display:flex; align-items:center; gap:8px;
  font-weight:700; font-size:0.88rem; color: var(--navy);
}
.trust-badge svg{ width:20px; height:20px; flex-shrink:0; color: var(--gold-dim); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step{ position:relative; padding-left: 0; }
.step__num{
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--mist);
  -webkit-text-stroke: 1.5px var(--gold-dim);
  line-height:1;
  margin-bottom: 10px;
}
.step h3{ font-size: 1.2rem; margin-bottom:8px; }
.step p{ color: var(--text-soft); font-size:0.96rem; }
@media (max-width: 880px){ .steps{ grid-template-columns:1fr; gap:36px; } }

/* =========================================================
   DEALS
   ========================================================= */
.deals-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.deal-card{
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow:  var(--shadow-card-hover);
  /*box-shadow: var(--shadow-card);*/
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column;
}
.deal-card:hover{ transform: translateY(-4px); box-shadow: 0 8px 18px rgba(11,37,64,0.30); }
.deal-card__top{
  /*background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);*/
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color:var(--white);
  padding: 22px 22px 30px;
  position:relative;
}
.deal-card__route{ font-family: var(--font-display); font-size:1.25rem; text-transform:uppercase; }
.deal-card__route .arrow{ color: var(--gold-light); margin:0 6px; }
.deal-card__tag{
  position:absolute; top:16px; right:16px;
  background: var(--coral); color:var(--white);
  font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.deal-card__perf{
  height:0; border-top: 2px dashed var(--border);
  margin: 0 18px; position:relative;
}
.deal-card__perf::before, .deal-card__perf::after{
  content:""; position:absolute; top:-9px; width:18px; height:18px;
  background: var(--cream); border-radius:50%;
}
.deal-card__perf::before{ left:-27px; }
.deal-card__perf::after{ right:-27px; }
.deal-card__body{ padding: 20px 22px 24px; flex:1; display:flex; flex-direction:column; }
.deal-card__price{ font-family: var(--font-mono); font-size:1.6rem; color: var(--navy); font-weight:600; }
.deal-card__price span{ font-size:0.85rem; color: var(--text-soft); font-weight:400; }
.deal-card__cabin{ font-size:0.82rem; color: var(--text-soft); margin: 4px 0 16px; }
.deal-card__body .btn{ margin-top:auto; }
@media (max-width: 980px){ .deals-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .deals-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.features-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feature-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: border-color .2s ease, transform .2s ease;
}
.feature-card:hover{ border-color: var(--gold-dim); transform: translateY(-3px); }
.feature-card__icon{
  width:46px; height:46px; border-radius: var(--radius-sm);
  background: var(--mist);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px; color: var(--gold-dim);
}
.feature-card__icon svg{ width:24px; height:24px; }
.feature-card h3{ font-size: 1.02rem; margin-bottom:8px; text-transform:none; }
.feature-card p{ font-size:0.92rem; color: var(--text-soft); margin:0; }
@media (max-width: 980px){ .features-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .features-grid{ grid-template-columns: 1fr; } }

/* ---- "Why Choose Us" optional photo background variant ---- */
.section--why-photo{
  position:relative;
  overflow:hidden;
  color: rgba(255,255,255,0.9);
}
.why-photo-bg{
  position:absolute; inset:0; z-index:0;
}
.why-photo-bg img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.why-photo-bg__tint{ position:absolute; inset:0; }
.section--why-photo .container{ position:relative; z-index:1; }
.section--why-photo .section-head p{ color: rgba(255,255,255,0.72); }
.section--why-photo .eyebrow{ color: var(--gold-light); }
.section--why-photo .eyebrow::before{ background: var(--gold-light); }
.section--why-photo h2{ color: var(--white); }
.section--why-photo .feature-card{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.18);
}
.section--why-photo .feature-card:hover{ border-color: var(--gold-light); background: rgba(255,255,255,0.13); }
.section--why-photo .feature-card__icon{ background: rgba(255,255,255,0.14); color: var(--gold-light); }
.section--why-photo .feature-card h3{ color: var(--white); }
.section--why-photo .feature-card p{ color: rgba(255,255,255,0.72); }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align:center; }
.stat-block strong{
  display:block; font-family: var(--font-display); font-size: clamp(2rem,3vw,2.8rem);
  color: var(--gold-light);
}
.stat-block span{ font-size:0.82rem; text-transform:uppercase; letter-spacing:.08em; color: rgba(255,255,255,0.65); }
@media (max-width: 760px){ .stats-band{ grid-template-columns: 1fr 1fr; gap: 36px 20px; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.testimonial-card .stars{ color: var(--gold); letter-spacing:2px; margin-bottom:12px; font-size:0.9rem; }
.testimonial-card p.quote{ font-size:0.96rem; color:var(--text); margin-bottom:18px; }
.testimonial-card .who{ display:flex; align-items:center; gap:12px; }
.who__avatar{
  width:40px; height:40px; border-radius:50%;
  background: var(--navy); color: var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:0.95rem;
}
.who__name{ font-weight:700; font-size:0.92rem; }
.who__meta{ font-size:0.78rem; color: var(--text-soft); }
@media (max-width: 980px){ .testimonial-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .testimonial-grid{ grid-template-columns: 1fr; } }

/* ---- Rating summary (Reviews page) ---- */
.rating-summary{
  display:grid; grid-template-columns: 280px 1fr; gap: 48px; align-items:center;
  max-width: 880px; margin: 0 auto;
  background: var(--cream); border-radius: var(--radius-lg); padding: 40px;
}
.rating-summary__score{ text-align:center; border-right: 1px solid var(--border); padding-right:40px; }
.rating-summary__number{ font-family: var(--font-display); font-size: 3.6rem; color: var(--navy); line-height:1; }
.rating-summary__stars{ color: var(--gold); font-size:1.3rem; letter-spacing:3px; margin: 8px 0; }
.rating-summary__score p{ font-size:0.84rem; color: var(--text-soft); margin:0; }
.rating-bar-row{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.rating-bar-row:last-child{ margin-bottom:0; }
.rating-bar-row__label{ width:28px; font-size:0.82rem; font-weight:600; color: var(--navy); flex-shrink:0; }
.rating-bar-row__track{ flex:1; height:8px; border-radius:99px; background: var(--mist); overflow:hidden; }
.rating-bar-row__fill{ height:100%; background: var(--gold); border-radius:99px; }
.rating-bar-row__pct{ width:42px; text-align:right; font-size:0.78rem; color: var(--text-soft); flex-shrink:0; }
@media (max-width: 760px){
  .rating-summary{ grid-template-columns: 1fr; padding:28px; gap:28px; }
  .rating-summary__score{ border-right:none; border-bottom:1px solid var(--border); padding-right:0; padding-bottom:24px; }
}

/* ---- Review submission form ---- */
.review-form-card{
  max-width: 640px; margin: 0 auto;
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-card);
}
.star-picker{
  display:flex; justify-content:center; gap:8px; margin: 4px 0 24px;
}
.star-picker__star{
  background:none; border:none; font-size:2.2rem; line-height:1;
  color: var(--border); cursor:pointer; transition: color .15s ease, transform .15s ease;
}
.star-picker__star:hover{ transform: scale(1.12); }
.star-picker__star.is-active{ color: var(--gold); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list{ max-width: 760px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--border); }
.faq-q{
  width:100%; text-align:left; background:none; border:none;
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px 4px; font-weight:700; font-size:1.02rem; color: var(--navy);
}
.faq-q .plus{
  width:22px; height:22px; flex-shrink:0; position:relative; margin-left:16px;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; background: var(--coral);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.faq-q .plus::before{ width:14px; height:2px; }
.faq-q .plus::after{ width:2px; height:14px; transition: transform .2s ease; }
.faq-item.is-open .faq-q .plus::after{ transform: translate(-50%,-50%) rotate(90deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-a p{ padding: 0 4px 20px; color: var(--text-soft); margin:0; }

/* =========================================================
   IMAGE PLACEHOLDERS
   Styled placeholder blocks shown until real photos are
   uploaded. Each has an upload hint visible only in admin
   (controlled by body.logged-in class).
   ========================================================= */
.sf-img-wrap{
  position:relative; overflow:hidden; border-radius: var(--radius-md);
  background: var(--mist);
}
.sf-img-wrap img{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* Base placeholder — centred icon + label */
.sf-img-placeholder{
  position:relative;
  background: linear-gradient(135deg, var(--mist) 0%, #d8e4ec 100%);
  border-radius: var(--radius-md);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:10px; color: var(--text-soft);
  border: 2px dashed var(--border);
  overflow:hidden;
}
.sf-img-placeholder__icon{
  width:48px; height:48px; border-radius:50%;
  background: var(--white); display:flex;
  align-items:center; justify-content:center;
  color: var(--gold-dim); box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sf-img-placeholder__icon svg{ width:22px; height:22px; }
.sf-img-placeholder__label{
  font-size:0.78rem; font-weight:600; text-transform:uppercase;
  letter-spacing:.06em; color: var(--text-soft); text-align:center; padding:0 12px;
}
.sf-img-placeholder__hint{
  position:absolute; bottom:0; left:0; right:0;
  background: rgba(10,10,10,0.72); color:rgba(255,255,255,0.88);
  font-size:0.72rem; text-align:center; padding:8px 12px;
  display:none;
}
/* Show upload hint only when logged in to WP admin */
.logged-in .sf-img-placeholder__hint{ display:block; }

/* Size variants */
.sf-img-placeholder--hero{
  width:100%; height:520px;
  border-radius: var(--radius-lg);
}
.sf-img-placeholder--wide{
  width:100%; height:380px;
}
.sf-img-placeholder--card{
  width:100%; height:220px;
}
.sf-img-placeholder--square{
  width:100%; aspect-ratio:1/1;
}
.sf-img-placeholder--story{
  width:100%; height:360px;
}
.sf-img-placeholder--step{
  width:100%; height:280px;
}
.sf-img-placeholder--thumb{
  width:100%; height:180px;
}

/* Layout helpers used alongside placeholders */
.sf-img-section-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center;
}
.sf-img-section-grid--reverse{ direction:rtl; }
.sf-img-section-grid--reverse > *{ direction:ltr; }
.sf-img-trio{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.sf-img-duo{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:900px){
  .sf-img-section-grid{ grid-template-columns:1fr; direction:ltr; }
  .sf-img-section-grid--reverse{ direction:ltr; }
  .sf-img-trio{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .sf-img-trio{ grid-template-columns:1fr; }
  .sf-img-duo{ grid-template-columns:1fr; }
  .sf-img-placeholder--hero{ height:260px; }
  .sf-img-placeholder--wide{ height:220px; }
}


.page-hero--how-to-book{ text-align:center; }
.page-hero--how-to-book p{ max-width:520px; margin:0 auto; }

.htb-steps{ display:flex; flex-direction:column; gap: 96px; }

/* Each step: two-column grid (content | visual) */
.htb-step{
  display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center;
  position:relative;
}
.htb-step--reverse{ direction:rtl; }
.htb-step--reverse > *{ direction:ltr; }

.htb-step__number{
  position:absolute; top:-28px; left:0;
  font-family: var(--font-display);
  font-size: 6rem; line-height:1;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  opacity: 0.25;
  pointer-events:none; user-select:none;
}
.htb-step--reverse .htb-step__number{ left:auto; right:0; }

.htb-step__icon{
  width:56px; height:56px; border-radius:50%;
  background: var(--gold);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; color: var(--navy-deep);
}
.htb-step__body h2{ font-size: clamp(1.4rem,2.5vw,1.9rem); margin-bottom:14px; }
.htb-step__body p{ color: var(--text-soft); margin-bottom:10px; }
.htb-step__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:22px; }
.btn-outline-dark{
  border:2px solid var(--navy); color: var(--navy); background:transparent;
  transition: background-color .18s ease, color .18s ease;
}
.btn-outline-dark:hover{ background: var(--navy); color: var(--white); }

/* Connector line between steps */
.htb-step__connector{
  position:absolute; left:50%; top:100%; transform:translateX(-50%);
  width:2px; height:64px; background: linear-gradient(180deg, var(--gold), transparent);
  margin-top:16px;
}

/* Visual cards (step 1) */
.htb-step__visual{ display:flex; flex-direction:column; gap:16px; }
.htb-visual-card{
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding:18px 20px;
  display:flex; align-items:center; gap:16px;
}
.htb-visual-card--offset{ margin-left:32px; }
.htb-visual-card__icon{
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; color: var(--white);
}
.htb-visual-card strong{ display:block; font-size:0.92rem; color:var(--navy); margin-bottom:2px; }
.htb-visual-card span{ font-size:0.8rem; color:var(--text-soft); }

/* Email preview mockup (step 2) */
.htb-email-preview{
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-pop);
  overflow:hidden;
}
.htb-email-preview__header{
  background: var(--mist); padding:10px 14px; display:flex; gap:6px; align-items:center;
}
.htb-email-preview__dot{ width:10px; height:10px; border-radius:50%; display:inline-block; }
.htb-email-preview__body{ padding:20px; }
.htb-email-preview__from{ font-size:0.8rem; color:var(--text-soft); margin-bottom:4px; }
.htb-email-preview__subject{
  font-weight:700; font-size:0.92rem; color:var(--navy); margin-bottom:14px;
  padding-bottom:12px; border-bottom:1px solid var(--border);
}
.htb-email-preview__option{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0; border-bottom:1px solid var(--mist); font-size:0.88rem; color:var(--text);
}
.htb-email-preview__option:last-child{ border-bottom:none; }

/* E-ticket mockup (step 3) */
.htb-ticket{
  background: var(--navy); border-radius: var(--radius-lg);
  padding:28px; color:var(--white); box-shadow: var(--shadow-pop);
}
.htb-ticket__top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:20px; font-size:0.72rem; text-transform:uppercase;
  letter-spacing:.1em; color:var(--gold);
}
.htb-ticket__route{
  display:flex; align-items:center; gap:16px; justify-content:center;
  font-family:var(--font-display); font-size:2rem; margin-bottom:8px;
}
.htb-ticket__detail{
  text-align:center; font-size:0.8rem; color:rgba(255,255,255,0.6);
  margin-bottom:22px;
}
.htb-ticket__barcode{
  display:flex; align-items:flex-end; gap:2px; justify-content:center;
  padding-top:16px; border-top:1px dashed rgba(255,255,255,0.2);
}
.htb-ticket__barcode div{
  width:3px; border-radius:1px;
  background: rgba(255,255,255,0.7);
}

/* Trust badges row */
.htb-trust-badges{ display:flex; flex-wrap:wrap; gap:18px; margin-top:24px; }
.htb-badge{
  display:flex; align-items:center; gap:8px;
  font-size:0.82rem; font-weight:600; color:var(--text);
}
.htb-badge svg{ width:18px; height:18px; color:var(--gold-dim); flex-shrink:0; }

@media (max-width: 900px){
  .htb-step{ grid-template-columns:1fr; gap:32px; direction:ltr; }
  .htb-step--reverse{ direction:ltr; }
  .htb-step__visual--2, .htb-step__visual--3{ order: -1; }
  .htb-step__number{ font-size:4rem; top:-20px; left:0 !important; right:auto !important; }
  .htb-visual-card--offset{ margin-left:0; }
  .htb-step__connector{ display:none; }
  .htb-steps{ gap:64px; }
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display:flex; align-items:center; justify-content:space-between; gap: 32px; flex-wrap:wrap;
}
.cta-band h2{ color:var(--white); margin-bottom:8px; font-size: clamp(1.5rem,2.6vw,2.1rem); }
.cta-band p{ color: rgba(255,255,255,0.75); margin:0; max-width: 480px; }
.cta-band__actions{ display:flex; gap:14px; flex-wrap:wrap; }
@media (max-width:760px){
  .cta-band{ padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-band__actions{ width: 100%; }
  .cta-band__actions .btn{ flex: 1; text-align: center; justify-content: center; }
}
@media (max-width:480px){
  .cta-band__actions{ flex-direction: column; }
  .cta-band__actions .btn{ width: 100%; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand__text{ color: var(--white); }
.footer-brand .brand__text span{ color: var(--gold-light); }
.footer-brand p{ margin-top:14px; font-size:0.92rem; max-width: 280px; }
.footer-social{ display:flex; gap:10px; margin-top: 18px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  border: 1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h4{ color: var(--white); font-size:0.92rem; margin-bottom:18px; letter-spacing:.05em; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:0.92rem; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-contact li{ display:flex; gap:10px; font-size:0.9rem; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; flex-shrink:0; margin-top:3px; color: var(--gold-light); }
.footer-newsletter{ margin-top:16px; }
.footer-newsletter form{ display:flex; gap:8px; }
.footer-newsletter input{
  flex:1; border-radius: var(--radius-pill); border:1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06); color:var(--white); padding: 10px 16px; font-size:0.88rem;
}
.footer-newsletter input::placeholder{ color: rgba(255,255,255,0.45); }
.footer-newsletter button{
  border-radius: var(--radius-pill); border:none; background: var(--coral); color:var(--white);
  padding: 10px 18px; font-weight:700; font-size:0.85rem; flex-shrink:0;
}
.footer-bottom{
  padding: 22px 0 28px; display:flex; justify-content:space-between; gap:16px;
  flex-wrap:wrap; font-size:0.82rem;
}
.footer-bottom a:hover{ color: var(--gold-light); }
@media (max-width: 980px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .footer-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   PAGE HERO (sub-pages: About / Contact / Blog)
   ========================================================= */
.page-hero{
  background:
    radial-gradient(640px 320px at 90% 0%, rgba(253,191,81,0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 64px 0 56px;
  color: var(--white);
}
.page-hero .eyebrow{ color: var(--gold-light); }
.page-hero h1{ color: var(--white); font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 12px; }
.page-hero p{ color: rgba(255,255,255,0.75); max-width: 600px; font-size: 1.05rem; margin:0; }
.breadcrumb{ font-size:0.82rem; color: rgba(255,255,255,0.55); margin-bottom:14px; font-family: var(--font-mono); }
.breadcrumb a{ color: rgba(255,255,255,0.8); }
.breadcrumb a:hover{ color: var(--gold-light); }
.breadcrumb--light{ color: var(--text-soft); text-align:center; margin-bottom:20px; }
.breadcrumb--light a{ color: var(--text-soft); }
.breadcrumb--light a:hover{ color: var(--gold-dim); }

/* =========================================================
   QUOTE MODAL
   ========================================================= */
.sf-modal-overlay{
  position:fixed; inset:0; z-index:500;
  background: rgba(0,0,0,0.68);
  display:none; align-items:flex-start; justify-content:center;
  padding: 50px 20px;
  overflow-y:auto;
}
.sf-modal-overlay.is-open{ display:flex; }
.sf-modal-inner{
  position:relative;
  max-width: 560px;
  width:100%;
  margin:auto;
  animation: sfModalIn .22s ease;
}
@keyframes sfModalIn{
  from{ opacity:0; transform: translateY(14px) scale(0.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}
.sf-modal-close{
  position:absolute; top:-16px; right:-16px; z-index:2;
  width:38px; height:38px; border-radius:50%;
  background: var(--white); color: var(--navy);
  border: none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: background-color .18s ease, transform .18s ease;
}
.sf-modal-close:hover{ background: var(--gold); transform: rotate(90deg); }
body.modal-open{ overflow:hidden; }
@media (max-width:600px){
  .sf-modal-overlay{
    padding: 12px 8px;
    align-items: flex-start;
  }
  .sf-modal-inner{
    margin: 0 auto;
    width: 100%;
  }
  .sf-modal-close{
    top: -12px; right: 4px;
    width: 34px; height: 34px;
  }
  /* Boarding pass inside modal */
  .sf-modal-inner .boarding-pass__top{ padding: 10px 14px; font-size: 0.7rem; }
  .sf-modal-inner .boarding-pass__body{ padding: 16px 14px 6px; }
  .sf-modal-inner .boarding-pass__footer{ padding: 0 14px 18px; }
  .sf-modal-inner .boarding-pass__body h3{ font-size: 1rem; }
  .sf-modal-inner .boarding-pass__body > p{ font-size: 0.82rem; }
  .sf-modal-inner .trip-toggle{ display:flex; width:100%; }
  .sf-modal-inner .trip-toggle button{ flex:1; padding:7px 4px; font-size:0.7rem; }
  .sf-modal-inner .bp-perforation{ margin: 12px -14px 12px; padding: 0 14px; }
  .sf-modal-inner .field-row{ grid-template-columns: 1fr; gap: 10px; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.story-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items:center; }
.story-art{
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.4;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.story-art svg{ width:62%; height:62%; }
.story-art__hint{
  position:absolute; left:16px; right:16px; bottom:16px;
  background: rgba(7,26,46,0.7);
  color: rgba(255,255,255,0.85);
  font-size: 0.74rem;
  line-height:1.5;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-align:center;
}
.story-art--photo{ background: var(--mist); }
.story-art--photo img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.story-copy h2{ font-size: clamp(1.7rem,2.8vw,2.3rem); }
.story-copy p{ color: var(--text-soft); }
@media (max-width: 900px){ .story-grid{ grid-template-columns:1fr; } }

.values-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:22px; }
@media (max-width:760px){ .values-grid{ grid-template-columns:1fr; } }

.team-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.team-card{ text-align:center; }
.team-card .sf-img-placeholder--square{
  border-radius: var(--radius-md); margin-bottom:14px; aspect-ratio:1/1; height:auto;
}
.team-card__avatar{
  width:96px; height:96px; border-radius:50%; margin: 0 auto 14px;
  background: var(--mist); color: var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1.6rem;
  border: 3px solid var(--gold-light);
}
.team-card h3{ font-size:1rem; margin-bottom:2px; text-transform:none; }
.team-card span{ font-size:0.82rem; color: var(--text-soft); }
@media (max-width: 980px){ .team-grid{ grid-template-columns: 1fr 1fr; } }

/* ---- Fare comparison table ---- */
.fare-table-wrap{ overflow-x:auto; border:1px solid var(--border); border-radius: var(--radius-md); }
.fare-table{ width:100%; border-collapse:collapse; min-width:600px; }
.fare-table th{
  background: var(--navy); color: var(--white); text-align:left;
  padding:14px 18px; font-size:0.74rem; text-transform:uppercase; letter-spacing:.06em; font-weight:700;
}
.fare-table td{ padding:14px 18px; border-bottom:1px solid var(--border); font-size:0.92rem; color: var(--text); }
.fare-table tr:last-child td{ border-bottom:none; }
.fare-table tr:nth-child(even) td{ background: var(--mist); }
.fare-table td.price{ font-weight:700; color: var(--gold-dim); white-space:nowrap; }
.fare-table .airline-name{ font-weight:700; color: var(--navy); }

/* ---- Destination deal cards (struck-through price style) ---- */
.fare-deal-grid{ display:grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap:16px; }
.fare-deal-card{
  background: var(--white); border:1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 18px; text-align:center; transition: transform .2s ease, border-color .2s ease;
}
.fare-deal-card:hover{ transform: translateY(-3px); border-color: var(--gold-dim); }
.fare-deal-card__city{ font-family: var(--font-display); font-size:1.1rem; color: var(--navy); margin-bottom:1px; }
.fare-deal-card__country{ font-size:0.72rem; color: var(--text-soft); text-transform:uppercase; letter-spacing:.05em; margin-bottom:14px; }
.fare-deal-card__was{ font-size:0.82rem; color: var(--text-soft); text-decoration:line-through; }
.fare-deal-card__now{ font-family: var(--font-display); font-size:1.4rem; color: var(--coral); margin: 1px 0 14px; }
.fare-deal-card__now span{ font-size:0.65rem; font-family: var(--font-body); font-weight:600; color: var(--text-soft); text-transform:uppercase; letter-spacing:.04em; }

/* ---- Popular route highlight cards ---- */
.route-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:20px; }
.route-card{ background: var(--white); border:1px solid var(--border); border-radius: var(--radius-md); padding:24px; }
.route-card__route{
  font-family: var(--font-display); font-size:1.25rem; color: var(--navy);
  margin-bottom:8px; display:flex; align-items:center; gap:10px;
}
.route-card__route .arrow{ color: var(--gold-dim); }
.route-card p{ color: var(--text-soft); font-size:0.9rem; margin:0; line-height:1.6; }
@media (max-width:760px){ .route-grid{ grid-template-columns:1fr; } }

/* ---- Destination pills (simple list, no dead links) ---- */
.dest-pills{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.dest-pill{
  padding:10px 20px; border-radius: var(--radius-pill); background: var(--white);
  border:1px solid var(--border); font-weight:600; font-size:0.88rem; color: var(--navy);
  transition: border-color .2s ease, background-color .2s ease;
}
.dest-pill:hover{ border-color: var(--gold-dim); background: var(--mist); }

/* ---- Checklist (key features) ---- */
.check-list{ display:flex; flex-direction:column; gap:14px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; }
.check-list li .ico{
  width:24px; height:24px; border-radius:50%; background: var(--coral); color:#fff;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
}
.check-list li .ico svg{ width:12px; height:12px; }
.check-list li strong{ display:block; color: var(--navy); font-size:0.96rem; margin-bottom:2px; }
.check-list li span.desc{ color: var(--text-soft); font-size:0.88rem; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items:flex-start; }
.contact-cards{ display:flex; flex-direction:column; gap:18px; }
.contact-card{
  background: var(--white); border:1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px; display:flex; gap:16px; align-items:flex-start;
}
.contact-card__icon{
  width:44px; height:44px; border-radius: var(--radius-sm); background: var(--mist);
  display:flex; align-items:center; justify-content:center; color: var(--gold-dim); flex-shrink:0;
}
.contact-card__icon svg{ width:22px; height:22px; }
.contact-card h3{ font-size:0.95rem; text-transform:none; margin-bottom:4px; }
.contact-card p, .contact-card a{ font-size:0.92rem; color: var(--text-soft); margin:0; }
.contact-card a:hover{ color: var(--coral); }

.contact-form-card{
  background: var(--white); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-card h2{ font-size:1.5rem; }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.form-grid .field--full{ grid-column: 1 / -1; }
.field textarea{
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding:11px 12px;
  background: var(--white); resize: vertical; min-height: 130px;
}
.field textarea:focus{ border-color: var(--gold-dim); }
.map-embed{ border-radius: var(--radius-lg); overflow:hidden; margin-top:26px; border:1px solid var(--border); }
.map-embed iframe{ width:100%; height:280px; border:0; display:block; }
@media (max-width: 980px){ .contact-grid{ grid-template-columns:1fr; } .form-grid{ grid-template-columns:1fr; } }

/* =========================================================
   BLOG PAGE
   ========================================================= */
.blog-layout{ display:grid; grid-template-columns: 1fr 340px; gap: 48px; align-items:start; }
.blog-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-card{
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column;
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.blog-card__thumb{
  aspect-ratio: 16/9; background: var(--mist);
  display:flex; align-items:center; justify-content:center; color: var(--navy-light); overflow:hidden;
}
.blog-card__thumb img{ width:100%; height:100%; object-fit:cover; }
.blog-card__thumb svg{ width:52px; height:52px; opacity:0.35; }
.blog-card__body{ padding: 22px 22px 26px; flex:1; display:flex; flex-direction:column; }
.blog-card__cat{
  display:inline-block; padding: 3px 12px; border-radius: var(--radius-pill);
  background: var(--mist); color: var(--navy); font-size:0.72rem;
  font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:11px;
}
.blog-card h3{
  font-size:1.12rem; margin-bottom:10px; text-transform:none;
  font-family: var(--font-body); font-weight:700;
}
.blog-card h3 a:hover{ color: var(--coral); }
.blog-card p{ font-size:0.9rem; color: var(--text-soft); flex:1; }
.blog-card__meta{
  display:flex; align-items:center; gap:12px; margin-top:18px;
  font-size:0.78rem; color: var(--text-soft);
}
.blog-card__meta .dot{ width:3px; height:3px; background: var(--text-soft); border-radius:50%; }

.blog-featured{
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  overflow:hidden; margin-bottom: 28px;
}
.blog-featured__thumb{
  aspect-ratio: 16/7;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  display:flex; align-items:center; justify-content:center; color: var(--gold-light);
}
.blog-featured__thumb svg{ width:72px; height:72px; opacity:0.7; }
.blog-featured__body{ padding: 28px; }
.blog-featured .blog-card__cat{ background: var(--coral); color: var(--white); }
.blog-featured h2{ font-size: clamp(1.4rem,2.4vw,1.9rem); text-transform:none; font-family: var(--font-body); font-weight:800; margin-bottom:12px; }

/* Sidebar */
.blog-sidebar{ display:flex; flex-direction:column; gap:26px; }
.sidebar-widget{
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-card);
}
.sidebar-widget h3{ font-size:1rem; letter-spacing:.04em; margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.widget-cats{ display:flex; flex-direction:column; gap:8px; }
.widget-cats a{
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.9rem; padding: 9px 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); color: var(--text);
  transition: border-color .18s, color .18s;
}
.widget-cats a:hover{ border-color: var(--gold-dim); color: var(--gold-dim); }
.widget-cats span{ background: var(--mist); border-radius:50%; width:22px; height:22px; display:flex; align-items:center; justify-content:center; font-size:0.72rem; font-weight:700; }
.widget-search{ display:flex; gap:8px; }
.widget-search input{
  flex:1; border: 1.5px solid var(--border); border-radius: var(--radius-pill);
  padding: 10px 16px; font-size:0.88rem;
}
.widget-search button{
  border-radius: var(--radius-pill); border:none; background: var(--navy); color:var(--white);
  padding: 10px 18px; font-size:0.85rem; font-weight:700;
}
.widget-posts{ display:flex; flex-direction:column; gap:14px; }
.widget-post{ display:flex; gap:12px; }
.widget-post__thumb{
  width:62px; height:50px; border-radius: var(--radius-sm); flex-shrink:0;
  background: var(--mist); display:flex; align-items:center; justify-content:center; color: var(--navy-light);
}
.widget-post__thumb svg{ width:20px; height:20px; opacity:0.5; }
.widget-post h4{ font-size:0.88rem; font-family: var(--font-body); text-transform:none; font-weight:700; margin-bottom:3px; }
.widget-post h4 a:hover{ color: var(--coral); }
.widget-post span{ font-size:0.75rem; color: var(--text-soft); }
.pagination{ display:flex; gap:8px; margin-top:32px; }
.pagination a, .pagination span{
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  font-size:0.9rem; font-weight:600;
}
.pagination .current{ background: var(--navy); color:var(--white); border-color: var(--navy); }
.pagination a:hover{ border-color: var(--gold-dim); color: var(--gold-dim); }
@media (max-width: 1050px){ .blog-layout{ grid-template-columns:1fr; } }
@media (max-width: 760px){ .blog-grid{ grid-template-columns:1fr; } }

/* =========================================================
   SKIP LINK
   ========================================================= */
.skip-to-content{
  position:fixed; top:-60px; left:16px; z-index:9999;
  background: var(--navy); color:var(--white); padding: 10px 18px;
  border-radius: var(--radius-sm); font-weight:700; transition: top .15s;
}
.skip-to-content:focus{ top:14px; }


/* =========================================================
   HERO BACKGROUND IMAGE / DECORATIVE ART
   ========================================================= */

/* Decorative default illustration (no custom photo uploaded) */
.hero-art{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-art svg{
  position: absolute;
  top: 0; right: -4%;
  height: 100%;
  width: auto;
  max-width: 60%;
  opacity: 0.9;
}

/*
  Custom uploaded photo — capped to a fixed-height band at the
  top of the hero rather than stretching across the ENTIRE
  section (which can become very tall due to the long booking
  form). This prevents the photo from being zoomed/cropped into
  an oversized, distorted-looking background. It fades smoothly
  into the solid navy color used for the rest of the section.
*/
.hero-photo{
  position: absolute;
  top: 0; left: 0; right: 0;
  /*height: 560px;*/
  /*max-height: 62vh;*/
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo__fade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--navy-deep));
}
.hero-photo__tint{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 420px at 88% -8%, rgba(253,191,81,0.20), transparent 60%),
    linear-gradient(160deg, rgba(7,26,46,0.78) 0%, rgba(11,37,64,0.62) 55%, rgba(22,56,92,0.45) 100%);
}
@media (max-width: 760px){
  .hero-photo{ height: 380px; max-height: 48vh; }
}

/* =========================================================
   AIRPORT AUTOCOMPLETE DROPDOWN (Skylux-style, body-mounted)
   ========================================================= */
.sf-ac-dropdown{
  position: fixed !important;
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-pop) !important;
  z-index: 99999 !important;
  max-height: 320px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 6px 0 !important;
  margin: 0 !important;
  list-style: none !important;
  display: block !important;
  font-family: var(--font-body) !important;
}
.sf-ac-dropdown[hidden]{ display: none !important; }

.sf-ac-row{
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 9px 14px !important;
  margin: 0 !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
  list-style: none !important;
  font-size: 0.86rem !important;
  line-height: 1.3 !important;
  text-align: left !important;
}
.sf-ac-row:hover,
.sf-ac-row.is-active{
  background: var(--mist) !important;
}
.sf-ac-row.sf-ac-indented{ padding-left: 30px !important; }

.sf-ac-icon{
  flex-shrink: 0 !important;
  width: 18px !important; height: 18px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  color: var(--gold-dim) !important;
  margin-top: 1px !important;
}
.sf-ac-icon svg{ width: 15px !important; height: 15px !important; display:block !important; }

.sf-ac-text{ display: flex !important; flex-direction: column !important; gap: 1px !important; min-width: 0 !important; }
.sf-ac-primary{
  font-weight: 700 !important;
  color: var(--navy) !important;
  font-size: 0.88rem !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.sf-ac-secondary{
  font-size: 0.74rem !important;
  color: var(--text-soft) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.sf-ac-tertiary{
  font-size: 0.68rem !important;
  color: var(--gold-dim) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  letter-spacing: .02em !important;
}
.sf-ac-row.sf-ac-group-header .sf-ac-primary{ color: var(--navy); }
.sf-ac-row.sf-ac-group-header .sf-ac-secondary{ color: var(--text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 0.68rem; }
.sf-ac-row.sf-ac-group-header .sf-ac-tertiary{ color: var(--gold-dim); font-weight: 600; }

.sf-ac-empty{
  padding: 16px !important;
  text-align: center !important;
  color: var(--text-soft) !important;
  font-size: 0.85rem !important;
}

.sf-ac-dropdown::-webkit-scrollbar{ width: 6px !important; }
.sf-ac-dropdown::-webkit-scrollbar-track{ background: transparent !important; }
.sf-ac-dropdown::-webkit-scrollbar-thumb{ background: var(--border) !important; border-radius: 3px !important; }
