/*
Theme Name: Holiday Formula
Theme URI: https://www.holidayformula.com/
Author: Holiday Formula
Author URI: https://www.holidayformula.com/
Description: Custom travel & taxi theme for Holiday Formula. v2.2 — Qv2.1 — updated menu + team/fleet content.A discussion board on item pages.
Version: 3.39.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: holiday-formula
*/

/* =============================================
   Kashmir Taxi Service — Global Stylesheet
   Aesthetic: Mountain luxury — deep Kashmir
   teal, warm saffron accents, refined serif
   display font, clean sans body.
   ============================================= */

:root {
  --teal:      #0a4f4f;
  --teal-mid:  #0d6b6b;
  --teal-light:#e8f4f4;
  --saffron:   #e07b39;
  --saffron-lt:#fdf0e6;
  --gold:      #c9a84c;
  --dark:      #0e1c1c;
  --text:      #1e2e2e;
  --muted:     #5a7070;
  --border:    #ccdede;
  --white:     #ffffff;
  --bg:        #f7fbfb;
  --card-bg:   #ffffff;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 2px 16px rgba(10,79,79,.10);
  --shadow-lg: 0 8px 40px rgba(10,79,79,.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--teal);
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex; gap: 0; list-style: none;
  margin-left: auto;
  align-items: center;
}

.nav__links a {
  font-size: .88rem; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .18s, background .18s;
}

.nav__links a:hover, .nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav__cta {
  background: var(--saffron);
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 9px 18px !important;
  font-weight: 600 !important;
  transition: background .18s, transform .12s !important;
}

.nav__cta:hover { background: #c96e2d !important; transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s;
}

/* ---- HERO ---- */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 55%, #156060 100%);
  display: flex; align-items: center;
  padding: 80px 5% 60px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1723263522658-f13a141b8726?w=1400&q=70') center/cover no-repeat;
  opacity: .18;
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--gold);
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero__h1 em { color: var(--gold); font-style: normal; }

.hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  margin-bottom: 34px; max-width: 520px;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  padding: 14px 26px; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }

.btn-primary { background: var(--saffron); color: #fff; }

.btn-primary:hover { background: #c96e2d; }

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

.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-teal { background: var(--teal); color: #fff; }

.btn-teal:hover { background: var(--teal-mid); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}

.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 500; color: var(--teal);
}

.trust-item svg { color: var(--saffron); flex-shrink: 0; }

/* ---- SECTIONS ---- */
section { padding: 72px 5%; }

.section-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--dark);
  line-height: 1.22;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 560px; line-height: 1.7;
}

/* ---- CARDS GRID ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

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

.card__img {
  width: 100%; height: 180px;
  object-fit: cover;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.card__body { padding: 20px 22px; }

.card__tag {
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: var(--saffron); margin-bottom: 8px;
}

.card__title { font-family: var(--font-display); font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }

.card__text { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.card__price { font-size: 1.2rem; font-weight: 600; color: var(--teal); margin-bottom: 16px; }

.card__link {
  font-size: .88rem; font-weight: 600; color: var(--teal);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
}

.card__link:hover { color: var(--saffron); }

/* ---- RATES TABLE ---- */
.rates-wrap { overflow-x: auto; margin-top: 36px; }

.rates-table {
  width: 100%; border-collapse: collapse;
  font-size: .92rem;
}

.rates-table thead tr { background: var(--teal); color: #fff; }

.rates-table th {
  padding: 13px 16px; text-align: left;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}

.rates-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text); }

.rates-table tbody tr:nth-child(even) { background: var(--teal-light); }

.rates-table tbody tr:hover { background: #d5ecec; }

.price-cell { font-weight: 600; color: var(--teal); }

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

.why-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}

.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}

.why-title { font-weight: 600; font-size: 1rem; color: var(--dark); margin-bottom: 7px; }

.why-text { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--teal); }

.reviews-section .section-title { color: var(--white); }

.reviews-section .section-sub { color: rgba(255,255,255,.7); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 36px;
}

.review-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 24px;
}

.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }

.review-text { font-size: .92rem; color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 16px; }

.review-name { font-weight: 600; font-size: .88rem; color: var(--gold); }

.review-loc { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--saffron) 0%, #c96e2d 100%);
  padding: 60px 5%; text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff; margin-bottom: 12px;
}

.cta-banner p { color: rgba(255,255,255,.88); font-size: 1rem; margin-bottom: 28px; }

.cta-banner .btn-outline { border-color: rgba(255,255,255,.7); }

/* ---- PAGE HERO (sub-pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  padding: 72px 5% 56px;
  text-align: center;
  position: relative; overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1623600989906-6aae5aa131d4?w=1200&q=60') center/cover;
  opacity: .14;
}

.page-hero__inner { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white); margin-bottom: 14px;
}

.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 24px; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 11px 5%;
  font-size: .83rem; color: var(--muted);
}

.breadcrumb a { color: var(--teal); text-decoration: none; }

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { margin: 0 7px; }

/* ---- VEHICLE SPEC TABLE ---- */
.spec-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}

.spec-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; gap: 14px; align-items: flex-start;
}

.spec-icon { font-size: 1.4rem; flex-shrink: 0; }

.spec-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 3px; }

.spec-val { font-weight: 600; color: var(--dark); font-size: .97rem; }

/* ---- FAQ ---- */
.faq-list { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}

.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-body); font-size: .97rem; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
}

.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--teal); flex-shrink: 0; }

.faq-q.open::after { content: '−'; }

.faq-a {
  display: none; padding: 0 22px 18px;
  font-size: .92rem; color: var(--muted); line-height: 1.7;
}

.faq-a.open { display: block; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark); color: rgba(255,255,255,.75);
  padding: 56px 5% 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem; color: #fff; margin-bottom: 12px;
}

.footer__brand span { color: var(--gold); }

.footer__desc { font-size: .88rem; line-height: 1.7; margin-bottom: 18px; }

.footer__col h3 {
  font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold); margin-bottom: 14px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer__col a { color: rgba(255,255,255,.68); text-decoration: none; font-size: .88rem; }

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 10px;
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }

.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---- DESTINATION ROUTE CARD ---- */
.route-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 36px;
}

.route-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: transform .2s, box-shadow .2s;
}

.route-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.route-from-to {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}

.route-city { font-weight: 600; font-size: 1rem; color: var(--dark); }

.route-arrow { color: var(--saffron); font-size: 1.1rem; }

.route-meta { display: flex; gap: 16px; font-size: .83rem; color: var(--muted); margin-bottom: 14px; }

.route-prices { display: flex; flex-direction: column; gap: 6px; }

.route-price-row {
  display: flex; justify-content: space-between;
  font-size: .88rem; padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.route-price-row:last-child { border: none; }

.route-vehicle { color: var(--muted); }

.route-fare { font-weight: 600; color: var(--teal); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--teal); flex-direction: column; padding: 16px 5%; gap: 0; }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: block; margin-left: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 18px; }
  .hero { min-height: auto; padding: 56px 5% 48px; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* E-E-A-T enhancements */
.about-strip { background: var(--teal); padding: 56px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.about-strip-text { color: rgba(255,255,255,.88); }

.about-strip-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 16px; }

.about-strip-text p { line-height: 1.78; margin-bottom: 14px; font-size: .97rem; }

.about-strip-text strong { color: var(--gold); }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.about-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); padding: 20px; text-align: center; }

.about-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 4px; }

.about-stat-label { font-size: .82rem; color: rgba(255,255,255,.7); }

/* Team / driver cards */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 36px; }

.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }

.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 14px; border: 3px solid var(--teal); }

.team-name { font-weight: 600; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }

.team-role { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--saffron); margin-bottom: 8px; }

.team-bio { font-size: .87rem; color: var(--muted); line-height: 1.6; }

.team-exp { display: inline-block; margin-top: 10px; font-size: .78rem; font-weight: 600; color: var(--teal); background: var(--teal-light); padding: 3px 10px; border-radius: 999px; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0; margin-top: 40px; position: relative; }

.step { padding: 28px 24px; position: relative; }

.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

.step-title { font-weight: 600; font-size: .97rem; color: var(--dark); margin-bottom: 7px; }

.step-text { font-size: .87rem; color: var(--muted); line-height: 1.6; }

.step::after { content: '→'; position: absolute; right: -8px; top: 38px; color: var(--saffron); font-size: 1.3rem; font-weight: 700; z-index: 2; }

