/* ──────────────────────────────────────────────────────
   FLYUP HOLIDAYS — main stylesheet
   Tokens: Red #D92027, Navy #1C1E2D, Light BG #F5F6FA, Body #374151
   Fonts: Sora (headings) + DM Sans (body)
   ────────────────────────────────────────────────────── */

:root {
  --red: #D92027;
  --red-dark: #b91c22;
  --navy: #1C1E2D;
  --navy-2: #2D2F4A;
  --bg-light: #F5F6FA;
  --text: #374151;
  --muted: #6B7280;
  --border: #E5E7EB;
  --whatsapp: #25D366;
  --star: #F59E0B;
  --success: #10B981;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--red); color: #fff; }
a { color: inherit; text-decoration: none; }

/* Layout */
.fh-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 1023px) { .fh-container { padding: 0 40px; } }
@media (max-width: 767px)  { .fh-container { padding: 0 20px; } }

.fh-section { padding: 80px 0; }
@media (max-width: 767px) { .fh-section { padding: 48px 0; } }

.fh-section-light { background: var(--bg-light); }

.fh-section-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.fh-section-head.fh-left { text-align: left; margin-left: 0; }
.fh-eyebrow {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px; color: var(--red);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.fh-h1 {
  font-family: 'Sora', sans-serif; font-weight: 800; color: #fff;
  font-size: 52px; line-height: 1.1; margin: 0 0 20px;
}
.fh-h2 {
  font-family: 'Sora', sans-serif; font-weight: 800; color: var(--navy);
  font-size: 44px; line-height: 1.15; margin: 0 0 16px;
}
.fh-h3 {
  font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy);
  font-size: 18px; margin: 0 0 10px;
}
@media (max-width: 767px) {
  .fh-h1 { font-size: 32px; }
  .fh-h2 { font-size: 28px; }
}
.fh-lead { font-size: 16px; color: var(--muted); line-height: 1.6; margin: 0 auto; }

/* Grids */
.fh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fh-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.fh-grid-4 { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
@media (max-width: 1023px) {
  .fh-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .fh-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .fh-grid-4 { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .fh-grid-3 { grid-template-columns: 1fr; }
  .fh-grid-4 { grid-template-columns: 1fr; gap: 32px; }
}

/* Buttons */
.fh-btn-primary, .fh-btn-secondary, .fh-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; border-radius: 10px; cursor: pointer;
  padding: 14px 32px; text-decoration: none; border: none;
  transition: all 0.2s;
}
.fh-btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 20px rgba(217,32,39,0.35);
}
.fh-btn-primary:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(217,32,39,0.45);
}
.fh-btn-secondary {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; backdrop-filter: blur(8px);
}
.fh-btn-secondary:hover {
  background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35);
}
.fh-btn-dark {
  background: var(--navy); color: #fff; padding: 10px 20px; font-size: 13px; font-weight: 600;
}
.fh-btn-dark:hover { background: var(--red); }
.fh-btn-sm { padding: 10px 24px; font-size: 14px; font-weight: 600; box-shadow: none; }
.fh-btn-block { margin-top: 24px; justify-content: center; width: 100%; padding: 14px 24px; font-size: 16px; }

/* ── TOP BAR ── */
.fh-topbar {
  background: var(--navy); color: rgba(255,255,255,0.8); font-size: 13px; padding: 6px 0;
}
.fh-topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.fh-topbar-left, .fh-topbar-right { display: flex; gap: 24px; align-items: center; }
.fh-topbar-right { gap: 16px; }
.fh-topbar-link { display: inline-flex; align-items: center; gap: 6px; color: inherit; transition: color 0.2s; }
.fh-topbar-link:hover { color: var(--red); }
.fh-topbar-follow { opacity: 0.6; }
.fh-social { color: rgba(255,255,255,0.8); transition: color 0.2s; display: inline-flex; }
.fh-social:hover { color: var(--red); }
@media (max-width: 767px) { .fh-topbar { display: none; } }

