/*
Theme Name: iFlyGo
Theme URI: https://iflygo.com.au
Author: iFlyGo Travel
Author URI: https://iflygo.com.au
Description: Adventure Travel for 18-35s. Custom WordPress theme for iFlyGo.
Version: 1.0.0
License: Proprietary
Text Domain: iflygo
*/

/* ============================================
   iFlyGo – Mobile-First Stylesheet (Light Theme)
   Brand: Red #ea1e2a · Teal #45c49f
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #ea1e2a;
  --red-dark: #c41520;
  --teal: #45c49f;
  --teal-dark: #2fa888;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-card: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #555;
  --muted: #888;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,30,42,0.35); }

.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn--dark { background: var(--text); color: #fff; }
.btn--dark:hover { background: #333; }

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav__logo {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-fly { color: #fff; transition: color var(--transition); }
.logo-go  { color: var(--red); }
.nav.scrolled .logo-fly { color: var(--text); }

.nav__logo--footer .logo-fly { color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}

.nav__links a:hover { color: #fff; }
.nav.scrolled .nav__links a { color: var(--text-secondary); }
.nav.scrolled .nav__links a:hover { color: var(--text); }

.nav__cta {
  background: var(--red);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Dropdown */
.nav__dropdown-wrap { position: relative; }

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav__dropdown-trigger svg {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}

.nav__dropdown-wrap:hover .nav__dropdown-trigger svg,
.nav__dropdown-wrap.open .nav__dropdown-trigger svg { transform: rotate(180deg); }

.nav.scrolled .nav__dropdown-trigger { color: var(--text-secondary); }
.nav.scrolled .nav__dropdown-trigger:hover { color: var(--text); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 20px;
  min-width: 480px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap.open .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-inner { display: flex; gap: 20px; }

.nav__dropdown-continents {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
  border-right: 1px solid var(--border);
  padding-right: 16px;
}

.nav__cont {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 7px 12px;
  border-radius: 8px;
  text-align: left;
  transition: all var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav__cont:hover,
.nav__cont.active { background: var(--bg-alt); color: var(--text); }

.nav__dropdown-countries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  align-content: start;
  min-width: 260px;
}

.nav__country {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all var(--transition);
}

.nav__country:hover { background: var(--bg-alt); color: var(--red); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav.scrolled .nav__hamburger span { background: var(--text); }

.nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero--short {
  height: 52vh;
  min-height: 340px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero__slide.active { opacity: 1; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: #fff;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--text); color: #fff; }
.section--red { background: var(--red); color: #fff; }

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__header--light { color: #fff; }

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section--dark .section__eyebrow,
.section--red .section__eyebrow { color: var(--teal); }

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.section__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   TRIP CARDS
   ============================================ */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.trip-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.trip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trip-card.hidden { display: none; }

.trip-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.trip-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.trip-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.trip-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(234,30,42,0.07);
  padding: 3px 8px;
  border-radius: 4px;
}

.trip-card__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text);
}

.trip-card__meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trip-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.trip-card__price {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text);
}

.trip-card__price-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}

.trip-card__btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.trip-card__btn:hover { gap: 8px; }

/* ============================================
   FILTER TABS
   ============================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ============================================
   DESTINATION CARDS
   ============================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-card:hover img { transform: scale(1.06); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.dest-card__label {
  position: absolute;
  bottom: 14px; left: 14px;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
}

/* ============================================
   WHY CARDS
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.why-card:hover { transform: translateY(-3px); }

.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(234,30,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
}

.why-card__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card__desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.testi-card__stars {
  color: var(--teal);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.9;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-card__name { font-weight: 600; font-size: 0.88rem; }
.testi-card__trip { font-size: 0.78rem; opacity: 0.65; }

/* ============================================
   STYLE CARDS
   ============================================ */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.style-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.style-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.style-card:hover img { transform: scale(1.05); }

.style-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.style-card__label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}

.style-card__sub { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 36px 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.trust-item__number {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}

.trust-item__label { font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #b5151f 100%);
  padding: 64px 20px;
  text-align: center;
  color: #fff;
}

.cta-band__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.cta-band__sub {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.footer__social a:hover { background: var(--red); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--red); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer__bottom a { color: var(--muted); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--red); }
.footer__creds { font-size: 0.72rem; }

/* ============================================
   FLOATING CTA (Mobile)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  gap: 8px;
  z-index: 900;
  transition: transform 0.35s ease;
  pointer-events: none;
}

.floating-cta.visible { transform: translateX(-50%) translateY(0); pointer-events: all; }

.floating-cta__call,
.floating-cta__book {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.floating-cta__call {
  background: #fff;
  color: var(--text);
}

.floating-cta__book {
  background: var(--red);
  color: #fff;
}

.floating-cta svg { width: 16px; height: 16px; }

/* ============================================
   BOOKING PAGES
   ============================================ */
.book-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)) center/cover no-repeat;
  padding: 100px 20px 48px;
  color: #fff;
  text-align: center;
}

.book-hero__eyebrow { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; margin: 0 0 8px; }
.book-hero__title { font-family: 'Roboto Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem, 6vw, 3rem); margin: 0 0 6px; }
.book-hero__sub { font-size: 1rem; opacity: 0.85; margin: 0 0 24px; }

.book-hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
}

.book-hero__price-amount { font-family: 'Roboto Condensed', sans-serif; font-weight: 900; font-size: 2.4rem; }
.book-hero__price-info { font-size: 0.85rem; opacity: 0.8; text-align: left; line-height: 1.3; }

.book-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  position: sticky;
  top: 64px;
  z-index: 50;
}

.book-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.book-nav a:hover { color: var(--red); border-color: var(--red); background: rgba(234,30,42,0.04); }

.book-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px;
}

.book-section + .book-section { padding-top: 0; }

.book-section__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  margin: 0 0 24px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.book-section__title svg { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary svg { transform: rotate(45deg); }

.faq-item__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-bottom: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
  .nav__links {
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__links a {
    color: var(--text-secondary);
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav__dropdown-trigger {
    color: var(--text-secondary);
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    justify-content: space-between;
  }

  .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    min-width: unset;
    border-radius: 0;
    padding: 12px 0 12px 16px;
    opacity: 1;
    pointer-events: all;
    display: none;
  }

  .nav__dropdown-wrap.open .nav__dropdown { display: block; }

  .nav__dropdown-inner { flex-direction: column; }
  .nav__dropdown-continents { flex-direction: row; flex-wrap: wrap; border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 8px; margin-bottom: 8px; }
  .nav__dropdown-countries { grid-template-columns: repeat(3, 1fr); }

  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .trips-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trust-bar { gap: 20px; }

  .book-nav { gap: 6px; }
  .book-nav a { padding: 7px 12px; font-size: 0.78rem; }
}

@media (min-width: 768px) {
  .floating-cta { display: none; }
}