.step:last-child::after { display: none; }

/* Blog preview */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 36px; }

.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; }

.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.blog-card-cat { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--saffron); margin-bottom: 6px; }

.blog-card-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }

.blog-card-excerpt { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.blog-card-meta { font-size: .78rem; color: var(--muted); }

.blog-card-body { padding: 22px; }

.blog-card-img { width: 100%; height: 160px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; }

/* E-E-A-T signals bar */
.eeat-bar { background: var(--dark); padding: 32px 5%; display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }

.eeat-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.78); font-size: .88rem; }

.eeat-icon { font-size: 1.2rem; flex-shrink: 0; }

/* Schema notice (hidden from users, visible to crawlers via aria) */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

@media (max-width: 700px) {
  .about-strip { grid-template-columns: 1fr; }
  .step::after { display: none; }
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?w=1400&q=70') center/cover no-repeat;
  opacity: .18;
}

.geo-intro { max-width: 760px; }

.answer-block { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 22px 26px; margin-bottom: 20px; }

.answer-q { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }

.answer-a { font-size: .95rem; color: var(--muted); line-height: 1.75; }

.answer-a strong { color: var(--dark); }

.fact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 32px; }

.fact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; text-align: center; }

.fact-num { font-family: var(--font-display); font-size: 2rem; color: var(--teal); font-weight: 700; line-height: 1; margin-bottom: 6px; }

.fact-label { font-size: .85rem; color: var(--muted); }

.compare-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin-top: 28px; }

.compare-table th { background: var(--teal); color: #fff; padding: 11px 14px; text-align: left; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }

.compare-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); }

.compare-table tbody tr:nth-child(even) { background: var(--teal-light); }

.yes { color: #3B6D11; font-weight: 600; }

.no { color: #A32D2D; }

.us { background: #e8f4f4 !important; font-weight: 500; }

.blog-hero-inner { position: relative; z-index: 2; }

.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }

.filter-btn { padding: 7px 16px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--white); color: var(--muted); font-size: .85rem; font-weight: 500; cursor: pointer; transition: all .15s; font-family: var(--font-body); }

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

.blog-main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }

.blog-post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; display: grid; grid-template-columns: 200px 1fr; transition: transform .2s, box-shadow .2s; }

.blog-post-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.blog-post-card.featured { grid-template-columns: 1fr; }

.blog-post-thumb { background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; min-height: 160px; }

.blog-post-thumb.tall { min-height: 240px; }

.blog-post-body { padding: 22px 24px; display: flex; flex-direction: column; }

.blog-post-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--saffron); margin-bottom: 6px; }

.blog-post-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--dark); margin-bottom: 9px; line-height: 1.35; text-decoration: none; display: block; }

.blog-post-title:hover { color: var(--teal); }

.blog-post-featured .blog-post-title { font-size: 1.5rem; }

.blog-post-excerpt { font-size: .9rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 14px; }

.blog-post-meta { display: flex; gap: 14px; font-size: .78rem; color: var(--muted); align-items: center; flex-wrap: wrap; }

.blog-post-author { font-weight: 600; color: var(--teal); }

.blog-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

.badge-new { background: #EAF3DE; color: #3B6D11; }

.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 20px; }

.sidebar-title { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--teal); margin-bottom: 14px; }

.sidebar-link-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.sidebar-link-list a { font-size: .9rem; color: var(--muted); text-decoration: none; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }

.sidebar-link-list a:hover { color: var(--teal); }

.sidebar-link-list a::before { content: '→'; color: var(--saffron); flex-shrink: 0; font-size: .85rem; margin-top: 1px; }

.topic-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.topic-tag { padding: 5px 11px; border-radius: 999px; background: var(--bg); border: 1px solid var(--border); font-size: .82rem; color: var(--muted); text-decoration: none; }

.topic-tag:hover { background: var(--teal-light); color: var(--teal); border-color: var(--teal); }

@media (max-width: 800px) {
  .blog-main-grid { grid-template-columns: 1fr; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-thumb { min-height: 140px; }
}

.policy-wrap { max-width: 860px; margin: 0 auto; padding: 56px 5% 72px; }

.policy-wrap h2 { font-family: var(--font-display); font-size: 1.55rem; color: var(--dark); margin: 36px 0 12px; padding-top: 8px; border-top: 2px solid var(--teal-light); }

.policy-wrap h2:first-of-type { border-top: none; margin-top: 0; }

.policy-wrap h3 { font-size: 1.05rem; font-weight: 600; color: var(--teal); margin: 22px 0 8px; }

.policy-wrap p { font-size: .97rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

.policy-wrap ul { margin: 10px 0 18px 22px; display: flex; flex-direction: column; gap: 8px; }

.policy-wrap ul li { font-size: .95rem; color: var(--muted); line-height: 1.7; }

.policy-wrap ul li::marker { color: var(--saffron); }

.policy-wrap strong { color: var(--dark); font-weight: 600; }

.policy-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .92rem; }

.policy-table th { background: var(--teal); color: #fff; padding: 11px 16px; text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }

.policy-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text); }

.policy-table tbody tr:nth-child(even) { background: var(--teal-light); }

.policy-table .charge { font-weight: 600; color: var(--teal); }

.highlight-box { background: var(--saffron-lt); border-left: 4px solid var(--saffron); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 20px 0; }

.highlight-box p { margin: 0; color: var(--text); }

.info-card { background: var(--teal-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }

.info-card-title { font-weight: 600; color: var(--teal); font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }

.info-grid { display: grid; grid-template-columns: 140px 1fr; gap: 6px 14px; font-size: .9rem; }

.info-key { color: var(--muted); font-weight: 500; }

.info-val { color: var(--dark); font-weight: 500; }

.last-updated { font-size: .82rem; color: var(--muted); margin-bottom: 28px; padding: 10px 16px; background: var(--bg); border-radius: var(--radius); display: inline-block; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 40px; }

.contact-method { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; display: flex; gap: 18px; align-items: flex-start; }

.contact-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }

.contact-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 4px; }

.contact-val { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }

.contact-desc { font-size: .88rem; color: var(--muted); }

.form-group { margin-bottom: 18px; }

.form-label { display: block; font-size: .88rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }

.form-input, .form-select, .form-textarea {
      width: 100%; padding: 12px 14px; border: 1px solid var(--border);
      border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem;
      color: var(--text); background: var(--white);
      transition: border-color .15s;
    }

.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--teal); }

.form-textarea { height: 120px; resize: vertical; }

@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.snippet-box{background:var(--white);border:2px solid var(--teal);border-radius:var(--radius-lg);padding:24px 28px;margin:32px 0}

.snippet-box .snippet-q{font-family:var(--font-display);font-size:1.15rem;color:var(--dark);margin-bottom:10px}

.snippet-box .snippet-a{font-size:.97rem;color:var(--muted);line-height:1.8;margin-bottom:0}

.snippet-box .snippet-a strong{color:var(--dark)}

.howto-steps{counter-reset:step;margin:20px 0 0}

.howto-step{display:flex;gap:16px;align-items:flex-start;padding:14px 0;border-bottom:1px solid var(--border)}

.howto-step:last-child{border-bottom:none}

.howto-step-num{counter-increment:step;width:32px;height:32px;border-radius:50%;background:var(--teal);color:#fff;font-weight:700;font-size:.95rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}

.howto-step-text{flex:1}

.howto-step-title{font-weight:600;color:var(--dark);font-size:.95rem;margin-bottom:3px}

.howto-step-desc{font-size:.87rem;color:var(--muted);line-height:1.6}

.faq-snippet-list{display:flex;flex-direction:column;gap:0;margin-top:20px}

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

.faq-snippet-item:last-child{border-bottom:none}

.faq-snippet-q{font-weight:600;font-size:.97rem;color:var(--dark);margin-bottom:7px}

.faq-snippet-a{font-size:.92rem;color:var(--muted);line-height:1.7}

.article-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; max-width: 1100px; margin: 0 auto; padding: 0 5%; }

.article-body { padding: 48px 0 72px; }

.article-header { margin-bottom: 32px; }

.article-cat { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--saffron); margin-bottom: 10px; }

.article-h1 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--dark); line-height: 1.22; margin-bottom: 16px; }

.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--muted); padding-bottom: 20px; border-bottom: 2px solid var(--teal-light); margin-bottom: 28px; }