/* ── NAV ── */
.fh-nav {
  background: #fff; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
/* Push sticky nav below the WP admin bar so it doesn't overlap when logged in */
.admin-bar .fh-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .fh-nav { top: 46px; } }
.admin-bar .fh-mobile-menu { top: calc(72px + 46px); }
@media (min-width: 783px) { .admin-bar .fh-mobile-menu { top: calc(72px + 32px); } }
.fh-nav-inner { display: flex; justify-content: space-between; align-items: center; height: 84px; }
@media (max-width: 767px) { .fh-nav-inner { height: 72px; } }
.fh-brand { display: flex; align-items: center; gap: 10px; }
.fh-brand-mark {
  width: 42px; height: 42px; background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px;
  letter-spacing: -1px; position: relative; overflow: hidden;
}
.fh-brand-mark svg {
  position: absolute; top: 2px; right: 2px; width: 10px; height: 10px; opacity: 0.7;
}
.fh-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.fh-brand-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; }
.fh-brand-sub {
  font-family: 'Sora', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
}
/* Real image logo (transparent PNG) */
.fh-brand { line-height: 0; }
.fh-brand-img {
  height: 64px; width: auto; display: block;
  max-width: 220px; object-fit: contain;
}
/* Footer version — no red background pill, just the mark on the dark navy */
.fh-brand-img-footer {
  height: 70px; border-radius: 0; background: transparent;
}
@media (max-width: 767px) {
  .fh-brand-img { height: 50px; }
  .fh-brand-img-footer { height: 56px; }
}
.fh-nav-links { display: flex; align-items: center; gap: 32px; }
.fh-nav-link {
  font-weight: 500; font-size: 15px; color: var(--text);
  transition: color 0.2s;
}
.fh-nav-link:hover, .fh-nav-link.is-active { color: var(--red); }

.fh-hamburger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.fh-hamburger span {
  display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px;
}
.fh-hamburger span:nth-child(2) { width: 18px; }

@media (max-width: 1023px) {
  .fh-nav-links { display: none; }
  .fh-hamburger { display: flex; }
}

/* Mobile menu */
.fh-mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99; padding: 32px 24px;
  display: flex; flex-direction: column; gap: 0;
  animation: fadeInUp 0.2s ease;
}
.fh-mobile-menu[hidden] { display: none; }
.fh-mobile-link {
  padding: 16px 0; font-weight: 600; font-size: 18px;
  color: var(--text); border-bottom: 1px solid #f0f0f0;
}
.fh-mobile-link.is-active { color: var(--red); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes planeFloat {
  0%, 100% { transform: translate(0, 0) rotate(-15deg); }
  50% { transform: translate(8px, -12px) rotate(-10deg); }
}

/* ── HERO ── */
.fh-hero {
  position: relative; min-height: 600px; overflow: hidden;
  background: linear-gradient(135deg, #1C1E2D 0%, #2D2F4A 40%, #1C1E2D 100%);
}
.fh-hero::before, .fh-hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.fh-hero::before {
  top: -80px; right: -80px; width: 400px; height: 400px;
  background: rgba(217,32,39,0.08);
}
.fh-hero::after {
  bottom: -120px; left: -60px; width: 300px; height: 300px;
  background: rgba(217,32,39,0.05);
}
.fh-hero-plane {
  position: absolute; pointer-events: none;
  width: 120px; height: 120px; top: 15%; right: 12%;
  animation: planeFloat 4s ease-in-out infinite;
}
.fh-hero-plane-2 {
  position: absolute; pointer-events: none;
  width: 80px; height: 80px; bottom: 25%; left: 8%; transform: rotate(45deg);
}
.fh-hero-inner {
  position: relative; z-index: 2; max-width: var(--container); margin: 0 auto;
  padding: 80px 80px 100px;
}
@media (max-width: 1023px) { .fh-hero-inner { padding: 64px 40px 80px; } }
@media (max-width: 767px)  { .fh-hero-inner { padding: 48px 20px 64px; min-height: auto; } }
.fh-hero-content { max-width: 640px; }
.fh-hero-badge {
  display: inline-block; background: rgba(217,32,39,0.15);
  border: 1px solid rgba(217,32,39,0.3); color: #ff6b6b;
  padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px; letter-spacing: 0.5px;
}
.fh-hero h1 { color: #fff; }
.fh-hero h1 span { color: var(--red); }
.fh-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin: 0 0 36px; max-width: 520px;
}
.fh-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── SEARCH FORM ── */
.fh-search-wrap {
  max-width: var(--container); margin: -48px auto 0; position: relative; z-index: 10;
  padding: 0 80px;
}
@media (max-width: 1023px) { .fh-search-wrap { padding: 0 40px; } }
@media (max-width: 767px)  { .fh-search-wrap { padding: 0 20px; margin-top: -32px; } }

.fh-search {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.fh-search-tabs { display: flex; border-bottom: 1px solid #f0f0f0; }
.fh-search-tab {
  flex: 1; padding: 16px; font-weight: 600; font-size: 14px;
  background: #fff; color: var(--muted); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.fh-search-tab.is-active { background: var(--red); color: #fff; }
.fh-search-fields {
  padding: 24px; display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap;
}
.fh-field { flex: 1; min-width: 180px; }
.fh-field.fh-field-sm { flex: 0.7; min-width: 140px; }
.fh-field.fh-field-xs { flex: 0.5; min-width: 100px; }
.fh-field label {
  display: block; font-size: 12px; font-weight: 600; color: var(--muted);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.fh-field input, .fh-field select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; color: var(--navy); background: #fff;
  outline: none; transition: border 0.2s;
}
.fh-field input:focus, .fh-field select:focus { border-color: var(--red); }
.fh-search-submit {
  background: var(--red); color: #fff; border: 0;
  padding: 12px 32px; border-radius: 8px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; gap: 8px; min-height: 46px;
  transition: all 0.2s;
}
.fh-search-submit:hover {
  background: var(--red-dark); box-shadow: 0 4px 16px rgba(217,32,39,0.3);
}

/* ── DESTINATION CARDS ── */
.fh-dest-card {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 4/3; cursor: pointer; transition: transform 0.3s;
}
.fh-dest-card:hover { transform: translateY(-4px); }
.fh-dest-inner {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px; position: relative;
}
.fh-dest-plane {
  position: absolute; top: 20px; right: 20px; width: 48px; height: 48px;
  fill: rgba(255,255,255,0.08);
}
.fh-dest-country {
  font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500;
  background: rgba(0,0,0,0.15); padding: 3px 10px; border-radius: 4px;
  width: fit-content; margin-bottom: 4px;
}
.fh-dest-name {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 22px; color: #fff; margin: 0 0 4px;
}
.fh-dest-price {
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.fh-dest-price strong { font-weight: 700; font-size: 18px; }

/* ── SERVICE CARDS ── */
.fh-service-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  border: 1px solid transparent; transition: all 0.3s; cursor: pointer;
}
.fh-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(217,32,39,0.15);
}
.fh-service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.fh-service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── WHY CHOOSE US ── */
.fh-why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fh-why-feature { display: flex; align-items: flex-start; gap: 12px; }
.fh-why-feature-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.fh-why-feature-title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.fh-why-feature-text { font-size: 13px; color: var(--muted); }

.fh-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fh-stat {
  border-radius: 16px; padding: 28px; text-align: center;
}
.fh-stat-num {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 36px; margin-bottom: 4px;
}
.fh-stat-label { font-size: 14px; }
.fh-stat-dark { background: var(--navy); }
.fh-stat-dark .fh-stat-num { color: var(--red); }
.fh-stat-dark .fh-stat-label { color: rgba(255,255,255,0.7); }
.fh-stat-red { background: var(--red); }
.fh-stat-red .fh-stat-num { color: #fff; }
.fh-stat-red .fh-stat-label { color: rgba(255,255,255,0.85); }

/* ── PACKAGE CARDS ── */
.fh-pkg-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.fh-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 600; font-size: 15px;
  transition: gap 0.2s;
}
.fh-link-arrow:hover { gap: 10px; }

.fh-pkg-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  cursor: pointer; transition: all 0.3s;
}
.fh-pkg-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.fh-pkg-media {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.fh-pkg-media-label { font-family: 'Sora', sans-serif; font-size: 14px; color: rgba(255,255,255,0.6); }
.fh-pkg-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 700;
}
.fh-pkg-badge.is-pop { background: var(--red); color: #fff; }
.fh-pkg-badge.is-val { background: var(--star); color: var(--navy); }
.fh-pkg-badge.is-new { background: var(--success); color: #fff; }
.fh-pkg-duration {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.3); color: #fff;
  padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600;
  backdrop-filter: blur(4px);
}
.fh-pkg-body { padding: 24px; }
.fh-pkg-stars { display: flex; gap: 4px; align-items: center; margin-bottom: 8px; }
.fh-pkg-stars > span { font-size: 12px; color: var(--muted); margin-left: 4px; }
.fh-pkg-card p { font-size: 13px; color: var(--muted); margin: 0 0 16px; line-height: 1.5; }
.fh-pkg-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid #f0f0f0;
}
.fh-pkg-from { font-size: 12px; color: var(--muted); }
.fh-pkg-price {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: var(--red);
}

/* ── TESTIMONIALS ── */
.fh-testimonial {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
}
.fh-testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.fh-testimonial-text {
  font-size: 15px; color: var(--text); line-height: 1.7;
  margin: 0 0 20px; font-style: italic;
}
.fh-testimonial-author { display: flex; align-items: center; gap: 12px; }
.fh-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
}
.fh-testimonial-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.fh-testimonial-trip { font-size: 12px; color: var(--muted); }

/* ── PARTNER LOGOS ── */
.fh-partners {
  background: var(--bg-light); padding: 48px 0; text-align: center;
}
.fh-partners-label {
  font-size: 13px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 32px;
}
.fh-partners-row {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap; opacity: 0.5;
}
.fh-partners-row > div {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--text);
}

/* ── NEWSLETTER CTA ── */
.fh-newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 20px; padding: 60px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.fh-newsletter h2 {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 32px;
  color: #fff; margin: 0 0 12px;
}
.fh-newsletter p {
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin: 0 auto 32px; max-width: 480px;
}
.fh-newsletter-form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}
.fh-newsletter-form input {
  flex: 1; min-width: 240px; padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.15); border-radius: 10px;
  font-size: 15px; color: #fff; background: rgba(255,255,255,0.06); outline: none;
}
.fh-newsletter-form button {
  background: var(--red); color: #fff; border: 0;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 15px; cursor: pointer; white-space: nowrap;
  transition: all 0.2s;
}
.fh-newsletter-form button:hover {
  background: var(--red-dark); box-shadow: 0 4px 16px rgba(217,32,39,0.4);
}
.fh-newsletter-plane-1, .fh-newsletter-plane-2 { position: absolute; pointer-events: none; }
.fh-newsletter-plane-1 { top: -20px; right: -20px; width: 200px; height: 200px; transform: rotate(-15deg); fill: rgba(217,32,39,0.08); }
.fh-newsletter-plane-2 { bottom: -30px; left: 10%; width: 150px; height: 150px; transform: rotate(30deg); fill: rgba(217,32,39,0.05); }