.article-author { font-weight: 600; color: var(--teal); }

.article-body h2 { font-family: var(--font-display); font-size: 1.45rem; color: var(--dark); margin: 36px 0 12px; padding-top: 8px; }

.article-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--teal); margin: 24px 0 8px; }

.article-body p { font-size: .97rem; color: #3a4a4a; line-height: 1.85; margin-bottom: 16px; }

.article-body ul, .article-body ol { margin: 10px 0 18px 22px; display: flex; flex-direction: column; gap: 8px; }

.article-body li { font-size: .95rem; color: #3a4a4a; line-height: 1.7; }

.article-body li::marker { color: var(--saffron); }

.article-body strong { color: var(--dark); font-weight: 600; }

.article-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

.article-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .92rem; }

.article-table th { background: var(--teal); color: #fff; padding: 11px 14px; text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }

.article-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text); }

.article-table tbody tr:nth-child(even) { background: var(--teal-light); }

.article-table .price { font-weight: 600; color: var(--teal); }

.article-callout { background: var(--saffron-lt); border-left: 4px solid var(--saffron); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 22px 0; }

.article-callout p { margin: 0; font-size: .93rem; }

.article-tip { background: var(--teal-light); border-left: 4px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 22px 0; }

.article-tip p { margin: 0; font-size: .93rem; }

.article-sidebar { padding: 48px 0 72px; }

.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 18px; }

.sidebar-card-title { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--teal); margin-bottom: 12px; }

.author-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-top: 40px; display: flex; gap: 18px; align-items: flex-start; }

.author-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; border: 3px solid var(--teal); }

.author-name { font-weight: 600; color: var(--dark); font-size: 1rem; margin-bottom: 3px; }

.author-role { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--saffron); margin-bottom: 8px; }

.author-bio { font-size: .88rem; color: var(--muted); line-height: 1.65; }

.related-posts { margin-top: 48px; padding-top: 32px; border-top: 2px solid var(--teal-light); }

.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 18px; }

.related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }

.related-card-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--saffron); margin-bottom: 6px; }

.related-card-title { font-size: .9rem; font-weight: 600; color: var(--dark); line-height: 1.35; margin-bottom: 8px; }

.toc { background: var(--teal-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px 22px; margin-bottom: 32px; }

.toc-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--teal); margin-bottom: 10px; }

.toc ol { margin: 0 0 0 18px; display: flex; flex-direction: column; gap: 5px; }

.toc ol li { font-size: .88rem; }

.toc ol li a { color: var(--teal); text-decoration: none; }

.toc ol li a:hover { text-decoration: underline; }

@media (max-width: 860px) { .article-wrap { grid-template-columns: 1fr; } .article-sidebar { padding-top: 0; } }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 28px 0;
  }

.season-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
  }

.season-card-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

.season-card-header .icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }

.season-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
  }

.season-card-header p {
    font-size: .8rem;
    color: rgba(255,255,255,.8);
    margin: 2px 0 0;
  }

.season-card-body {
    padding: 18px 20px;
    background: var(--white);
  }

.season-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
  }

.season-row:last-child { border-bottom: none; }

.season-label { color: var(--muted); font-weight: 500; min-width: 100px; flex-shrink: 0; }

.season-val { color: var(--dark); text-align: right; font-weight: 500; }

.verdict-box {
    background: var(--teal);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin: 28px 0;
    color: #fff;
  }

.verdict-box h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 10px;
  }

.verdict-box p {
    font-size: .93rem;
    color: rgba(255,255,255,.88);
    line-height: 1.75;
    margin: 0;
  }

.checklist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 14px 0;
  }

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.5;
  }

.checklist-item .ck {
    flex-shrink: 0;
    margin-top: 1px;
    font-size: .9rem;
  }

@media (max-width: 600px) {
    .comparison-grid { grid-template-columns: 1fr; }
  }

/* v1.2 WordPress-specific additions */
.hf-pagination { margin-top: 44px; }
.hf-pagination .nav-links { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.hf-pagination .page-numbers { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; border:1px solid var(--border); border-radius:8px; color:var(--teal); text-decoration:none; font-weight:500; font-size:.9rem; }
.hf-pagination .page-numbers:hover { background:var(--teal-light); }
.hf-pagination .page-numbers.current { background:var(--teal); color:#fff; border-color:var(--teal); }
.admin-bar .nav { top: 32px; }
@media (max-width:782px){ .admin-bar .nav { top:46px; } }

/* =============================================
   v1.4 — Dropdown menu support (header nav)
   Works with WordPress nested menus:
   .menu-item-has-children > .sub-menu
   ============================================= */
.nav__links li { position: relative; }

/* Desktop dropdown panel */
.nav__links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.nav__links li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__links .sub-menu li { display: block; }
.nav__links .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text) !important;
  font-size: .86rem;
  white-space: nowrap;
  background: none !important;
}
.nav__links .sub-menu a:hover {
  background: var(--teal-light) !important;
  color: var(--teal) !important;
}
/* Little caret on parent items */
.nav__links li.menu-item-has-children > a::after {
  content: '▾';
  font-size: .7em;
  margin-left: 5px;
  opacity: .8;
}

/* Mobile: sub-menus stack open inside the drawer */
@media (max-width: 640px) {
  .nav__links .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.06);
    border-radius: 0;
    padding: 0;
    min-width: 0;
  }
  .nav__links .sub-menu a { color: rgba(255,255,255,.85) !important; padding-left: 32px; }
  .nav__links .sub-menu a:hover { background: rgba(255,255,255,.1) !important; color: #fff !important; }
  .nav__links li.menu-item-has-children > a::after { float: right; }
}

/* =============================================
   v1.6 — Custom content templates (packages etc.)
   ============================================= */