/* ── PAGE HEADER (interior pages) — with decorative graphics ── */
.fh-page-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative; overflow: hidden;
  padding: 80px 0;
}
.fh-page-head::before,
.fh-page-head::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.fh-page-head::before {
  top: -80px; right: -80px; width: 300px; height: 300px;
  background: rgba(217,32,39,0.10);
}
.fh-page-head::after {
  bottom: -120px; left: -60px; width: 260px; height: 260px;
  background: rgba(217,32,39,0.06);
}
.fh-page-head-inner { position: relative; z-index: 2; text-align: center; }
.fh-page-head h1 {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 48px; color: #fff; margin: 0;
}
.fh-page-head .fh-eyebrow { color: var(--red); }

/* Decorative SVG airplanes / dots overlay */
.fh-page-head-decor {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.fh-page-head-decor svg { position: absolute; }
.fh-page-head-decor .fh-plane-lg {
  top: 18%; right: 8%; width: 100px; height: 100px;
  fill: rgba(255,255,255,0.05);
  animation: planeFloat 5s ease-in-out infinite;
}
.fh-page-head-decor .fh-plane-sm {
  bottom: 22%; left: 10%; width: 60px; height: 60px;
  fill: rgba(255,255,255,0.04);
  transform: rotate(35deg);
  animation: planeFloat 6s ease-in-out infinite 1s;
}
.fh-page-head-decor .fh-plane-tiny {
  top: 55%; right: 15%; width: 32px; height: 32px;
  fill: rgba(217,32,39,0.2);
  transform: rotate(-20deg);
  animation: planeFloat 4s ease-in-out infinite 0.5s;
}
.fh-page-head-decor .fh-dot-grid {
  bottom: 15%; right: 12%; width: 120px; height: 120px;
  opacity: 0.15;
}
.fh-page-head-decor .fh-arc {
  top: -40px; left: 30%; width: 220px; height: 220px;
  border: 1.5px solid rgba(217,32,39,0.15); border-radius: 50%;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .fh-page-head h1 { font-size: 32px; }
  .fh-page-head { padding: 56px 0; }
  .fh-page-head-decor .fh-plane-lg { width: 70px; height: 70px; right: 5%; top: 12%; }
  .fh-page-head-decor .fh-plane-sm,
  .fh-page-head-decor .fh-plane-tiny,
  .fh-page-head-decor .fh-arc { display: none; }
}

/* ── ABOUT PAGE ── */
.fh-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.fh-story-img {
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
  border-radius: 20px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-family: 'Sora', sans-serif;
}
@media (max-width: 1023px) { .fh-story { grid-template-columns: 1fr; gap: 32px; } }

.fh-mv-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border-left: 4px solid var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.fh-mv-card.is-blue { border-left-color: #2980B9; }
.fh-mv-card .fh-h3 { font-size: 22px; }
.fh-mv-card p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }

/* ── DETAILED SERVICES PAGE ── */
.fh-svc-detail {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 36px; transition: all 0.3s;
}
.fh-svc-detail:hover {
  border-color: rgba(217,32,39,0.2); box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.fh-svc-detail-head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 16px; }
.fh-svc-detail-icon {
  width: 64px; height: 64px; min-width: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.fh-svc-detail-sub { font-size: 13px; font-weight: 600; margin-top: 4px; }
.fh-svc-detail p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0 0 16px; }
.fh-svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fh-svc-tag {
  background: var(--bg-light); color: var(--text);
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}

/* ── SINGLE PACKAGE DETAIL PAGE ── */
.fh-pkg-hero { padding: 96px 0 80px; }
.fh-pkg-hero h1 { font-size: 44px; }

/* Extra decorative flair — layered on top of base fh-page-head-decor */
.fh-pkg-hero-extras {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.fh-pkg-plane-trail {
  position: absolute; top: 12%; left: 5%; width: 380px; height: 90px;
  opacity: 0.9;
}
.fh-pkg-globe {
  position: absolute; bottom: -30px; right: -30px; width: 220px; height: 220px;
  animation: fhSpin 40s linear infinite;
}
.fh-pkg-pin {
  position: absolute; top: 20%; left: 12%; width: 28px; height: 28px;
  animation: fhBob 3s ease-in-out infinite;
}
@keyframes fhSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes fhBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (max-width: 767px) {
  .fh-pkg-plane-trail,
  .fh-pkg-pin { display: none; }
  .fh-pkg-globe { width: 160px; height: 160px; }
}
.fh-pkg-hero-meta {
  margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.fh-pkg-hero-chip {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px; border-radius: 100px; font-size: 14px; font-weight: 600; color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.fh-pkg-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}
@media (max-width: 1023px) { .fh-pkg-layout { grid-template-columns: 1fr; gap: 32px; } }
.fh-pkg-main .wp-block-group.fh-pkg-detail {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 36px;
}
.fh-pkg-main h3 {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--navy); margin: 24px 0 12px;
  padding-bottom: 10px; border-bottom: 2px solid var(--bg-light);
}
.fh-pkg-main h3:first-child { margin-top: 0; }
.fh-pkg-main ul { list-style: none; padding: 0; margin: 0; }
.fh-pkg-main ul li {
  position: relative; padding: 8px 0 8px 28px;
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.fh-pkg-main ul li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--red); font-weight: 700;
}
.fh-pkg-main h3:nth-of-type(2) ~ ul li::before,
.fh-pkg-main h3:contains('Excludes') ~ ul li::before { content: '✕'; color: var(--muted); }
/* Fallback: mark exclude lists via order — second and later list */
.fh-pkg-main ul + h3 + ul li::before { content: '✕'; color: #94a3b8; }
.fh-pkg-main p { font-size: 15px; color: var(--text); line-height: 1.7; }

.fh-pkg-booking { position: sticky; top: 90px; }
.fh-pkg-booking-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.fh-pkg-booking-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.fh-pkg-booking-price {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 40px;
  color: var(--red); line-height: 1; margin: 4px 0 4px;
}
.fh-pkg-booking-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.fh-pkg-booking-meta {
  list-style: none; padding: 0; margin: 0 0 20px;
  border-top: 1px solid var(--border);
}
.fh-pkg-booking-meta li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.fh-pkg-booking-meta strong {
  font-size: 13px; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.fh-pkg-booking-meta span { font-size: 14px; color: var(--navy); font-weight: 600; }
.fh-pkg-booking-alt {
  display: block; text-align: center; margin-top: 14px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.fh-pkg-booking-alt:hover { color: var(--red); }

/* ── VISA LISTING + DETAIL — clean editorial style ── */
.fh-visa-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1023px) { .fh-visa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .fh-visa-grid { grid-template-columns: 1fr; gap: 14px; } }

.fh-visa-card {
  --fh-accent: var(--red);
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid var(--fh-accent);
  border-radius: 12px; padding: 24px 24px 20px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.fh-visa-card:hover {
  border-color: var(--border);
  border-top-color: var(--fh-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.fh-visa-head {
  display: flex; align-items: center; gap: 14px;
}
.fh-visa-flag-chip {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--bg-light); border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px; line-height: 1;
}
.fh-visa-headings { min-width: 0; }
.fh-visa-region {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 3px;
}
.fh-visa-name {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px;
  color: var(--navy); margin: 0; line-height: 1.25;
}

.fh-visa-facts {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.fh-visa-fact {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; gap: 12px;
}
.fh-visa-fact-k { color: var(--muted); font-weight: 500; }
.fh-visa-fact-v { color: var(--navy); font-weight: 600; text-align: right; }

.fh-visa-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--fh-accent); font-weight: 600; font-size: 13px;
  transition: gap 0.2s;
}
.fh-visa-card:hover .fh-visa-cta { gap: 10px; }

.fh-visa-req {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 14px;
}
.fh-visa-req-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 2px solid var(--bg-light);
}
.fh-visa-req-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(217,32,39,0.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fh-visa-req h3 {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--navy); margin: 0;
}
.fh-visa-req ul { list-style: none; padding: 0; margin: 0; }
.fh-visa-req ul li {
  position: relative; padding: 6px 0 6px 22px;
  font-size: 14px; color: var(--text); line-height: 1.6;
}
.fh-visa-req ul li::before {
  content: '✓'; position: absolute; left: 0; top: 6px;
  color: var(--red); font-weight: 700;
}
.fh-visa-req p { font-size: 14px; color: var(--text); line-height: 1.6; margin: 0; }

.fh-visa-disclaimer {
  background: rgba(217,32,39,0.05); border: 1px solid rgba(217,32,39,0.15);
  border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 12px;
  max-width: 900px; margin: 32px auto 0;
}
.fh-visa-disclaimer svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.fh-visa-disclaimer p { font-size: 13px; color: var(--text); line-height: 1.6; margin: 0; }

/* ── FILTER BAR (tour packages) ── */
.fh-filter {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 20px;
  margin-bottom: 48px;
  align-items: end;
}
.fh-filter > div { display: flex; flex-direction: column; }
.fh-filter label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.fh-filter select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; color: var(--navy); background: #fff;
  outline: none; cursor: pointer; transition: border 0.2s;
}
.fh-filter select:focus { border-color: var(--red); }
@media (max-width: 1023px) { .fh-filter { grid-template-columns: 1fr 1fr; } .fh-filter-btn { grid-column: span 2; } }
@media (max-width: 767px)  { .fh-filter { grid-template-columns: 1fr; } .fh-filter-btn { grid-column: auto; } }
.fh-filter-btn {
  background: var(--red); color: #fff; border: 0;
  padding: 12px 24px; border-radius: 8px;
  font-weight: 700; font-size: 14px; cursor: pointer; height: 46px;
  transition: all 0.2s; align-self: end;
}
.fh-filter-btn:hover { background: var(--red-dark); box-shadow: 0 4px 16px rgba(217,32,39,0.3); }

/* Empty state when no packages match filters */
.fh-pkg-empty {
  padding: 60px 24px; text-align: center;
  background: var(--bg-light); border-radius: 16px;
  margin: 24px 0;
}
.fh-pkg-empty-inner {
  max-width: 460px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fh-pkg-empty svg { color: var(--muted); opacity: 0.6; }
.fh-pkg-empty h3 {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--navy); margin: 6px 0 0;
}
.fh-pkg-empty p { color: var(--muted); font-size: 15px; margin: 0 0 12px; }
.fh-pkg-empty p a { color: var(--red); font-weight: 600; }
#fh-pkg-reset { margin-top: 4px; }

/* ── CONTACT PAGE ── */
.fh-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }
@media (max-width: 1023px) { .fh-contact-grid { grid-template-columns: 1fr; } }
.fh-contact-form {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 36px;
}
.fh-contact-form h2 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 24px; margin: 0 0 24px; color: var(--navy); }
.fh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 767px) { .fh-form-row { grid-template-columns: 1fr; } }
.fh-form-group { margin-bottom: 16px; }
.fh-form-group label, .fh-form-row label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.fh-form-group input, .fh-form-row input,
.fh-form-group select, .fh-form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; color: var(--navy); background: #fff;
  outline: none; transition: border 0.2s;
}
.fh-form-group input:focus, .fh-form-row input:focus,
.fh-form-group select:focus, .fh-form-group textarea:focus { border-color: var(--red); }
.fh-form-group textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.fh-form-submit { margin-top: 8px; padding: 14px 32px; }

.fh-contact-side { display: flex; flex-direction: column; gap: 16px; }
.fh-info-card {
  background: var(--bg-light); border-radius: 12px; padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.fh-info-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(217,32,39,0.1); border-radius: 10px;
  color: var(--red); display: flex; align-items: center; justify-content: center;
}
.fh-info-card-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.fh-info-card strong { display: block; font-size: 15px; color: var(--navy); font-weight: 600; }
.fh-info-card span { font-size: 14px; color: var(--text); }
.fh-map {
  background: #E5E7EB; border-radius: 12px; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
}

/* ── FAQ ── */
.fh-faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.fh-faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all 0.2s;
}
.fh-faq-item.is-open { border-color: rgba(217,32,39,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.fh-faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16px; color: var(--navy); text-align: left;
}
.fh-faq-chev { transition: transform 0.3s; color: var(--muted); display: inline-flex; }
.fh-faq-item.is-open .fh-faq-chev { transform: rotate(180deg); color: var(--red); }
.fh-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.fh-faq-item.is-open .fh-faq-a { max-height: 500px; padding: 0 24px 20px; }
.fh-faq-a p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.7; }

.fh-faq-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 20px; padding: 48px; text-align: center;
  max-width: 800px; margin: 48px auto 0;
}
.fh-faq-cta h3 { font-family: 'Sora', sans-serif; font-weight: 800; color: #fff; font-size: 26px; margin: 0 0 12px; }
.fh-faq-cta p { color: rgba(255,255,255,0.7); margin: 0 0 24px; }
.fh-faq-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.fh-footer {
  background: var(--navy); padding: 64px 0 0;
}
.fh-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 1023px) { .fh-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 767px)  { .fh-footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.fh-footer-tag { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0 20px; }
.fh-footer-social { display: flex; gap: 12px; }
.fh-footer-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.fh-footer-social-link:hover { background: var(--red); color: #fff; }
.fh-footer-h {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 15px; color: #fff; margin: 0 0 20px;
}
.fh-footer-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.fh-footer-list li, .fh-footer-list a, .fh-footer-list span {
  font-size: 14px; color: rgba(255,255,255,0.5);
}
.fh-footer-list a:hover { color: var(--red); }
.fh-footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.fh-footer-contact li svg { margin-top: 2px; min-width: 14px; }
.fh-footer-bottom { padding: 24px 0; text-align: center; }
.fh-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }

/* ── WHATSAPP BUTTON ── */
.fh-whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35); z-index: 1000;
  transition: all 0.3s;
}
.fh-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* Small utility */
.fh-block { padding: 80px 0; }
.fh-mt-0 { margin-top: 0; }