.hf-single{background:var(--bg)}
.hf-phero{background:linear-gradient(135deg,var(--teal),var(--teal-mid));background-size:cover;background-position:center;padding:72px 5% 60px;color:#fff}
.hf-phero__inner{max-width:1100px;margin:0 auto}
.hf-phero h1{font-family:var(--font-display);font-size:clamp(1.9rem,4vw,3rem);line-height:1.1;margin:10px 0 16px;color:#fff}
.hf-phero__meta{display:flex;flex-wrap:wrap;gap:10px 22px;margin-bottom:24px;font-size:.98rem;color:rgba(255,255,255,.92)}
.hf-dest-badges{display:flex;flex-wrap:wrap;gap:8px}
.hf-dest-badge{background:rgba(255,255,255,.16);color:#fff;padding:4px 12px;border-radius:20px;font-size:.78rem;text-decoration:none;letter-spacing:.02em}
.hf-dest-badge:hover{background:var(--saffron)}

.hf-btn{display:inline-block;padding:13px 26px;border-radius:var(--radius);font-weight:600;text-decoration:none;font-size:.95rem;transition:transform .15s,background .15s}
.hf-btn--wa{background:var(--saffron);color:#fff}
.hf-btn--wa:hover{background:#c96e2d;transform:translateY(-1px)}
.hf-btn--block{display:block;text-align:center;margin-top:8px}

.hf-single__grid{max-width:1100px;margin:0 auto;padding:44px 5% 64px;display:grid;grid-template-columns:1fr 340px;gap:44px;align-items:start}
.hf-single__main{min-width:0}
.hf-h2{font-family:var(--font-display);color:var(--teal);font-size:1.5rem;margin:36px 0 16px;padding-bottom:8px;border-bottom:2px solid var(--teal-light)}
.hf-single__main>.hf-h2:first-child{margin-top:0}
.hf-prose{color:var(--text);line-height:1.7}

/* timeline */
.hf-timeline{position:relative;padding-left:28px}
.hf-timeline::before{content:'';position:absolute;left:7px;top:6px;bottom:6px;width:2px;background:var(--teal-light)}
.hf-timeline__item{position:relative;padding:0 0 22px}
.hf-timeline__dot{position:absolute;left:-28px;top:4px;width:16px;height:16px;border-radius:50%;background:var(--saffron);border:3px solid #fff;box-shadow:0 0 0 2px var(--saffron)}
.hf-timeline__body h4{font-size:1.05rem;color:var(--dark);margin:0 0 4px}
.hf-timeline__body p{color:var(--muted);margin:0 0 6px;line-height:1.6}
.hf-chip{display:inline-block;background:var(--teal-light);color:var(--teal);font-size:.75rem;padding:3px 10px;border-radius:12px;font-weight:600}

/* hotels */
.hf-hotels{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px}
.hf-hotel{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px;display:flex;flex-direction:column;gap:4px}
.hf-hotel__place{font-size:.78rem;color:var(--muted);text-transform:uppercase;letter-spacing:.04em}
.hf-hotel__name{color:var(--dark);font-size:1.02rem}
.hf-hotel__cat{color:var(--gold);font-size:.85rem}

/* inclusions */
.hf-incl-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.hf-incl,.hf-excl{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:18px 20px}
.hf-incl h4{color:#1a7a4a;margin:0 0 10px}.hf-excl h4{color:#b32d2e;margin:0 0 10px}
.hf-incl ul,.hf-excl ul{list-style:none;margin:0;padding:0}
.hf-incl li,.hf-excl li{padding:5px 0;border-bottom:1px solid var(--teal-light);color:var(--text);font-size:.92rem}
.hf-incl li:last-child,.hf-excl li:last-child{border-bottom:none}

/* add-ons */
.hf-addons{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.hf-addons li{display:flex;align-items:center;gap:10px;background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:10px 14px}
.hf-addon__label{flex:1;color:var(--dark)}
.hf-addon__price{font-weight:700;color:var(--teal)}
.hf-badge{font-size:.72rem;font-weight:700;padding:3px 9px;border-radius:10px}
.hf-badge--in{background:#e6f4ec;color:#1a7a4a}
.hf-badge--opt{background:var(--saffron-lt);color:var(--saffron)}

/* sidebar cards */
.hf-single__side{position:sticky;top:88px;display:flex;flex-direction:column;gap:18px}
.hf-card{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:22px;box-shadow:var(--shadow)}
.hf-card h3{font-family:var(--font-display);color:var(--teal);font-size:1.2rem;margin:0 0 14px}
.hf-pricetable{width:100%;border-collapse:separate;border-spacing:0;margin:10px 0 4px;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.hf-pricetable thead th{background:var(--teal);color:#fff;font-weight:600;text-align:left;padding:11px 14px;font-size:.88rem}
.hf-pricetable thead th:last-child{text-align:right}
.hf-pricetable td{padding:11px 14px;border-bottom:1px solid var(--teal-light);font-size:.94rem}
.hf-pricetable tbody tr:last-child td{border-bottom:0}
.hf-pricetable tbody tr:nth-child(even){background:var(--teal-light)}
.hf-pricetable__amt{text-align:right;font-weight:700;color:var(--teal);white-space:nowrap}
.hf-pricetable td a{color:var(--teal);font-weight:600;text-decoration:none}
.hf-pricetable td a:hover{color:var(--saffron)}
.hf-note{font-size:.78rem;color:var(--muted);margin:12px 0 0;line-height:1.5}
.hf-teamcard{display:flex;flex-direction:column;gap:2px;padding:10px 0;border-bottom:1px solid var(--teal-light)}
.hf-teamcard:last-child{border-bottom:none}
.hf-teamcard__label{font-size:.74rem;color:var(--muted);text-transform:uppercase;letter-spacing:.04em}
.hf-teamcard__wa{color:var(--saffron);font-weight:600;font-size:.85rem;text-decoration:none}

@media (max-width:860px){
	.hf-single__grid{grid-template-columns:1fr;gap:28px}
	.hf-single__side{position:static}
	.hf-incl-grid{grid-template-columns:1fr}
}

/* =============================================
   v1.7 — Phase B: competitive package page
   ============================================= */
.hf-phero__rating{margin:6px 0 12px}
.hf-phero__cta{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:14px}
.hf-btn--ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.6)}
.hf-btn--ghost:hover{background:rgba(255,255,255,.12)}
.hf-phero__reg{display:block;font-size:.78rem;color:rgba(255,255,255,.8);letter-spacing:.02em}

/* stars */
.hf-stars{display:inline-flex;gap:1px;color:var(--gold);font-size:1rem;letter-spacing:1px}
.hf-stars .hf-star{color:rgba(255,255,255,.35)}
.hf-phero .hf-stars .hf-star{color:rgba(255,255,255,.35)}
.hf-star.on{color:var(--gold)}
.hf-star.half{background:linear-gradient(90deg,var(--gold) 50%,rgba(255,255,255,.35) 50%);-webkit-background-clip:text;background-clip:text;color:transparent}
.hf-rating-num{font-weight:700;color:#fff}
.hf-rating-count{color:rgba(255,255,255,.85);font-size:.85rem}
.hf-stars.small{font-size:.9rem;color:var(--gold)}
.hf-star-off{color:var(--border)}

/* highlights */
.hf-highlights{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:8px 20px}
.hf-highlights li{position:relative;padding-left:26px;color:var(--text);line-height:1.5}
.hf-highlights li::before{content:'✦';position:absolute;left:0;color:var(--saffron);font-weight:700}

/* seasons */
.hf-seasons{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:12px}
.hf-season{background:var(--card-bg);border:1px solid var(--border);border-left:3px solid var(--saffron);border-radius:var(--radius);padding:12px 14px}
.hf-season__name{display:block;font-weight:700;color:var(--teal)}
.hf-season__note{color:var(--muted);font-size:.9rem}

/* generic list */
.hf-linelist{margin:0;padding-left:20px;color:var(--text);line-height:1.7}

/* faqs */
.hf-faqs{display:flex;flex-direction:column;gap:8px}
.hf-faq{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:0}
.hf-faq summary{cursor:pointer;padding:14px 18px;font-weight:600;color:var(--dark);list-style:none;position:relative}
.hf-faq summary::-webkit-details-marker{display:none}
.hf-faq summary::after{content:'+';position:absolute;right:18px;color:var(--saffron);font-weight:700;font-size:1.2rem}
.hf-faq[open] summary::after{content:'–'}
.hf-faq__a{padding:0 18px 14px;color:var(--muted);line-height:1.6}

/* reviews */
.hf-reviews__head{margin-bottom:16px;padding-bottom:12px;border-bottom:2px solid var(--teal-light)}
.hf-reviews__head .hf-stars{color:var(--gold)}.hf-reviews__head .hf-rating-num{color:var(--dark)}.hf-reviews__head .hf-rating-count{color:var(--muted)}
.hf-review{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px 18px;margin-bottom:12px}
.hf-review__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:6px}
.hf-review__date{font-size:.8rem;color:var(--muted)}
.hf-review__title{display:block;color:var(--dark);margin-bottom:4px}
.hf-review__body{color:var(--text);line-height:1.6;margin:0 0 8px}
.hf-review__by{font-size:.85rem;color:var(--muted)}
.hf-review__by a{color:var(--teal)}

/* related */
.hf-related{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px}
.hf-relcard{display:flex;flex-direction:column;background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;text-decoration:none;transition:transform .15s,box-shadow .15s}
.hf-relcard:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.hf-relcard__img{display:block;height:120px;background:var(--teal-light) center/cover no-repeat}
.hf-relcard__img--ph{background:linear-gradient(135deg,var(--teal),var(--teal-mid))}
.hf-relcard__body{padding:12px 14px}
.hf-relcard__body strong{color:var(--dark);font-size:.95rem;display:block;line-height:1.3}
.hf-relcard__dur{color:var(--muted);font-size:.8rem}

/* departures */
.hf-departures{width:100%;border-collapse:collapse;background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.hf-departures th{background:var(--teal);color:#fff;text-align:left;padding:10px 14px;font-size:.85rem}
.hf-departures td{padding:10px 14px;border-bottom:1px solid var(--teal-light);font-size:.92rem}
.hf-depstatus{font-size:.75rem;font-weight:700;padding:3px 10px;border-radius:10px}
.hf-depstatus--open{background:#e6f4ec;color:#1a7a4a}
.hf-depstatus--filling{background:var(--saffron-lt);color:var(--saffron)}
.hf-depstatus--full,.hf-depstatus--closed{background:#f2e6e6;color:#b32d2e}

/* trust block */
.hf-trustblock{background:var(--teal-light);border-radius:var(--radius-lg);padding:22px 24px;margin-top:36px}
.hf-trustblock h3{font-family:var(--font-display);color:var(--teal);margin:0 0 12px}
.hf-trustblock ul{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.hf-trustblock li{color:var(--text);font-size:.92rem;line-height:1.5}
.hf-trustblock strong{color:var(--teal)}

/* sidebar extras */
.hf-fromline{font-size:1.1rem;color:var(--text)}.hf-fromline strong{color:var(--teal);font-size:1.4rem}
.hf-policy{margin-top:12px;padding-top:12px;border-top:1px solid var(--teal-light);display:flex;flex-direction:column;gap:3px}
.hf-policy strong{color:var(--dark);font-size:.85rem}
.hf-policy span{font-size:.82rem;color:var(--muted)}

@media (max-width:860px){
	.hf-highlights,.hf-trustblock ul{grid-template-columns:1fr}
}
@media (max-width:600px){
	.hf-departures{display:block;overflow-x:auto}
}

/* v1.8 — AEO/GEO: byline + at-a-glance answer */
.hf-byline{font-size:.82rem;color:var(--muted);margin:0 0 14px}
.hf-byline strong{color:var(--teal)}
.hf-glance{background:var(--teal-light);border-left:4px solid var(--saffron);border-radius:var(--radius);padding:16px 20px;margin:0 0 28px}
.hf-glance p{margin:0;color:var(--text);font-size:1.05rem;line-height:1.6}

/* v1.9 — Phase C: activity template */
.hf-keyfacts{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 24px}
.hf-keyfact{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:10px 16px;display:flex;flex-direction:column;min-width:110px}
.hf-keyfact__k{font-size:.72rem;color:var(--muted);text-transform:uppercase;letter-spacing:.04em}
.hf-keyfact__v{font-weight:700;color:var(--dark)}
.hf-tiers td:last-child{color:var(--muted);font-size:.85rem}
.hf-gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:10px}
.hf-gallery-cell{display:block;padding-bottom:70%;background:var(--teal-light) center/cover no-repeat;border-radius:var(--radius)}

/* v1.10 — Phase C: event template */
.hf-when{font-size:1.05rem;color:var(--teal);font-weight:600;margin:0 0 14px}
.hf-single__grid--wide{grid-template-columns:1fr}

/* v1.12 — Phase C: archive/listing pages */
.hf-phero__sub{color:rgba(255,255,255,.9);font-size:1.05rem;margin:8px 0 16px;max-width:600px}
.hf-archive-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:20px}
.hf-acard{display:flex;flex-direction:column;background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;text-decoration:none;transition:transform .15s,box-shadow .15s}
.hf-acard:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.hf-acard__img{display:block;height:160px;background:var(--teal-light) center/cover no-repeat}
.hf-acard__img--ph{background:linear-gradient(135deg,var(--teal),var(--teal-mid))}
.hf-acard__body{padding:16px 18px;display:flex;flex-direction:column;gap:6px;flex:1}
.hf-acard__title{color:var(--dark);font-size:1.05rem;line-height:1.3}
.hf-acard__meta{color:var(--muted);font-size:.85rem}
.hf-acard__foot{margin-top:auto;display:flex;justify-content:space-between;align-items:center;padding-top:8px}
.hf-acard__price{color:var(--teal);font-weight:700}
.hf-acard__rate{color:var(--gold);font-size:.85rem;font-weight:600}

/* v1.13 — visible breadcrumbs + destination content */
.hf-crumbs{font-size:.82rem;color:var(--muted);margin:0 0 16px}
.hf-crumbs a{color:var(--teal);text-decoration:none}
.hf-crumbs a:hover{text-decoration:underline}
.hf-crumbs__sep{margin:0 7px;color:var(--border)}
.hf-crumbs__cur{color:var(--muted)}

/* v1.15 — Stories tap-through viewer */
.hf-story{display:flex;justify-content:center;padding:20px 12px;background:#0a1a1a}
.hf-story__frame{position:relative;width:100%;max-width:420px;height:80vh;max-height:760px;border-radius:18px;overflow:hidden;background:#000;box-shadow:0 20px 60px rgba(0,0,0,.5)}
.hf-story__bars{position:absolute;top:10px;left:10px;right:10px;z-index:5;display:flex;gap:4px}
.hf-story__bar{flex:1;height:3px;background:rgba(255,255,255,.35);border-radius:3px;overflow:hidden}
.hf-story__bar i{display:block;height:100%;width:0;background:#fff}
.hf-story__bar.is-done i{width:100%}
.hf-story__bar.is-active i{animation:hfstory 5s linear forwards}
@keyframes hfstory{from{width:0}to{width:100%}}
.hf-story__close{position:absolute;top:20px;right:14px;z-index:6;color:#fff;font-size:1.6rem;line-height:1;text-decoration:none;opacity:.9}
.hf-story__slide{position:absolute;inset:0;background:var(--teal) center/cover no-repeat;opacity:0;visibility:hidden;transition:opacity .3s;display:flex;align-items:flex-end}
.hf-story__slide.is-active{opacity:1;visibility:visible}
.hf-story__text{padding:28px 24px 36px;color:#fff;width:100%}
.hf-story__text h2{font-family:var(--font-display);color:#fff;font-size:1.7rem;margin:0 0 8px;text-shadow:0 2px 12px rgba(0,0,0,.4)}
.hf-story__text p{color:rgba(255,255,255,.92);margin:0 0 14px;text-shadow:0 1px 8px rgba(0,0,0,.4)}
.hf-story__cta{display:inline-block}
.hf-story__tap{position:absolute;top:0;bottom:0;width:33%;z-index:4;background:transparent;border:0;cursor:pointer;-webkit-tap-highlight-color:transparent}
.hf-story__tap--prev{left:0}
.hf-story__tap--next{left:33%;width:67%}
.hf-story__main-cta{position:absolute;bottom:24px;left:50%;transform:translateX(-50%);z-index:6;white-space:nowrap}
@media (max-width:520px){.hf-story{padding:0}.hf-story__frame{max-width:100%;height:100vh;max-height:none;border-radius:0}}

/* =============================================
   v2.0 — Phase D: Homepage
   ============================================= */
.hf-home{overflow-x:hidden}
.hf-hero{background:linear-gradient(135deg,var(--teal) 0%,var(--teal-mid) 100%);color:#fff;padding:80px 24px 70px;text-align:center;position:relative}
.hf-hero__inner{max-width:820px;margin:0 auto}
.hf-hero__eyebrow{display:inline-block;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;color:var(--gold);margin-bottom:16px}
.hf-hero h1{font-family:var(--font-display);color:#fff;font-size:2.7rem;line-height:1.15;margin:0 0 18px}
.hf-hero__sub{font-size:1.12rem;color:rgba(255,255,255,.9);max-width:640px;margin:0 auto 28px;line-height:1.6}
.hf-hero__cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

.hf-trustbar{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);max-width:1100px;margin:-30px auto 0;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);position:relative;z-index:2}
.hf-trustbar__item{background:var(--card-bg);padding:18px 16px;text-align:center;display:flex;flex-direction:column;gap:2px}
.hf-trustbar__item strong{color:var(--teal);font-size:1.05rem}
.hf-trustbar__item span{color:var(--muted);font-size:.82rem}

.hf-sec{max-width:1160px;margin:0 auto;padding:56px 24px}
.hf-sec--tint{background:var(--teal-light);max-width:none}
.hf-sec--tint>.hf-sec__head,.hf-sec--tint>div{max-width:1160px;margin-left:auto;margin-right:auto}
.hf-sec__head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:26px;gap:16px}
.hf-sec__head h2{font-family:var(--font-display);color:var(--teal);font-size:1.9rem;margin:0}
.hf-sec__head a{color:var(--saffron);font-weight:600;white-space:nowrap}
.hf-sec__rate{font-size:.9rem}

.hf-destgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.hf-destcard{position:relative;height:150px;border-radius:var(--radius-lg);overflow:hidden;background:linear-gradient(135deg,var(--teal),var(--teal-mid)) center/cover no-repeat;display:flex;align-items:flex-end;padding:16px;text-decoration:none;transition:transform .15s}
.hf-destcard:hover{transform:translateY(-3px)}
.hf-destcard__name{color:#fff;font-weight:700;font-size:1.15rem;text-shadow:0 2px 8px rgba(0,0,0,.4)}

.hf-why{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.hf-why__item{text-align:center;padding:8px}
.hf-why__ic{font-size:2rem;display:block;margin-bottom:10px}
.hf-why__item h3{font-family:var(--font-display);color:var(--teal);margin:0 0 8px;font-size:1.15rem}
.hf-why__item p{color:var(--muted);font-size:.92rem;line-height:1.5;margin:0}

.hf-storyrow{display:flex;gap:20px;overflow-x:auto;padding:4px 0 12px}
.hf-storybubble{flex:0 0 auto;width:88px;text-align:center;text-decoration:none}
.hf-storybubble__ring{display:block;width:78px;height:78px;border-radius:50%;margin:0 auto 8px;background:linear-gradient(135deg,var(--teal),var(--teal-mid)) center/cover no-repeat;border:3px solid var(--saffron);box-shadow:0 0 0 2px #fff inset}
.hf-storybubble__name{font-size:.78rem;color:var(--text);line-height:1.2;display:block}

.hf-revstrip{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.hf-revcard{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:22px}
.hf-revcard .hf-stars{color:var(--gold)}
.hf-revcard p{color:var(--text);line-height:1.6;margin:10px 0 12px;font-size:.95rem}
.hf-revcard__by{color:var(--muted);font-size:.85rem;font-weight:600}

.hf-fleetgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.hf-fleetcard{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}
.hf-fleetcard__img{display:block;height:120px;background:var(--teal-light) center/cover no-repeat}
.hf-fleetcard__body{padding:14px 16px;display:flex;flex-direction:column;gap:3px}
.hf-fleetcard__body strong{color:var(--dark)}
.hf-fleetcard__meta{color:var(--muted);font-size:.82rem}
.hf-fleetcard__rate{color:var(--teal);font-weight:700;font-size:.95rem;margin-top:4px}

.hf-teamgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.hf-teamcard{text-align:center}
.hf-teamcard__img{display:block;width:120px;height:120px;border-radius:50%;margin:0 auto 12px;background:var(--teal-light) center/cover no-repeat}
.hf-teamcard strong{display:block;color:var(--dark)}
.hf-teamcard__role{color:var(--muted);font-size:.85rem}

.hf-faqs--wide{max-width:820px;margin:0 auto}

.hf-ctaband{background:linear-gradient(135deg,var(--saffron),var(--gold));text-align:center;padding:60px 24px;color:#fff}
.hf-ctaband h2{font-family:var(--font-display);color:#fff;font-size:2rem;margin:0 0 10px}
.hf-ctaband p{color:rgba(255,255,255,.95);margin:0 0 22px;font-size:1.05rem}
.hf-btn--lg{font-size:1.05rem;padding:14px 30px}

@media (max-width:900px){
	.hf-trustbar{grid-template-columns:repeat(2,1fr)}
	.hf-destgrid,.hf-why,.hf-fleetgrid,.hf-teamgrid{grid-template-columns:repeat(2,1fr)}
	.hf-revstrip{grid-template-columns:1fr}
	.hf-hero h1{font-size:2.05rem}
}
@media (max-width:520px){
	.hf-destgrid,.hf-why,.hf-fleetgrid,.hf-teamgrid{grid-template-columns:1fr}
}

/* v2.2 — Q&A board */
.hf-qa-wrap{background:var(--teal-light);margin-top:10px}
.hf-qa-inner{max-width:820px;margin:0 auto;padding:48px 24px}
.hf-qa{}
.hf-qa-intro{color:var(--muted);margin:0 0 24px}
.hf-qa-list{list-style:none;margin:0 0 32px;padding:0}
.hf-qa-item{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius);padding:16px 18px;margin-bottom:12px}
.hf-qa-item .children{list-style:none;margin:14px 0 0;padding:0 0 0 22px;border-left:2px solid var(--teal-light)}
.hf-qa-item--staff{border-left:3px solid var(--teal);background:#f4faf9}
.hf-qa-head{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:6px}
.hf-qa-author{font-weight:700;color:var(--dark)}
.hf-qa-badge{background:var(--teal);color:#fff;font-size:.7rem;font-weight:700;padding:2px 9px;border-radius:10px;text-transform:uppercase;letter-spacing:.03em}
.hf-qa-date{color:var(--muted);font-size:.78rem;margin-left:auto}
.hf-qa-text{color:var(--text);line-height:1.6}
.hf-qa-text p{margin:0 0 8px}
.hf-qa-replylink{font-size:.82rem;font-weight:600}
.hf-qa-replylink a{color:var(--saffron)}
.hf-qa-empty{color:var(--muted);font-style:italic;margin-bottom:28px}
.hf-qa-form{background:var(--card-bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:22px 24px}
.hf-qa-formtitle{font-family:var(--font-display);color:var(--teal);margin:0 0 6px;font-size:1.3rem}
.hf-qa-note{color:var(--muted);font-size:.85rem;margin:0 0 14px;line-height:1.5}
.hf-qa-form textarea,.hf-qa-form input[type=text],.hf-qa-form input[type=email],.hf-qa-form input[type=url]{width:100%;padding:10px 12px;border:1px solid var(--border);border-radius:var(--radius);font-family:inherit;font-size:.95rem;margin-bottom:12px}
.hf-qa-form .comment-form-cookies-consent{display:flex;gap:8px;align-items:flex-start}
.hf-qa-form .comment-form-cookies-consent input{width:auto}
.hf-qa-form label{font-size:.85rem;color:var(--muted)}
.hf-qa-form .form-submit{margin:6px 0 0}

/* v2.4 — Qv2.3 — Q&A per-page toggle + graceful empty state A team-only replies.*/
.hf-qa-ask{background:var(--card-bg);border:1px dashed var(--teal);border-radius:var(--radius-lg);padding:0;max-width:640px}
.hf-qa-ask>summary{cursor:pointer;padding:16px 20px;list-style:none;color:var(--teal);font-weight:600;display:flex;align-items:center;gap:8px}
.hf-qa-ask>summary::-webkit-details-marker{display:none}
.hf-qa-ask__q{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:var(--teal);color:#fff;font-weight:700;font-size:.8rem}
.hf-qa-ask__cta{color:var(--saffron);margin-left:auto}
.hf-qa-ask[open]>summary{border-bottom:1px solid var(--border)}
.hf-qa-ask .hf-qa-form{border:0;padding:20px}

/* v2.7 — team profile page */
a.hf-teamcard{text-decoration:none;transition:transform .15s}
a.hf-teamcard:hover{transform:translateY(-3px)}
a.hf-teamcard:hover strong{color:var(--saffron)}
.hf-profile{display:flex;gap:26px;align-items:center;margin:8px 0 24px;flex-wrap:wrap}
.hf-profile__photo{flex:0 0 auto;width:150px;height:150px;border-radius:50%;background:var(--teal-light) center/cover no-repeat;box-shadow:var(--shadow)}
.hf-profile__head{flex:1;min-width:240px}
.hf-profile__head h1{margin:0 0 4px;color:var(--teal)}
.hf-verified{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;background:var(--teal);color:#fff;border-radius:50%;font-size:.9rem;vertical-align:middle}
.hf-profile__role{color:var(--muted);font-size:1.05rem;margin:0 0 12px}
.hf-profile__chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px}
.hf-chip{background:var(--teal-light);color:var(--teal);font-size:.82rem;font-weight:600;padding:5px 12px;border-radius:14px}
@media (max-width:520px){.hf-profile{flex-direction:column;text-align:center}.hf-profile__chips{justify-content:center}}

/* v2.8 — richer team profile: hero, quick facts, socials */
.hf-phero--profile{text-align:center;padding-bottom:36px}
.hf-profile__photo--hero{display:inline-block;width:140px;height:140px;border-radius:50%;border:4px solid rgba(255,255,255,.25);margin-bottom:14px;background-color:var(--teal-mid)}
.hf-phero--profile h1{margin:0 0 4px}
.hf-phero__role{color:rgba(255,255,255,.9);font-size:1.1rem;margin:0}
.hf-facts{list-style:none;margin:0 0 16px;padding:0}
.hf-facts li{display:flex;justify-content:space-between;gap:12px;padding:8px 0;border-bottom:1px solid var(--teal-light);font-size:.9rem}
.hf-facts li:last-child{border-bottom:0}
.hf-facts span{color:var(--muted)}
.hf-facts strong{color:var(--dark);text-align:right}
.hf-socials{display:flex;gap:10px;margin:6px 0 16px}
.hf-social{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:var(--teal-light);color:var(--teal);transition:background .15s,color .15s}
.hf-social:hover{background:var(--teal);color:#fff}

/* v2.9 — linked expert card on package/activity pages */
.hf-expert{margin-bottom:12px}
.hf-expert__main{display:flex;gap:12px;align-items:center;text-decoration:none;padding:10px;border:1px solid var(--border);border-radius:var(--radius);transition:border-color .15s,box-shadow .15s}
.hf-expert__main:hover{border-color:var(--teal);box-shadow:var(--shadow)}
.hf-expert__img{flex:0 0 auto;width:52px;height:52px;border-radius:50%;background:var(--teal-light) center/cover no-repeat}
.hf-expert__info{display:flex;flex-direction:column;gap:1px;min-width:0}
.hf-expert__label{font-size:.72rem;text-transform:uppercase;letter-spacing:.04em;color:var(--saffron);font-weight:700}
.hf-expert__info strong{color:var(--dark);line-height:1.2}
.hf-expert__role{font-size:.8rem;color:var(--muted)}
.hf-expert__view{font-size:.75rem;color:var(--teal);font-weight:600;margin-top:2px}
.hf-expert .hf-teamcard__wa{display:inline-block;margin:8px 0 0 10px;font-size:.82rem;font-weight:600;color:var(--teal)}

/* v3.0 — nav CTA when set as a real menu-item class */
.nav__links li.nav__cta{display:flex;align-items:center}
.nav__links li.nav__cta > a{background:var(--saffron);color:#fff !important;padding:8px 18px;border-radius:22px;font-weight:600}
.nav__links li.nav__cta > a:hover{background:var(--saffron-dark,#c96a2a)}
.nav__links li.nav__cta > a::after{display:none !important}

/* v3.1 — vehicle page tick list */
.hf-ticklist{list-style:none;margin:0 0 20px;padding:0}
.hf-ticklist li{position:relative;padding:6px 0 6px 28px;color:var(--text);border-bottom:1px solid var(--teal-light)}
.hf-ticklist li:last-child{border-bottom:0}
.hf-ticklist li::before{content:"✓";position:absolute;left:0;top:6px;color:var(--teal);font-weight:700}

/* v3.27 — Fleet v3.26 — auto-flush rewrites (fixes /destinations/ redirect). Taxi Rates are now real editable pages (shortcodes).*/
.hf-rates{max-width:1000px;margin:0 auto;padding:0 24px 48px}
.hf-rates__group{margin-bottom:34px}
.hf-ratetable{width:100%;border-collapse:collapse;margin:8px 0}
.hf-ratetable th,.hf-ratetable td{text-align:left;padding:11px 14px;border-bottom:1px solid var(--border)}
.hf-ratetable thead th{background:var(--teal);color:#fff;font-weight:600}
.hf-ratetable thead th:not(:first-child),.hf-ratetable td:not(:first-child){text-align:right;white-space:nowrap}
.hf-ratetable tbody tr:nth-child(even){background:var(--teal-light)}
.hf-ratetable td a{color:var(--teal);font-weight:600}
.hf-ratetable td a:hover{color:var(--saffron)}

/* v3.6 — fare list show-more */
.hf-farewrap .hf-fare-extra{display:none}
.hf-farewrap .hf-fare-dim td{opacity:.4}
.hf-farewrap.is-open .hf-fare-extra{display:table-row}
.hf-farewrap.is-open .hf-fare-dim td{opacity:1}
.hf-fare-more{margin-top:12px;background:none;border:1px solid var(--teal);color:var(--teal);padding:8px 22px;border-radius:20px;font-weight:600;cursor:pointer;font-size:.88rem;transition:background .15s,color .15s}
.hf-fare-more:hover{background:var(--teal);color:#fff}

/* v3.7 — enquiry modal + on-request button */
.hf-onreq{background:none;border:0;color:var(--saffron);font-weight:700;cursor:pointer;font-size:inherit;font-family:inherit;padding:0;text-decoration:underline;text-underline-offset:2px}
.hf-onreq:hover{color:var(--teal)}
.hf-modal{position:fixed;inset:0;background:rgba(10,26,26,.6);display:flex;align-items:center;justify-content:center;z-index:99999;padding:20px}
.hf-modal[hidden]{display:none}
.hf-modal__box{background:#fff;border-radius:16px;max-width:380px;width:100%;padding:26px 24px 22px;position:relative;box-shadow:0 24px 70px rgba(0,0,0,.35)}
.hf-modal__x{position:absolute;top:10px;right:14px;background:none;border:0;font-size:1.6rem;color:var(--muted);cursor:pointer;line-height:1}
.hf-modal__box h3{font-family:var(--font-display);color:var(--teal);margin:0 0 4px;font-size:1.35rem}
.hf-modal__sub{color:var(--muted);font-size:.85rem;margin:0 0 16px}
.hf-modal__box input{width:100%;padding:12px 13px;border:1px solid var(--border);border-radius:9px;margin-bottom:12px;font-size:.95rem;font-family:inherit;box-sizing:border-box}
.hf-modal__box input:focus{outline:none;border-color:var(--teal)}
.hf-modal__box .hf-btn{width:100%;justify-content:center;margin-bottom:10px;box-sizing:border-box}
.hf-btn--ghost2{background:var(--teal-light);color:var(--teal)}
.hf-btn--ghost2:hover{background:var(--border)}
.hf-modal__msg{font-size:.85rem;color:var(--teal);text-align:center;margin:2px 0 0;min-height:1.1em}

/* v3.8 — captcha, honeypot, exit-intent offer */
.hf-hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;opacity:0}
.hf-cap{display:flex;align-items:center;gap:8px;font-size:.9rem;color:var(--muted);margin-bottom:12px}
.hf-cap input{width:70px;padding:9px 10px;border:1px solid var(--border);border-radius:8px;margin:0;font-family:inherit}
.hf-modal__offer{display:inline-block;background:var(--saffron);color:#fff;font-weight:700;font-size:.72rem;text-transform:uppercase;letter-spacing:.05em;padding:4px 12px;border-radius:12px;margin-bottom:10px}

/* v3.27 — Fleet v3.26 — auto-flush rewrites (fixes /destinations/ redirect). Taxi Rates are now real editable pages (shortcodes).(desktop: form; mobile: WhatsApp) */
.hf-modal__box .hf-cta{width:100%;justify-content:center;box-sizing:border-box}
/* Desktop default: form submit dominant (filled green), WhatsApp secondary (ghost) */
.hf-cta--form{background:#1fa855;color:#fff;border:0}
.hf-cta--form:hover{background:#17924a;color:#fff}
.hf-cta--wa{background:var(--teal-light);color:var(--teal);border:0}
.hf-cta--wa:hover{background:var(--border);color:var(--teal)}
@media (max-width:640px){
  /* Mobile: WhatsApp dominant, form submit secondary */
  .hf-cta--form{background:var(--teal-light);color:var(--teal)}
  .hf-cta--form:hover{background:var(--border);color:var(--teal)}
  .hf-cta--wa{background:#1fa855;color:#fff}
  .hf-cta--wa:hover{background:#17924a;color:#fff}
}

/* v3.27 — Fleet v3.26 — auto-flush rewrites (fixes /destinations/ redirect). Taxi Rates are now real editable pages (shortcodes).bar */
.nav__search{position:relative}
.nav__search summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:6px;color:rgba(255,255,255,.82);transition:background .18s,color .18s}
.nav__search summary::-webkit-details-marker{display:none}
.nav__search summary:hover,.nav__search[open] summary{background:rgba(255,255,255,.12);color:#fff}
.nav__search-form{position:absolute;right:0;top:52px;background:#fff;box-shadow:0 16px 40px rgba(0,0,0,.16);border:1px solid var(--border);border-radius:12px;padding:12px;display:flex;gap:8px;width:min(88vw,340px);z-index:200}
.nav__search-form input{flex:1;padding:10px 12px;border:1px solid var(--border);border-radius:8px;font-family:inherit;font-size:.95rem}
.nav__search-form input:focus{outline:none;border-color:var(--teal)}
.nav__search-form .hf-btn{padding:8px 16px}
.hf-searchbig{display:flex;gap:8px;max-width:560px;margin:14px 0 4px}
.hf-searchbig input{flex:1;padding:12px 14px;border:1px solid var(--border);border-radius:10px;font-family:inherit;font-size:1rem}
.hf-searchbig input:focus{outline:none;border-color:var(--teal)}
.hf-noresults{color:var(--muted);font-size:1.02rem;margin:8px 0 16px}
.hf-acard__badge{display:inline-block;background:var(--teal-light);color:var(--teal);font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;padding:3px 9px;border-radius:10px;margin-bottom:6px;align-self:flex-start}
/* Filter bar (chips) */
.hf-filterbar{display:flex;flex-wrap:wrap;gap:18px 22px;align-items:flex-end;background:var(--teal-light);border-radius:14px;padding:16px 18px;margin-bottom:20px}
.hf-fgroup{display:flex;flex-direction:column;gap:6px}
.hf-flabel{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--teal)}
.hf-filterbar select{padding:9px 12px;border:1px solid var(--border);border-radius:9px;background:#fff;font-family:inherit;font-size:.9rem;color:var(--text)}
.hf-filterbar select:focus{outline:none;border-color:var(--teal)}
.hf-chips{display:flex;flex-wrap:wrap;gap:6px}
.hf-chip{background:#fff;border:1px solid var(--border);color:var(--text);border-radius:20px;padding:7px 14px;font-size:.85rem;font-family:inherit;cursor:pointer;transition:all .15s;font-weight:500}
.hf-chip:hover{border-color:var(--teal);color:var(--teal)}
.hf-chip.is-active{background:var(--teal);border-color:var(--teal);color:#fff;font-weight:600}
.hf-filter-clear{align-self:flex-end;background:none;border:0;color:var(--teal);text-decoration:underline;text-underline-offset:2px;cursor:pointer;font-size:.82rem;font-family:inherit;padding:9px 0}
.hf-filter-clear:hover{color:var(--saffron)}
.hf-filter-count{margin-left:auto;align-self:flex-end;font-size:.82rem;color:var(--muted);font-weight:600;padding-bottom:9px}
@media (max-width:640px){.hf-filterbar{gap:14px}.hf-fgroup{width:100%}.hf-filter-count,.hf-filter-clear{margin-left:0}}

/* v3.16 — homepage fleet cards are links */
.hf-fleetcard{display:block;text-decoration:none;color:inherit;transition:transform .15s,box-shadow .15s}
.hf-fleetcard:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(0,0,0,.1)}
.hf-fleetcard strong{color:var(--teal)}

/* v3.17 — developers page */
.hf-devsteps{margin:8px 0 20px;padding-left:22px;line-height:1.8}
.hf-devsteps li{margin-bottom:6px}
.hf-rates code{background:var(--teal-light);color:var(--teal);padding:2px 7px;border-radius:5px;font-size:.88em;word-break:break-all}

/* v3.18 — developer API catalogue */
.hf-dev section{margin-bottom:36px;scroll-margin-top:80px}
.hf-dev__eyebrow{font-size:.78rem;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;font-weight:600;margin:0 0 6px}
.hf-dev__base{font-size:.9rem;color:var(--muted);margin:8px 0 14px}
.hf-dev__toc{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.hf-dev__toc a{background:var(--teal-light);color:var(--teal);padding:6px 14px;border-radius:18px;font-size:.82rem;font-weight:600;text-decoration:none}
.hf-dev__toc a:hover{background:var(--teal);color:#fff}
.hf-dev__h3{font-size:1rem;color:var(--teal);margin:20px 0 8px}
.hf-code{position:relative;margin:10px 0}
.hf-code pre{background:#0a2b2b;color:#d5efe9;padding:16px 18px;border-radius:10px;overflow-x:auto;font-size:.82rem;line-height:1.6;margin:0;white-space:pre}
.hf-copy{position:absolute;top:10px;right:10px;background:rgba(255,255,255,.14);color:#fff;border:0;border-radius:6px;padding:5px 12px;font-size:.75rem;cursor:pointer;font-family:inherit}
.hf-copy:hover{background:rgba(255,255,255,.28)}

/* v3.34 — listing content wrapped in padded section (align + padding) */
.hf-listing-wrap{max-width:100%;margin:0 auto;padding:44px 5% 64px}
.hf-listing-wrap > p:first-child{color:var(--muted);font-size:1.02rem;line-height:1.6;margin:0 0 20px}
.hf-listing-wrap .hf-rates{max-width:none;padding:0}
.hf-crumb-bar{background:#fff;padding:13px 5%;border-bottom:1px solid var(--border)}
.hf-crumb-bar .hf-crumbs{margin:0}
.hf-listing-body{max-width:1160px;margin:0 auto;padding:48px 24px 72px}
.hf-listing-head{padding:24px 5% 0}
.hf-listing-title{font-family:var(--font-display);color:var(--teal);font-size:2rem;line-height:1.15;margin:6px 0 12px}

/* v3.36 — SEO article/pillar pages */
.hf-article{max-width:860px;margin:0 auto;color:var(--text);line-height:1.7}
.hf-article .hf-lead{font-size:1.12rem;color:var(--text);background:var(--teal-light);border-left:4px solid var(--teal);padding:16px 18px;border-radius:0 10px 10px 0;margin:0 0 26px}
.hf-article h2{font-family:var(--font-display);color:var(--teal);font-size:1.5rem;margin:34px 0 12px}
.hf-article h3{color:var(--teal);font-size:1.1rem;margin:22px 0 6px}
.hf-article p{margin:0 0 14px}
.hf-article ul{margin:0 0 18px;padding-left:22px}
.hf-article li{margin-bottom:8px}
.hf-article table{width:100%;border-collapse:separate;border-spacing:0;margin:12px 0 22px;border:1px solid var(--border);border-radius:10px;overflow:hidden;font-size:.94rem}
.hf-article thead th{background:var(--teal);color:#fff;text-align:left;padding:11px 13px;font-weight:600}
.hf-article td{padding:11px 13px;border-bottom:1px solid var(--teal-light);vertical-align:top}
.hf-article tbody tr:last-child td{border-bottom:0}
.hf-article tbody tr:nth-child(even){background:var(--teal-light)}
.hf-article a{color:var(--teal);font-weight:600}
.hf-article-cta{text-align:center;margin:28px 0 0}

/* v3.38 — homepage "plan your trip" guide cluster */
.hf-guidegrid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media(max-width:900px){.hf-guidegrid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.hf-guidegrid{grid-template-columns:1fr}}
.hf-guidecard{display:flex;flex-direction:column;gap:8px;background:#fff;border:1px solid var(--border);border-radius:14px;padding:22px;text-decoration:none;transition:transform .15s,box-shadow .15s}
.hf-guidecard:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(0,0,0,.1)}
.hf-guidecard strong{color:var(--teal);font-size:1.05rem}
.hf-guidecard>span{color:var(--muted);font-size:.9rem;line-height:1.5}
.hf-guidecard__more{color:var(--saffron)!important;font-weight:600;font-size:.85rem;margin-top:auto}

/* v3.39 — listing hero uses featured image when set */
.page-hero--img::before{display:none}

/* v3.43 — content freshness dateline */
.hf-dateline{font-size:.82rem;color:var(--muted);margin:0 0 20px}
.hf-dateline time{color:var(--muted);font-weight:600}

/* v3.44 — homepage overview + open FAQ (GEO/AEO) */
/* Understated quick-facts block (kept for GEO/AEO, visually secondary) */
.hf-overview{padding-top:30px;padding-bottom:30px}
.hf-overview h2{font-size:1.25rem;margin:0 0 10px}
.hf-overview__lead{font-size:.95rem;line-height:1.65;color:var(--muted);max-width:760px;margin:0 0 12px}
.hf-overview__table{width:100%;max-width:680px;border-collapse:separate;border-spacing:0;border:1px solid var(--border);border-radius:10px;overflow:hidden;margin:0 0 10px;font-size:.86rem}
.hf-overview__table th{text-align:left;width:36%;background:var(--teal-light);color:var(--teal);font-weight:600;padding:8px 12px;border-bottom:1px solid var(--border);vertical-align:top}
.hf-overview__table td{padding:8px 12px;border-bottom:1px solid var(--teal-light);color:var(--muted)}
.hf-overview__table tr:last-child th,.hf-overview__table tr:last-child td{border-bottom:0}
.hf-overview__updated{font-size:.78rem;color:var(--muted)}
.hf-overview__updated time{font-weight:600}
.hf-faq--open{border:1px solid var(--border);border-radius:10px;padding:16px 18px;margin-bottom:12px;background:#fff}
.hf-faq__q{font-size:1.02rem;color:var(--teal);margin:0 0 6px}
.hf-faq--open .hf-faq__a{color:var(--text);line-height:1.65}
.hf-faq--open .hf-faq__a p{margin:0}