/* Reset WP block-editor leftover */
.wp-block-group, .wp-block-columns { all: revert; }

/* ═══════════════════════════════════════════════════════
   MOBILE POLISH — comprehensive fixes for < 768px
   ═══════════════════════════════════════════════════════ */
html { scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: rgba(217,32,39,0.1); }
img, svg, video { max-width: 100%; }

/* Improve tap-target sizing across the board */
@media (max-width: 767px) {
  a, button, .fh-btn-primary, .fh-btn-secondary, .fh-btn-dark, .fh-btn-sm { min-height: 44px; }

  /* Slightly tighter section padding for balance */
  .fh-section { padding: 40px 0; }

  /* HERO — smaller decorations, single-column CTAs */
  .fh-hero { min-height: auto; }
  .fh-hero::before { width: 220px; height: 220px; top: -60px; right: -60px; }
  .fh-hero::after  { width: 180px; height: 180px; bottom: -80px; left: -40px; }
  .fh-hero-plane   { width: 60px; height: 60px; top: 8%; right: 6%; }
  .fh-hero-plane-2 { width: 40px; height: 40px; bottom: 15%; left: 4%; }
  .fh-h1 { font-size: 30px; line-height: 1.15; }
  .fh-hero-sub { font-size: 15px; margin-bottom: 24px; }
  .fh-hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .fh-hero-cta .fh-btn-primary,
  .fh-hero-cta .fh-btn-secondary { justify-content: center; padding: 14px 20px; }

  /* SEARCH FORM — every field full-width; button too */
  .fh-search-wrap { margin-top: -24px; }
  .fh-search-tabs .fh-search-tab { font-size: 13px; padding: 12px 6px; gap: 4px; }
  .fh-search-tabs .fh-search-tab svg { width: 14px; height: 14px; }
  .fh-search-fields { padding: 16px; gap: 12px; }
  .fh-field, .fh-field.fh-field-sm, .fh-field.fh-field-xs { flex: 1 1 100%; min-width: 0; }
  .fh-search-submit { width: 100%; justify-content: center; padding: 14px 24px; }

  /* SECTION HEADS */
  .fh-section-head { margin-bottom: 32px; }
  .fh-h2 { font-size: 26px; line-height: 1.2; }
  .fh-lead { font-size: 14px; }
  .fh-eyebrow { font-size: 12px; letter-spacing: 1.5px; }

  /* DESTINATION cards — slightly smaller name */
  .fh-dest-name { font-size: 20px; }
  .fh-dest-price strong { font-size: 16px; }

  /* SERVICE cards — tighter padding */
  .fh-service-card { padding: 24px 20px; }

  /* WHY CHOOSE US — features stack single column */
  .fh-why-features { grid-template-columns: 1fr; gap: 16px; }
  .fh-stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fh-stat { padding: 20px 16px; }
  .fh-stat-num { font-size: 28px; }
  .fh-stat-label { font-size: 12px; }

  /* PACKAGE HEAD ROW — stack heading and "View all" */
  .fh-pkg-head-row { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
  .fh-link-arrow { align-self: flex-start; }

  /* PACKAGE CARDS — smaller title, price row wraps cleanly */
  .fh-pkg-card h3 { font-size: 17px; }
  .fh-pkg-body { padding: 18px; }
  .fh-pkg-media { height: 180px; }
  .fh-pkg-price { font-size: 20px; }
  .fh-pkg-foot { gap: 12px; flex-wrap: wrap; }
  .fh-pkg-badge, .fh-pkg-duration { font-size: 11px; padding: 3px 8px; }

  /* TESTIMONIAL */
  .fh-testimonial { padding: 22px; }
  .fh-testimonial-text { font-size: 14px; }

  /* PARTNERS — wrap in a scrollable row on very small screens */
  .fh-partners { padding: 32px 0; }
  .fh-partners-row { gap: 24px; }
  .fh-partners-row > div, .fh-partners-row > a { font-size: 15px; }
  .fh-partners-row img { max-height: 32px; }

  /* NEWSLETTER — form stacks vertically */
  .fh-newsletter { padding: 40px 24px; border-radius: 16px; }
  .fh-newsletter h2 { font-size: 24px; }
  .fh-newsletter-form { flex-direction: column; gap: 10px; }
  .fh-newsletter-form input { min-width: 0; width: 100%; }
  .fh-newsletter-form button { width: 100%; justify-content: center; }

  /* PAGE HEADER — tighter padding, hide extra decor */
  .fh-page-head { padding: 48px 0; }
  .fh-page-head h1 { font-size: 28px; }

  /* PACKAGE DETAIL HERO */
  .fh-pkg-hero { padding: 56px 0 48px; }
  .fh-pkg-hero h1 { font-size: 26px; }
  .fh-pkg-hero-meta { margin-top: 18px; gap: 8px; }
  .fh-pkg-hero-chip { font-size: 12px; padding: 6px 12px; }

  /* PACKAGE DETAIL SIDEBAR — remove sticky on mobile so it flows naturally */
  .fh-pkg-booking { position: static; }
  .fh-pkg-booking-card { padding: 22px; }
  .fh-pkg-booking-price { font-size: 34px; }
  .fh-pkg-main .wp-block-group.fh-pkg-detail { padding: 22px 20px; }
  .fh-pkg-main h3 { font-size: 17px; }

  /* ABOUT — story image resized */
  .fh-story-img { aspect-ratio: 16/10; font-size: 13px; }

  /* SERVICES detail cards */
  .fh-svc-detail { padding: 24px 20px; }
  .fh-svc-detail-head { gap: 14px; }
  .fh-svc-detail-icon { width: 52px; height: 52px; min-width: 52px; }

  /* CONTACT — info cards + form */
  .fh-contact-form { padding: 24px 20px; }
  .fh-contact-form h2 { font-size: 20px; }
  .fh-info-card { padding: 16px; gap: 12px; }
  .fh-info-card strong { font-size: 14px; }
  .fh-info-card span { font-size: 13px; }
  .fh-info-icon { width: 40px; height: 40px; min-width: 40px; }

  /* FAQ */
  .fh-faq-q { padding: 16px 18px; font-size: 15px; }
  .fh-faq-item.is-open .fh-faq-a { padding: 0 18px 18px; }
  .fh-faq-cta { padding: 32px 20px; border-radius: 16px; }
  .fh-faq-cta h3 { font-size: 20px; }
  .fh-faq-cta-actions { flex-direction: column; }
  .fh-faq-cta-actions .fh-btn-primary,
  .fh-faq-cta-actions .fh-btn-secondary { width: 100%; justify-content: center; }

  /* FOOTER */
  .fh-footer { padding: 48px 0 0; }
  .fh-footer-h { font-size: 14px; margin-bottom: 14px; }
  .fh-footer-list li, .fh-footer-list a, .fh-footer-list span { font-size: 13px; }

  /* MOBILE MENU — improved */
  .fh-mobile-menu { padding: 24px 20px; }
  .fh-mobile-link { font-size: 17px; padding: 14px 0; }

  /* WhatsApp button — smaller so it doesn't crowd */
  .fh-whatsapp { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .fh-whatsapp svg { width: 26px; height: 26px; }
}

/* Extra-small phones (<=380px) — squeeze headline sizes even more */
@media (max-width: 380px) {
  .fh-h1 { font-size: 26px; }
  .fh-h2 { font-size: 24px; }
  .fh-hero-inner { padding: 40px 16px 56px; }
  .fh-container { padding: 0 16px; }
  .fh-stat-num { font-size: 24px; }
  .fh-stat { padding: 18px 12px; }
}
