
/* ═══════════════════════════════════════════════════════
   FARAZM TRAVEL — GLOBAL DESIGN SYSTEM & RESPONSIVE FIX
   Injected into all pages via wp_enqueue_scripts
   ═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ───────────────────────────── */
:root {
  /* Colors */
  --color-primary:   #0A2015;
  --color-secondary: #1a3d2e;
  --color-accent:    #C9A84C;
  --color-cream:     #F9F7F2;
  --color-muted:     #8A7A62;
  --color-border:    #EDE8DC;
  --color-success:   #10B981;
  --color-error:     #DC2626;
  --color-warning:   #F59E0B;
  --color-white:     #ffffff;

  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Typography */
  --font-heading: "Cinzel", Georgia, serif;
  --font-body:    "Montserrat", -apple-system, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-md: 15px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);

  /* Transitions */
  --transition: all .2s ease;

  /* Container */
  --container: 1280px;
}

/* ── Global Reset & Box Model ────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Focus States (Accessibility) ────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ── Global Form Fixes ───────────────────────────────── */
input, select, textarea, button {
  font-family: var(--font-body);
  max-width: 100%;
}

/* ── Skip Link (Accessibility) ───────────────────────── */
.ft-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top .2s;
}
.ft-skip-link:focus {
  top: 0;
}

/* ── Global Button System ────────────────────────────── */
.btn, .ft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  min-height: 44px;    /* WCAG touch target */
  min-width: 44px;
  white-space: nowrap;
}
.btn-primary, .ft-btn-primary {
  background: var(--color-primary);
  color: var(--color-accent);
}
.btn-primary:hover { background: var(--color-secondary); color: var(--color-accent); }
.btn-gold, .ft-btn-gold {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn-gold:hover { filter: brightness(1.1); }
.btn-ghost, .ft-btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-wa {
  background: #1F8A4C;
  color: #fff;
}
.btn-wa:hover, .ft-wa-cta:hover, [class*="wa-btn"]:hover, a[href*="wa.me"]:hover, .hm-cta-wa:hover { background: #18713D !important; }
.btn-danger {
  background: #FEF2F2;
  color: var(--color-error);
  border: 1px solid #FCA5A5;
}

/* ── Global Card ─────────────────────────────────────── */
.ft-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* ── Global Alert / Status ───────────────────────────── */
.ft-alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}
.ft-alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #6EE7B7; }
.ft-alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }
.ft-alert-info    { background: #EFF6FF; color: #1E40AF; border: 1px solid #93C5FD; }
.ft-alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FCD34D; }

/* ── Global Badge ────────────────────────────────────── */
.ft-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.ft-badge-gold    { background: rgba(201,168,76,.15); color: #8B6914; }
.ft-badge-green   { background: #ECFDF5; color: #065F46; }
.ft-badge-blue    { background: #EFF6FF; color: #1E40AF; }
.ft-badge-red     { background: #FEF2F2; color: #991B1B; }

/* ── Global Form Fields ──────────────────────────────── */
.ft-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ft-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--color-muted);
}
.ft-input,
.ft-select,
.ft-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-primary);
  background: var(--color-white);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.ft-input:focus, .ft-select:focus, .ft-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  outline: none;
}
.ft-input.error, .ft-select.error, .ft-textarea.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(220,38,38,.08);
}
.ft-field-error {
  font-size: 12px;
  color: var(--color-error);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Container Utility ───────────────────────────────── */
.ft-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (min-width: 768px) {
  .ft-container { padding: 0 var(--space-xl); }
}

/* ── Grid Utilities ──────────────────────────────────── */
.ft-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.ft-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-md); }
.ft-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-md); }
.ft-flex    { display: flex; align-items: center; }
.ft-flex-wrap { display: flex; flex-wrap: wrap; align-items: center; }

/* ── Loading Skeleton ────────────────────────────────── */
@keyframes ft-shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.ft-skeleton {
  background: linear-gradient(90deg,#f0ede6 25%,#e8e2d8 50%,#f0ede6 75%);
  background-size: 1000px 100%;
  animation: ft-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════════════
   MOBILE FIRST RESPONSIVE — 375px
   ══════════════════════════════════════════════════════ */
@media (max-width: 375px) {
  :root {
    --space-md: 12px;
    --space-lg: 18px;
    --space-xl: 28px;
  }
  .ft-grid-2, .ft-grid-3, .ft-grid-4 { grid-template-columns: 1fr !important; }
  .ft-btn, .btn { width: 100%; justify-content: center; }
}

/* ── 480px ─────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --font-size-xl: 20px; --font-size-lg: 16px; }
  .ft-grid-3, .ft-grid-4 { grid-template-columns: 1fr 1fr !important; }
  .ft-grid-2 { grid-template-columns: 1fr !important; }
}

/* ── 576px ─────────────────────────────────────────── */
@media (max-width: 576px) {
  .ft-grid-4 { grid-template-columns: 1fr 1fr !important; }
}

/* ── 768px Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Prevent all horizontal scroll */
  html, body { overflow-x: hidden !important; width: 100% !important; }
  section, article, div { max-width: 100%; }

  /* All inputs 16px to prevent iOS zoom */
  input, select, textarea {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100%;
  }

  /* Grids collapse */
  .ft-grid-3, .ft-grid-4 { grid-template-columns: 1fr !important; }

  /* Full width buttons on mobile */
  .ft-btn-block-mobile { width: 100%; }

  /* Tables scroll on mobile */
  .ft-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Cards full width */
  .ft-card-mobile-full { border-radius: 0; }
}

/* ── 992px Tablet ───────────────────────────────────── */
@media (max-width: 992px) {
  .ft-grid-4 { grid-template-columns: 1fr 1fr !important; }
  .ft-grid-3 { grid-template-columns: 1fr 1fr !important; }
}

/* ══════════════════════════════════════════════════════
   PAGE-SPECIFIC RESPONSIVE FIXES
   ══════════════════════════════════════════════════════ */

/* ── Homepage ───────────────────────────────────────── */
.hm-slide-title { line-height: 1.2; }
@media (max-width: 480px) {
  .hm-slide-title { font-size: clamp(1.4rem, 7vw, 2rem) !important; }
  .hm-slide-sub   { font-size: 13px !important; }
  .hm-slide-btns  { flex-direction: column; gap: 10px; }
  .hm-slide-btns a { width: 100%; text-align: center; padding: 12px !important; }
  .hm-search-bar  { padding: 16px 12px !important; }
  .hm-pkg-grid    { grid-template-columns: 1fr !important; }
  .hm-trust-strip { flex-wrap: wrap; gap: 8px; justify-content: center; }
}
@media (max-width: 768px) {
  .hm-slide-btns  { flex-wrap: wrap; }
  .hm-pkg-grid    { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .hm-stat-strip  { grid-template-columns: 1fr 1fr !important; }
}

/* ── Package Cards ──────────────────────────────────── */
@media (max-width: 768px) {
  #pk-grid        { grid-template-columns: 1fr !important; }
  .pk-card        { margin-bottom: 0; }
}
@media (max-width: 480px) {
  #pk-grid        { grid-template-columns: 1fr !important; padding: 0 12px; }
  .pk-card-img    { height: 180px !important; }
  .pk-card-body   { padding: 16px !important; }
  .pk-card-title  { font-size: 15px !important; }
}

/* ── Hotels Grid ────────────────────────────────────── */
@media (max-width: 768px) {
  .ht-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .ht-card-img  { height: 180px !important; }
  .ht-card-body { padding: 14px !important; }
}

/* ── Flights Page ───────────────────────────────────── */
@media (max-width: 768px) {
  .fl-search    { grid-template-columns: 1fr !important; }
  .fl-form      { padding: 20px 16px !important; }
  .fl-fields    { grid-template-columns: 1fr !important; }
  .fl-tabs      { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 480px) {
  .fl-tab       { padding: 10px 14px !important; font-size: 12px !important; }
  .fl-hero      { padding: 40px 16px !important; min-height: 220px !important; }
}

/* ── Visa Page ──────────────────────────────────────── */
@media (max-width: 768px) {
  .vis-grid     { grid-template-columns: 1fr !important; }
  .vis-form-grid{ grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .vis-hero     { padding: 40px 16px !important; }
  .vis-type-card{ padding: 16px !important; }
}

/* ── B2B Portal ─────────────────────────────────────── */
@media (max-width: 768px) {
  .b2b-layout   { flex-direction: column !important; }
  .b2b-sidebar  { width: 100% !important; border-right: none !important; border-bottom: 2px solid var(--color-border); }
  .b2b-content  { width: 100% !important; }
  .b2b-pkg-grid { grid-template-columns: 1fr !important; }
  .b2b-grid-2   { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .b2b-stat-grid{ grid-template-columns: 1fr 1fr !important; }
  .b2b-form     { padding: 20px 16px !important; }
}

/* ── My Account ─────────────────────────────────────── */
@media (max-width: 768px) {
  .ma-layout    { flex-direction: column !important; }
  .ma-sidebar   { width: 100% !important; min-width: 0 !important; border-right: none !important; border-bottom: 2px solid var(--color-border); }
  .ma-content   { padding: 20px 16px !important; }
  .ma-bk-card   { margin-bottom: 12px; }
}
@media (max-width: 480px) {
  .ma-tab-list  { flex-wrap: wrap; gap: 4px; }
  .ma-tab       { font-size: 12px !important; padding: 8px 12px !important; }
  .ma-bk-footer { flex-direction: column; gap: 8px; }
}

/* ── Auth Page ──────────────────────────────────────── */
@media (max-width: 480px) {
  .auth-card    { padding: 24px 16px !important; margin: 0 12px; }
  .auth-tabs    { gap: 0; }
  .auth-tab     { flex: 1; text-align: center; padding: 12px 8px !important; font-size: 13px !important; }
}

/* ── Hotel Detail ───────────────────────────────────── */
@media (max-width: 768px) {
  .hd-gallery-grid { grid-template-columns: 1fr !important; }
  .hd-tabs         { overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .hd-book-bar     { flex-direction: column !important; gap: 12px; }
  .hd-info-grid    { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .hd-hero         { min-height: 220px !important; }
  .hd-book-btn     { width: 100% !important; }
}

/* ── Package Detail ─────────────────────────────────── */
@media (max-width: 768px) {
  .pd-itinerary    { padding: 0 !important; }
  .pd-tabs         { overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .pd-book-bar     { flex-direction: column !important; gap: 10px; }
  .pd-book-btn     { width: 100% !important; }
}
@media (max-width: 480px) {
  .pd-hero         { min-height: 200px !important; }
  .pd-hero-title   { font-size: clamp(1.3rem,6vw,2rem) !important; }
}

/* ── Transport Page ─────────────────────────────────── */
@media (max-width: 768px) {
  .tr-types { grid-template-columns: repeat(3,1fr) !important; }
  .tr-form-card { padding: 20px 16px !important; }
  .tr-grid-2, .tr-grid-3 { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .tr-types { grid-template-columns: repeat(2,1fr) !important; }
  .tr-hero  { padding: 40px 16px !important; }
  .tr-type-card { padding: 16px 10px !important; }
  .tr-type-card .icon { font-size: 1.5rem !important; }
}
@media (max-width: 375px) {
  .tr-types { grid-template-columns: 1fr 1fr !important; }
  .tr-why-grid { grid-template-columns: 1fr !important; }
}

/* ── Contact Page ───────────────────────────────────── */
@media (max-width: 768px) {
  .ct-main     { grid-template-columns: 1fr !important; }
  .ct-left, .ct-right { width: 100%; }
  .ct-right    { border-left: none !important; border-top: 4px solid var(--color-accent); }
  .ct-field-row{ grid-template-columns: 1fr !important; }
  .ct-info-cards { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .ct-info-cards { grid-template-columns: 1fr !important; }
  .ct-hero-title { font-size: 1.5rem !important; }
}

/* ── Footer ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .ft-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .ft-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .ft-footer-grid { grid-template-columns: 1fr !important; }
  .ft-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Header ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .ft-topbar   { display: none !important; }
  .ft-nav-logo { height: 36px !important; }
}
@media (max-width: 480px) {
  .ft-nav-cta  { display: none; }
  .ft-currency-btn span { display: none; }
}

/* ══════════════════════════════════════════════════════
   ACCESSIBILITY HELPERS
   ══════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* High contrast */
@media (prefers-color-scheme: dark) {
  /* Keep brand colors — don't invert travel site */
}

/* ── Print ───────────────────────────────────────────── */
@media print {
  header, footer, nav, .ft-skip-link, button { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}


/* ═══ PASS 2 — SPACING SYSTEM + TYPOGRAPHY SCALE ═══ */

/* Mobile spacing override */
@media (max-width: 768px) {
  :root {
    --space-xs:  8px;
    --space-sm:  12px;
    --space-md:  16px;
    --space-lg:  24px;
    --space-xl:  32px;
    --space-2xl: 48px;
  }
}

/* ── Typography scale with clamp ── */
h1 { font-size: clamp(1.75rem, 5vw, 3rem);     line-height: 1.15; font-weight: 700; }
h2 { font-size: clamp(1.375rem, 4vw, 2.25rem);  line-height: 1.2;  font-weight: 700; }
h3 { font-size: clamp(1.125rem, 3vw, 1.5rem);   line-height: 1.3;  font-weight: 600; }
h4 { font-size: clamp(1rem, 2.5vw, 1.25rem);    line-height: 1.4;  font-weight: 600; }

/* ── Global button consistency ── */
a.btn, button.btn,
.pk-btn-book, .ht-btn-book,
.hm-btn-gold, .hm-btn-ghost,
.tr-btn-gold, .b2b-btn,
.auth-submit, .ma-btn,
.ct-submit-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: .4px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
}

/* ── Card consistency ── */
.hm-pkg-card, .ht-card, .pk-card, .b2b-pkg-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hm-pkg-card:hover, .ht-card:hover, .pk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}

/* ── Consistent gold accent ── */
.hm-sec-eyebrow, .pk-eyebrow, .ht-eyebrow,
[class*="eyebrow"], [class*="badge-gold"] {
  color: #C9A84C;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

/* ── Consistent section wrapper ── */
section,
.hm-section,
[class*="-section"],
[class*="-wrap"] {
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ── Image consistency ── */
.hm-pkg-img, .pk-card-img, .ht-card-img, .b2b-pkg-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Stats strip mobile ── */
@media (max-width: 576px) {
  .hm-stats, [class*="stat-strip"], [class*="stats-bar"] {
    flex-wrap: wrap;
  }
  .hm-stat, [class*="stat-item"] {
    flex: 1 1 50%;
    min-width: 0;
  }
}

/* ── Testimonial cards mobile ── */
@media (max-width: 768px) {
  .hm-tstm-grid, [class*="tstm-grid"], [class*="review-grid"] {
    grid-template-columns: 1fr !important;
  }
  .hm-tstm-wrap, [class*="tstm-wrap"] {
    padding: clamp(32px,5vw,56px) clamp(16px,4vw,24px) !important;
  }
}

/* ── Filter pills scroll ── */
@media (max-width: 640px) {
  .hm-pkg-filters, .pk-filter-bar, [class*="filter-bar"], [class*="filter-strip"] {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    flex-wrap: nowrap !important;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .hm-pkg-filters::-webkit-scrollbar,
  .pk-filter-bar::-webkit-scrollbar { display: none; }
  [class*="fil-btn"], [class*="filter-btn"], .pk-fil {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ── CTA section sizing ── */
@media (max-width: 768px) {
  [class*="-cta-section"], [class*="-cta-wrap"],
  .ft-footer-cta {
    padding: clamp(28px,5vw,48px) clamp(16px,4vw,24px) !important;
  }
  [class*="-cta-title"], .ft-footer-cta-title {
    font-size: clamp(1.3rem,5vw,1.8rem) !important;
  }
  [class*="-cta-sub"], .ft-footer-cta-sub {
    font-size: 14px !important;
  }
  [class*="-cta-btns"] {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  [class*="-cta-btn"] {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ── WhatsApp CTA ── */
.ft-wa-cta, [class*="wa-btn"], .btn-wa, a[href*="wa.me"] {
  background: #1F8A4C;
  color: #fff !important;
  border-radius: 10px;
}
a[href*="wa.me"]:hover { background: #128C7E; }

/* ── Touch-friendly minimum sizes ── */
@media (max-width: 768px) {
  a, button, [role="button"], input, select, label {
    min-height: 36px;
  }
  button, [role="button"], .btn, .pk-fil, [class*="-tab"],
  a.hm-btn-gold, a.hm-btn-ghost, a.ft-btn {
    min-height: 44px;
  }
}

/* ═══ STICKY BOTTOM CONVERSION BAR (Mobile Only) ═══ */
#ft-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: #0A2015;
  border-top: 1px solid rgba(201,168,76,.3);
  display: none;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
@media (max-width: 768px) {
  #ft-sticky-bar { display: flex; }
}
#ft-sticky-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .15s, color .15s;
  min-height: 52px;
}
#ft-sticky-bar a:last-child { border-right: none; }
#ft-sticky-bar a:hover, #ft-sticky-bar a:active { background: rgba(201,168,76,.1); color: #C9A84C; }
#ft-sticky-bar .ft-sb-wa  { color: #2BA35A; }
#ft-sticky-bar .ft-sb-wa:hover { background: rgba(37,211,102,.1); }
#ft-sticky-bar .ft-sb-pkg { background: #C9A84C; color: #0A2015; font-weight: 700; }
#ft-sticky-bar .ft-sb-pkg:hover { background: #d4b05c; }
#ft-sticky-bar .ft-sb-icon { font-size: 18px; line-height: 1; }
/* Compensate page for sticky bar */
@media (max-width: 768px) {
  body.has-sticky-bar footer,
  body.has-sticky-bar .ft-footer { margin-bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }
}

/* ═══ CHAT WIDGET FIX ═══ */
/* Push chat widget above sticky bar */
@media (max-width: 768px) {
  /* Common chat widget selectors */
  #hubspot-messages-iframe-container,
  .intercom-launcher-frame,
  .tidio-chat-button,
  [id*="chat-widget"],
  [id*="livechat"],
  [class*="chat-bubble"],
  [class*="chat-widget"],
  [class*="cookie-btn"],
  #cookie-notice,
  .cookie-law-info-bar {
    bottom: calc(60px + env(safe-area-inset-bottom, 8px)) !important;
  }
}
/* Move any fixed bottom elements up */
@media (max-width: 768px) {
  [style*="position: fixed"][style*="bottom: 0"],
  [style*="position:fixed"][style*="bottom:0"] {
    bottom: calc(56px + env(safe-area-inset-bottom,0px)) !important;
  }
}

/* ═══ PERFORMANCE — Reduce transition: all ═══ */
/* Override broad transition:all with specific properties only */
* { transition-property: color, background-color, border-color, opacity, transform !important; }
/* But NOT on animations/sliders */
.hm-slide, .hm-slider, [class*="slider-"] { transition-property: opacity, transform !important; }

/* ═══ FLOATING COOKIE / CHAT WIDGET ═══ */
@media (max-width: 768px) {
  /* Cookiebot or similar */
  #CybotCookiebotDialog,
  .cc-window,
  #cookie-notice { bottom: 60px !important; }
}

/* ═══ Services Section Scan-Friendly ═══ */
.hm-svc-desc,
[class*="svc-desc"],
[class*="service-desc"] {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
}
.hm-svc-stat,
[class*="svc-stat"] {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #C9A84C;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hm-svc-card,
[class*="svc-card"] {
  display: flex;
  flex-direction: column;
}
.hm-svc-body { flex: 1; display: flex; flex-direction: column; }
.hm-svc-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
@media (max-width: 480px) {
  .hm-svc-icon { font-size: 1.6rem; margin-bottom: 8px; }
  .hm-svc-title { font-size: 14px !important; }
  .hm-svc-desc { -webkit-line-clamp: 2; }
  .hm-svc-stat { font-size: 10px; }
}

/* ═══ Testimonial Cards — compact ═══ */
.hm-tstm-text,
[class*="tstm-text"],
[class*="review-text"] {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  font-size: 13px !important;
}
.hm-tstm-readmore,
[class*="read-more-btn"] {
  color: #C9A84C;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  display: inline-block;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 430px) {
  .hm-tstm-text { -webkit-line-clamp: 3; }
}

/* ═══ Package Tabs — better touch targets ═══ */
.hm-pkg-filters,
[class*="pkg-filter"],
[class*="pkg-tabs"] {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap !important;
  gap: 8px;
}
.hm-pkg-fil, .hm-pkg-filter-btn,
[class*="pkg-fil-btn"] {
  min-height: 40px;
  min-width: 80px;
  padding: 8px 18px !important;
  font-size: 13px !important;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 99px !important;
  font-weight: 600;
}
.hm-pkg-fil.on, [class*="pkg-fil-btn"].on,
.hm-pkg-fil.active {
  background: #0A2015 !important;
  color: #C9A84C !important;
  box-shadow: 0 2px 8px rgba(10,32,21,.25) !important;
}
@media (max-width: 430px) {
  .hm-pkg-fil, [class*="pkg-fil-btn"] {
    min-height: 36px;
    padding: 7px 14px !important;
    font-size: 12px !important;
  }
}

/* ═══ Package Card hierarchy ═══ */
.hm-pkg-price, [class*="pkg-price"] {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem) !important;
  font-weight: 700 !important;
  color: #0A2015 !important;
  font-family: "Cinzel", Georgia, serif;
}
.hm-pkg-title, [class*="pkg-title"] {
  font-size: clamp(14px, 2.5vw, 17px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 6px !important;
}
.hm-pkg-book, [class*="pkg-book"],
.pk-btn-book {
  background: #0A2015 !important;
  color: #C9A84C !important;
  border-radius: 8px !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  text-decoration: none;
  transition: background .2s, color .2s !important;
}
.hm-pkg-book:hover, .pk-btn-book:hover { background: #C9A84C !important; color: #0A2015 !important; }

/* ═══ PREMIUM HOMEPAGE CLASSES ═══ */
.hm-hero{position:relative;height:clamp(480px,72vh,760px);display:grid;grid-template-columns:1fr;overflow:hidden;background:#0A2015;}
.hm-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:opacity 1.2s ease;opacity:0;}
.hm-hero-bg.active{opacity:1;}
.hm-hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(105deg,rgba(10,32,21,.93) 0%,rgba(10,32,21,.7) 45%,rgba(10,32,21,.18) 100%);}
.hm-hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;max-width:1320px;margin:0 auto;padding:0 clamp(16px,4vw,60px);height:100%;}
.hm-hero-l{display:flex;flex-direction:column;justify-content:center;}
.hm-hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.3);color:#C9A84C;border-radius:99px;font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:6px 14px;margin-bottom:20px;width:fit-content;}
.hm-hero-title{font-family:'Cinzel',Georgia,serif;font-size:clamp(2rem,4vw,3.4rem);font-weight:700;color:#fff;line-height:1.12;margin:0 0 16px;text-shadow:0 2px 24px rgba(0,0,0,.4);}
.hm-hero-title span{color:#C9A84C;}
.hm-hero-subtitle{font-family:'Montserrat',sans-serif;font-size:clamp(14px,1.3vw,16px);color:rgba(255,255,255,.8);line-height:1.65;margin:0 0 22px;max-width:440px;}
.hm-hero-pills{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:26px;}
.hm-hero-pill{display:flex;align-items:center;gap:6px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.9);font-family:'Montserrat',sans-serif;font-size:11px;font-weight:600;padding:5px 11px;border-radius:99px;backdrop-filter:blur(6px);}
.hm-hero-ctas{display:flex;gap:12px;flex-wrap:wrap;align-items:stretch;}
.hm-hero-ctas>a{flex:1 1 0;min-width:150px;justify-content:center;}
.hm-cta-quote{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:transparent;color:#C9A84C;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;padding:14px 22px;border-radius:10px;text-decoration:none;letter-spacing:.3px;min-height:48px;border:1.5px solid #C9A84C;transition:all .2s;cursor:pointer;}
.hm-cta-quote:hover{background:#C9A84C;color:#0A2015;}
.hm-cta-primary{display:inline-flex;align-items:center;gap:8px;background:#C9A84C;color:#0A2015;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;padding:14px 28px;border-radius:10px;text-decoration:none;letter-spacing:.3px;transition:background .2s,transform .2s;min-height:48px;border:none;cursor:pointer;box-shadow:0 4px 16px rgba(201,168,76,.4);}
.hm-cta-primary:hover{background:#d4b05c;transform:translateY(-1px);}
.hm-cta-ghost{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.1);color:#fff;border:1.5px solid rgba(255,255,255,.35);font-family:'Montserrat',sans-serif;font-size:14px;font-weight:600;padding:13px 24px;border-radius:10px;text-decoration:none;min-height:48px;transition:all .2s;backdrop-filter:blur(6px);}
.hm-cta-ghost:hover{background:rgba(255,255,255,.2);}
.hm-cta-wa{display:inline-flex;align-items:center;gap:8px;background:#1F8A4C;color:#fff;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;padding:13px 22px;border-radius:10px;text-decoration:none;min-height:48px;transition:all .2s;box-shadow:0 4px 14px rgba(37,211,102,.3);}
/* Hero secondary: outline WhatsApp (subordinate to the gold primary) */
.hm-cta-wa-outline{background:transparent !important;color:#1F8A4C !important;border:1.5px solid #1F8A4C !important;box-shadow:none !important;}
.hm-cta-wa-outline:hover{background:#1F8A4C !important;color:#fff !important;transform:translateY(-1px);}
/* Hero tertiary: quote as a quiet text link */
.hm-cta-textlink{display:inline-flex;align-items:center;gap:4px;background:transparent;color:#C9A84C;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:600;padding:13px 8px;text-decoration:none;min-height:48px;transition:color .2s;}
.hm-cta-textlink:hover{color:#E8CC7A;text-decoration:underline;}
.hm-cta-wa:hover{background:#1db954;transform:translateY(-1px);}
/* Hero card */
.hm-hero-r{display:flex;align-items:center;justify-content:center;}
.hm-hero-card{background:rgba(255,255,255,.97);backdrop-filter:blur(12px);border-radius:24px;padding:28px;width:100%;max-width:360px;box-shadow:0 16px 64px rgba(0,0,0,.18);}
.hm-hero-card-title{font-family:'Cinzel',Georgia,serif;font-size:1.05rem;font-weight:700;color:#0A2015;margin-bottom:16px;padding-bottom:12px;border-bottom:2px solid #F0EDE6;display:flex;align-items:center;gap:8px;}
.hm-hc-field{margin-bottom:12px;}
.hm-hc-label{display:block;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:#8A7A62;margin-bottom:5px;}
.hm-hc-input,.hm-hc-select{width:100%;padding:10px 13px;border:1.5px solid #EDE8DC;border-radius:8px;font-family:'Montserrat',sans-serif;font-size:14px;color:#0A2015;background:#F9F7F2;transition:border .2s;-webkit-appearance:none;}
.hm-hc-input:focus,.hm-hc-select:focus{border-color:#C9A84C;outline:none;box-shadow:0 0 0 3px rgba(201,168,76,.12);}
.hm-hc-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.hm-hc-submit{width:100%;background:#0A2015;color:#C9A84C;border:none;border-radius:10px;padding:13px;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;cursor:pointer;letter-spacing:.4px;margin-top:4px;transition:background .2s;min-height:48px;}
.hm-hc-submit:hover{background:#142e1e;}
.hm-hc-trust{display:flex;justify-content:space-around;margin-top:12px;padding-top:12px;border-top:1px solid #EDE8DC;}
.hm-hc-trust-item{font-family:'Montserrat',sans-serif;font-size:10px;font-weight:600;color:#8A7A62;text-align:center;}
.hm-hc-trust-item strong{display:block;color:#C9A84C;font-size:14px;font-weight:700;}
/* Slider nav */
.hm-hero-dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);z-index:5;display:flex;gap:8px;align-items:center;}
.hm-hdot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.35);border:none;cursor:pointer;transition:all .3s;padding:0;}
.hm-hdot.active{width:24px;border-radius:4px;background:#C9A84C;}
.hm-hero-prev,.hm-hero-next{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.12);border:1.5px solid rgba(255,255,255,.25);color:rgba(255,255,255,.8);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;backdrop-filter:blur(4px);}
.hm-hero-prev{left:clamp(12px,2vw,32px);}
.hm-hero-next{right:clamp(12px,2vw,32px);}
.hm-hero-prev:hover,.hm-hero-next:hover{background:rgba(255,255,255,.22);color:#fff;}
/* Mobile: hide hero slider chrome — arrows + dots overlap the pills and CTA buttons. Swipe still works. */
@media(max-width:768px){
  .hm-hero-prev,.hm-hero-next{display:none!important;}
  .hm-hero-dots{display:none!important;}
}
/* Trust bar */
.hm-trust{background:#0A2015;padding:0;}
.hm-trust-inner{max-width:1320px;margin:0 auto;padding:0 clamp(16px,4vw,60px);display:flex;align-items:stretch;border-top:1px solid rgba(201,168,76,.15);}
.hm-trust-item{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:5px;padding:20px 12px;border-right:1px solid rgba(255,255,255,.06);transition:background .2s;}
.hm-trust-item:last-child{border-right:none;}
.hm-trust-item:hover{background:rgba(201,168,76,.05);}
.hm-trust-num{font-family:'Cinzel',Georgia,serif;font-size:1.3rem;font-weight:700;color:#C9A84C;line-height:1;}
.hm-trust-lbl{font-size:10px;font-weight:600;color:rgba(255,255,255,.5);letter-spacing:.5px;text-transform:uppercase;}
.hm-trust-icon{font-size:1.2rem;margin-bottom:2px;}
/* Packages section */
.hm-pkgs{background:#F9F7F2;padding:clamp(48px,6vw,88px) 0;}
.hm-pkgs-head{max-width:1320px;margin:0 auto;padding:0 clamp(16px,4vw,60px);display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:32px;flex-wrap:wrap;gap:16px;}
.hm-eyebrow{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#C9A84C;font-family:'Montserrat',sans-serif;margin-bottom:8px;}
.hm-h2{font-family:'Cinzel',Georgia,serif;font-size:clamp(1.6rem,3vw,2.4rem);font-weight:700;color:#0A2015;line-height:1.15;margin:0 0 6px;}
.hm-h2-lt{color:#fff;}
.hm-pkg-filters{display:flex;gap:8px;flex-wrap:wrap;background:#F0EDE6;border-radius:99px;padding:4px;}
.hm-pkg-fil{padding:8px 22px;border-radius:99px;font-family:'Montserrat',sans-serif;font-size:13px;font-weight:600;cursor:pointer;border:none;background:transparent;color:#8A7A62;transition:all .2s;letter-spacing:.3px;min-height:40px;}
.hm-pkg-fil.on,.hm-pkg-fil:hover{background:#0A2015;color:#C9A84C;box-shadow:0 2px 10px rgba(10,32,21,.25);}
.hm-pkg-grid{max-width:1320px;margin:0 auto;padding:0 clamp(16px,4vw,60px);display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:24px;}
/* Package cards */
.hm-pk-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.07);display:flex;flex-direction:column;transition:transform .22s ease,box-shadow .22s ease;cursor:pointer;border:1px solid transparent;}
.hm-pk-card:hover{transform:translateY(-4px);box-shadow:0 8px 40px rgba(0,0,0,.14);border-color:rgba(201,168,76,.2);}
.hm-pk-img-wrap{position:relative;aspect-ratio:16/10;overflow:hidden;}
.hm-pk-img-wrap > a{position:absolute !important;inset:0 !important;display:block !important;width:100% !important;height:100% !important;}
.hm-pk-img{position:absolute;inset:0;width:100% !important;height:100% !important;object-fit:cover !important;object-position:center !important;transition:transform .5s ease;}
.hm-pk-card:hover .hm-pk-img{transform:scale(1.04);}
.hm-pk-badges{position:absolute;top:12px;left:12px;display:flex;gap:6px;flex-wrap:wrap;}
.hm-pk-badge{background:rgba(10,32,21,.75);color:#C9A84C;font-family:'Montserrat',sans-serif;font-size:10px;font-weight:700;padding:3px 9px;border-radius:99px;letter-spacing:.5px;backdrop-filter:blur(4px);border:1px solid rgba(201,168,76,.2);text-transform:uppercase;}
.hm-pk-badge-featured{background:#C9A84C;color:#0A2015;}
.hm-pk-body{padding:20px;flex:1;display:flex;flex-direction:column;}
.hm-pk-title{font-family:'Montserrat',sans-serif;font-size:15px;font-weight:700;color:#0A2015;line-height:1.3;margin:0 0 8px;}
.hm-pk-meta{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:10px;}
.hm-pk-meta-item{display:flex;align-items:center;gap:4px;font-size:12px;color:#8A7A62;font-weight:500;}
.hm-pk-price-row{display:flex;align-items:baseline;gap:6px;margin-bottom:12px;}
.hm-pk-price{font-family:'Cinzel',Georgia,serif;font-size:clamp(1.2rem,2vw,1.5rem);font-weight:700;color:#0A2015;}
.hm-pk-price-from{font-size:11px;color:#8A7A62;font-weight:500;}
.hm-pk-incl{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:14px;}
.hm-pk-incl-tag{background:rgba(16,185,129,.08);color:#065F46;border:1px solid rgba(16,185,129,.2);font-size:10px;font-weight:700;padding:3px 8px;border-radius:99px;font-family:'Montserrat',sans-serif;}
.hm-pk-footer{margin-top:auto;padding-top:12px;border-top:1px solid #EDE8DC;display:flex;gap:8px;align-items:center;}
.hm-pk-btn-book{flex:1;background:#0A2015;color:#C9A84C;border:none;border-radius:8px;padding:10px 14px;font-family:'Montserrat',sans-serif;font-size:13px;font-weight:700;cursor:pointer;transition:background .2s;letter-spacing:.3px;min-height:42px;text-decoration:none;display:flex;align-items:center;justify-content:center;}
.hm-pk-btn-book:hover{background:#142e1e;}
.hm-pk-btn-details{padding:10px 14px;background:transparent;border:1.5px solid #EDE8DC;border-radius:8px;color:#8A7A62;font-family:'Montserrat',sans-serif;font-size:13px;font-weight:600;cursor:pointer;transition:all .2s;min-height:42px;text-decoration:none;display:flex;align-items:center;}
.hm-pk-btn-details:hover{border-color:#C9A84C;color:#0A2015;}
.hm-pk-empty{grid-column:1/-1;text-align:center;padding:64px 20px;color:#8A7A62;font-family:'Montserrat',sans-serif;}
.hm-pk-empty-icon{font-size:3rem;margin-bottom:16px;opacity:.4;}
/* Skeleton */
@keyframes shimmer{from{background-position:-1000px 0}to{background-position:1000px 0}}
.hm-pk-skel{background:linear-gradient(90deg,#F0EDE6 25%,#EDE8DC 50%,#F0EDE6 75%);background-size:1000px 100%;animation:shimmer 1.5s infinite;border-radius:8px;}
.hm-pk-skel-img{aspect-ratio:16/10;}
.hm-pk-skel-body{padding:20px;display:flex;flex-direction:column;gap:12px;}
.hm-pk-skel-line{height:16px;border-radius:4px;}
.hm-pk-skel-short{width:60%;}
.hm-pk-skel-price{height:28px;width:45%;border-radius:4px;}
/* View all */
.hm-pkgs-foot{max-width:1320px;margin:32px auto 0;padding:0 clamp(16px,4vw,60px);text-align:center;}
.hm-view-all-btn{display:inline-flex;align-items:center;gap:8px;background:transparent;border:2px solid #0A2015;color:#0A2015;padding:12px 32px;border-radius:12px;font-family:'Montserrat',sans-serif;font-size:14px;font-weight:700;text-decoration:none;transition:all .2s;letter-spacing:.3px;}
.hm-view-all-btn:hover{background:#0A2015;color:#C9A84C;}
/* Services */
.hm-svcs{background:#fff;padding:clamp(48px,6vw,88px) 0;}
.hm-svcs-inner{max-width:1320px;margin:0 auto;padding:0 clamp(16px,4vw,60px);}
.hm-svc-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:20px;margin-top:40px;}
.hm-svc-card{background:#F9F7F2;border-radius:16px;padding:28px 24px;border:1.5px solid transparent;transition:all .22s;display:flex;flex-direction:column;text-decoration:none;}
.hm-svc-card:hover{border-color:#C9A84C;background:#fff;box-shadow:0 4px 24px rgba(0,0,0,.1);transform:translateY(-3px);}
.hm-svc-icon-wrap{width:56px;height:56px;border-radius:12px;background:rgba(201,168,76,.1);border:1.5px solid rgba(201,168,76,.25);display:flex;align-items:center;justify-content:center;margin-bottom:18px;transition:transform .22s;}
.hm-svc-card:hover .hm-svc-icon-wrap{transform:scale(1.05);}
.hm-svc-title{font-family:'Montserrat',sans-serif;font-size:15px;font-weight:700;color:#0A2015;margin-bottom:8px;}
.hm-svc-desc{font-size:13px;color:#8A7A62;line-height:1.6;margin-bottom:16px;flex:1;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.hm-svc-link{font-size:11px;font-weight:700;color:#C9A84C;display:flex;align-items:center;gap:4px;font-family:'Montserrat',sans-serif;letter-spacing:.5px;text-transform:uppercase;margin-top:auto;}
/* Why */
.hm-why{background:#0A2015;padding:clamp(48px,6vw,88px) 0;}
.hm-why-inner{max-width:1320px;margin:0 auto;padding:0 clamp(16px,4vw,60px);}
.hm-why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:40px;}
.hm-why-card{background:rgba(255,255,255,.05);border:1px solid rgba(201,168,76,.12);border-radius:16px;padding:28px 22px;transition:all .22s;}
.hm-why-card:hover{background:rgba(201,168,76,.08);border-color:rgba(201,168,76,.3);transform:translateY(-3px);}
.hm-why-icon{font-size:2rem;margin-bottom:16px;}
.hm-why-title{font-family:'Montserrat',sans-serif;font-size:15px;font-weight:700;color:#fff;margin-bottom:8px;}
.hm-why-text{font-size:13px;color:rgba(255,255,255,.55);line-height:1.65;}
/* Testimonials */
.hm-tstm{background:#F9F7F2;padding:clamp(48px,6vw,88px) 0;}
.hm-tstm-inner{max-width:1320px;margin:0 auto;padding:0 clamp(16px,4vw,60px);}
.hm-tstm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px;}
.hm-tstm-card{background:#fff;border-radius:16px;padding:28px;box-shadow:0 2px 8px rgba(0,0,0,.07);border:1px solid #EDE8DC;display:flex;flex-direction:column;transition:box-shadow .22s,transform .22s;}
.hm-tstm-card:hover{box-shadow:0 4px 24px rgba(0,0,0,.1);transform:translateY(-2px);}
.hm-tstm-stars{color:#C9A84C;font-size:16px;letter-spacing:2px;margin-bottom:14px;}
.hm-tstm-quote{font-size:13px;line-height:1.7;color:#4A3F2F;font-style:italic;flex:1;margin-bottom:10px;display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;}
.hm-tstm-readmore{background:none;border:none;color:#C9A84C;font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;cursor:pointer;padding:0 0 10px;letter-spacing:.5px;text-transform:uppercase;text-align:left;}
.hm-tstm-sep{height:1px;background:#EDE8DC;margin-bottom:14px;}
.hm-tstm-author{display:flex;align-items:center;gap:12px;}
.hm-tstm-av{width:42px;height:42px;border-radius:50%;background:#0A2015;color:#C9A84C;display:flex;align-items:center;justify-content:center;font-family:'Cinzel',serif;font-size:14px;font-weight:700;flex-shrink:0;}
.hm-tstm-name{font-size:13px;font-weight:700;color:#0A2015;}
.hm-tstm-pkg{font-size:11px;color:#8A7A62;margin-top:2px;}
.hm-tstm-flag{margin-left:auto;font-size:18px;}
/* CTA band */
.hm-cta-band{background:linear-gradient(135deg,#0A2015 0%,#142e1e 100%);padding:clamp(40px,5vw,72px) 0;position:relative;overflow:hidden;}
.hm-cta-inner{max-width:1320px;margin:0 auto;padding:0 clamp(16px,4vw,60px);display:flex;align-items:center;justify-content:space-between;gap:40px;position:relative;z-index:1;flex-wrap:wrap;}
.hm-cta-l{flex:1;min-width:280px;}
.hm-cta-eyebrow{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#C9A84C;margin-bottom:10px;}
.hm-cta-title{font-family:'Cinzel',serif;font-size:clamp(1.5rem,2.8vw,2.2rem);font-weight:700;color:#fff;line-height:1.2;margin:0 0 8px;}
.hm-cta-sub{font-size:15px;color:rgba(255,255,255,.65);line-height:1.6;}
.hm-cta-r{display:flex;gap:12px;flex-wrap:wrap;flex-shrink:0;}
/* Modal */
.hm-modal-ov{position:fixed;inset:0;z-index:9900;background:rgba(10,32,21,.85);backdrop-filter:blur(6px);display:none;align-items:center;justify-content:center;padding:20px;}
.hm-modal-ov.open{display:flex;}
.hm-modal{background:#fff;border-radius:32px;max-width:520px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 16px 64px rgba(0,0,0,.2);padding:32px;position:relative;}
.hm-modal-close{position:absolute;top:16px;right:16px;width:36px;height:36px;border-radius:50%;background:#F0EDE6;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:20px;color:#8A7A62;transition:all .2s;}
.hm-modal-close:hover{background:#EDE8DC;color:#0A2015;}

/* Desktop responsive */
@media(max-width:1100px){.hm-why-grid{grid-template-columns:repeat(2,1fr)}.hm-tstm-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.hm-hero-inner{grid-template-columns:1fr}.hm-hero-r{display:none}.hm-hero{height:clamp(420px,70vh,600px)}}
@media(max-width:768px){
  .hm-hero{height:clamp(380px,68vh,520px)}
  .hm-hero-title{font-size:clamp(1.6rem,5.5vw,2.2rem)}
  .hm-trust-inner{flex-wrap:wrap}
  .hm-trust-item{flex:1 1 50%;border-bottom:1px solid rgba(255,255,255,.06)}
  .hm-pkg-grid{grid-template-columns:1fr 1fr}
  .hm-svc-grid{grid-template-columns:1fr 1fr}
  .hm-why-grid{grid-template-columns:1fr 1fr}
  .hm-tstm-grid{grid-template-columns:1fr}
  .hm-cta-inner{flex-direction:column;align-items:flex-start}
  .hm-cta-r{width:100%}
  .hm-cta-r a{flex:1;justify-content:center}
  .hm-pkgs-head{flex-direction:column;align-items:flex-start}
  .hm-pkg-filters{background:transparent;padding:0;flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none}
  .hm-pkg-filters::-webkit-scrollbar{display:none}
  .hm-pkg-fil{flex-shrink:0;background:#F0EDE6}
}
@media(max-width:576px){
  .hm-pkg-grid{grid-template-columns:1fr}
  .hm-svc-grid{grid-template-columns:1fr}
  .hm-why-grid{grid-template-columns:1fr}
  .hm-trust-item{flex:1 1 100%}
  .hm-hero-ctas{flex-direction:column;width:100%;align-items:stretch;}
  .hm-hero-ctas>a{flex:0 0 auto;width:100%;min-width:0;}
  .hm-cta-primary,.hm-cta-ghost,.hm-cta-wa,.hm-cta-quote,.hm-cta-wa-outline{width:100%;justify-content:center;}
  .hm-tstm-grid{grid-template-columns:1fr}
}
@media(max-width:430px){
  .hm-hero-title{font-size:clamp(1.4rem,6.5vw,1.9rem)}
  .hm-hero-pills{gap:6px}
  .hm-hero-pill{font-size:10px;padding:4px 9px}
}
@media(max-width:375px){
  .hm-hero-title{font-size:1.3rem}
}
/* Service icon fix — gold background shows emoji clearly */
/* [removed conflicting dark icon rule 1] */
.hm-svc-icon-wrap::after { display: none; }
/* Why us grid — force 4 col on desktop */
.hm-why-grid {
  grid-template-columns: repeat(4,1fr) !important;
}
@media(max-width:1100px){.hm-why-grid{grid-template-columns:repeat(2,1fr)!important;}}
@media(max-width:576px){.hm-why-grid{grid-template-columns:1fr!important;}}
/* Testimonials eyebrow/h2 fix */
.hm-tstm-inner > .hm-eyebrow,
.hm-tstm-inner > .hm-h2 { display: block !important; visibility: visible !important; }
/* Remove large empty gap before CTA band */
.hm-cta-band { margin-top: 0 !important; }
.hm-tstm { padding-bottom: clamp(32px,4vw,56px) !important; }

/* ══ HOMEPAGE VISUAL FIXES ══ */

/* 1. Service icon wrap — gold border + proper emoji sizing */
.hm-svc-icon-wrap {
  background: rgba(201,168,76,.1) !important;
  border: 1.5px solid rgba(201,168,76,.3) !important;
  width: 56px !important; height: 56px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.75rem !important;
  line-height: 1 !important;
  margin-bottom: 18px !important;
  flex-shrink: 0;
}

/* 2. Why Us — force 4-col on desktop, 2-col on tablet */
.hm-why-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 40px !important;
}
@media (max-width: 1100px) {
  .hm-why-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 576px) {
  .hm-why-grid { grid-template-columns: 1fr !important; }
}

/* 3. Why Us section — no excess padding/margin below */
.hm-why {
  padding-bottom: clamp(40px, 5vw, 72px) !important;
}

/* 4. Testimonials section header — always visible */
.hm-tstm-inner > .hm-eyebrow {
  color: #C9A84C !important;
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}
.hm-tstm-inner > .hm-h2 {
  color: #0A2015 !important;
  font-family: "Cinzel", Georgia, serif !important;
  display: block !important;
  margin-bottom: 32px !important;
}

/* 5. Package section header */
.hm-pkgs-head .hm-eyebrow {
  color: #C9A84C !important;
  display: block !important;
}
.hm-pkgs-head .hm-h2 {
  color: #0A2015 !important;
  display: block !important;
}

/* 6. Package price — hide GBP 0, show "Contact Us" */
.hm-pk-price:empty::before { content: "Contact Us"; font-size: 13px; color: #8A7A62; }

/* 7. Services section header */
.hm-svcs-inner > .hm-eyebrow {
  color: #C9A84C !important; display: block !important;
}
.hm-svcs-inner > .hm-h2 {
  color: #0A2015 !important; display: block !important; margin-bottom: 0 !important;
}

/* 8. Why Us header */
.hm-why-inner > .hm-eyebrow {
  color: #C9A84C !important; display: block !important;
}
.hm-why-inner > .hm-h2-lt {
  color: #fff !important; display: block !important; margin-bottom: 0 !important;
}

/* 9. Trust bar — numbers visible */
.hm-trust-num { color: #C9A84C !important; }
.hm-trust-lbl { color: rgba(255,255,255,.55) !important; }

/* 10. Hero trust pills — ensure visible */
.hm-hero-pill { color: rgba(255,255,255,.9) !important; }

/* 11. Package filter pill active */
.hm-pkg-fil.on {
  background: #0A2015 !important;
  color: #C9A84C !important;
}

/* 12. Sticky bottom bar — don't conflict with CTA band */
#ft-sticky-bar { z-index: 9990 !important; }

/* 13. Package grid consistent gap */
.hm-pkg-grid {
  gap: 24px !important;
}
@media (max-width: 768px) {
  .hm-pkg-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
}
@media (max-width: 480px) {
  .hm-pkg-grid { grid-template-columns: 1fr !important; }
}

/* ══ HOMEPAGE-SPECIFIC OVERRIDES ══ */

/* Hide footer pre-CTA on homepage (page has its own CTA band) */
.home .home-hide-cta,
.page-template-ft-homepage .home-hide-cta {
  display: none !important;
}

/* ── PRICES: Force display regardless of ft_admin_fmt rate ── */
.hm-pk-price { 
  font-family: "Cinzel", Georgia, serif !important;
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  font-weight: 700 !important;
  color: #0A2015 !important;
  line-height: 1.1 !important;
}
/* Hide "GBP 0" — if price is zero, show Contact Us via PHP (done) */

/* ── SERVICE ICONS: Force emoji visible ── */
.hm-svc-icon-wrap {
  background: #0d2a1c !important;
  border: 2px solid rgba(201,168,76,.4) !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.6rem !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  /* Emoji rendering fix */
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
}

/* ── WHY US: Cards fully styled ── */
.hm-why-card {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(201,168,76,.15) !important;
  border-radius: 16px !important;
  padding: 24px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all .22s ease !important;
  min-height: 160px !important;
}
.hm-why-card:hover {
  background: rgba(201,168,76,.08) !important;
  border-color: rgba(201,168,76,.35) !important;
  transform: translateY(-3px) !important;
}
.hm-why-icon {
  font-size: 1.8rem !important;
  margin-bottom: 14px !important;
  line-height: 1 !important;
  display: block !important;
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif !important;
}
.hm-why-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 8px !important;
  display: block !important;
}
.hm-why-text {
  font-size: 12.5px !important;
  color: rgba(255,255,255,.55) !important;
  line-height: 1.6 !important;
  display: block !important;
}

/* ── WHY US: Remove excess space ── */
.hm-why {
  padding: clamp(48px,6vw,80px) 0 !important;
}
.hm-why-inner {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 clamp(16px,4vw,60px) !important;
}

/* ── WHY GRID: 4 equal columns ── */
.hm-why-grid {
  display: grid !important;
  grid-template-columns: repeat(4,1fr) !important;
  gap: 20px !important;
  margin-top: 36px !important;
}
@media (max-width:1024px) {
  .hm-why-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width:576px) {
  .hm-why-grid { grid-template-columns: 1fr !important; }
}

/* ── TESTIMONIALS: 3-column on desktop ── */
.hm-tstm-grid {
  display: grid !important;
  grid-template-columns: repeat(3,1fr) !important;
  gap: 24px !important;
  margin-top: 36px !important;
}
@media (max-width:1100px) {
  .hm-tstm-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width:680px) {
  .hm-tstm-grid { grid-template-columns: 1fr !important; }
}

/* ── PACKAGE GRID: Consistent 3-col desktop ── */
.hm-pkg-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr)) !important;
  gap: 24px !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 clamp(16px,4vw,60px) !important;
}

/* ── PACKAGE CARD: Ensure CTA footer always visible ── */
.hm-pk-footer {
  display: flex !important;
  gap: 8px !important;
  padding-top: 12px !important;
  border-top: 1px solid #EDE8DC !important;
  margin-top: auto !important;
}
.hm-pk-btn-book {
  flex: 1 !important;
  min-height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ── SECTION HEADERS: Always visible ── */
.hm-eyebrow {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #C9A84C !important;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 8px !important;
  display: block !important;
}
.hm-h2 {
  font-family: "Cinzel", Georgia, serif !important;
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  font-weight: 700 !important;
  color: #0A2015 !important;
  line-height: 1.15 !important;
  margin: 0 0 6px !important;
  display: block !important;
}
.hm-h2-lt { color: #ffffff !important; }

/* ── TRUST BAR NUMBERS: Clearly gold ── */
.hm-trust-num {
  font-family: "Cinzel", Georgia, serif !important;
  font-size: clamp(1rem,1.5vw,1.4rem) !important;
  font-weight: 700 !important;
  color: #C9A84C !important;
  line-height: 1 !important;
}
.hm-trust-lbl {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,.5) !important;
  letter-spacing: .5px !important;
  text-transform: uppercase !important;
}
.hm-trust-icon {
  font-size: 1.1rem !important;
  margin-bottom: 3px !important;
  display: block !important;
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif !important;
}

/* ── HERO INQUIRY CARD: Not too large ── */
.hm-hero-card {
  padding: 24px !important;
  max-width: 340px !important;
}
@media (max-width:900px) {
  .hm-hero-r { display: none !important; }
}

/* ── REMOVE EXCESS GAPS BETWEEN SECTIONS ── */
.hm-svcs  { padding: clamp(40px,5vw,72px) 0 !important; }
.hm-pkgs  { padding: clamp(40px,5vw,72px) 0 !important; }
.hm-tstm  { padding: clamp(40px,5vw,72px) 0 !important; }
.hm-cta-band { padding: clamp(36px,4.5vw,64px) 0 !important; }

/* ── STICKY BAR SAFE AREA ── */
#ft-sticky-bar {
  padding-bottom: env(safe-area-inset-bottom,0px) !important;
}
@media (max-width:768px) {
  body.has-sticky-bar main { margin-bottom: 0 !important; }
  body.has-sticky-bar footer { padding-bottom: calc(56px + env(safe-area-inset-bottom,0px)) !important; }
}
/* CTA Band — reduce excess spacing */
.hm-cta-band {
  padding: clamp(32px, 4vw, 56px) 0 !important;
  margin-top: 0 !important;
}

/* ── Service/Why SVG Icons ── */
.hm-svc-icon-wrap svg,
.hm-why-icon svg {
  width: 28px !important;
  height: 28px !important;
  display: block !important;
  flex-shrink: 0;
}
.hm-svc-icon-wrap {
  background: rgba(201,168,76,.1) !important;
  border: 1.5px solid rgba(201,168,76,.25) !important;
}
.hm-svc-card:hover .hm-svc-icon-wrap {
  background: rgba(201,168,76,.18) !important;
  border-color: rgba(201,168,76,.4) !important;
}
/* Why icons — inline SVG */
.hm-why-icon {
  width: 40px !important;
  height: 40px !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hm-why-icon svg {
  width: 28px !important;
  height: 28px !important;
}

/* ══ DEFINITIVE SERVICE ICON FIX ══ */
.hm-svc-icon-wrap,
a.hm-svc-card .hm-svc-icon-wrap {
  background: rgba(201,168,76,.1) !important;
  border: 1.5px solid rgba(201,168,76,.25) !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-bottom: 18px !important;
  overflow: visible !important;
}
.hm-svc-icon-wrap svg {
  width: 26px !important;
  height: 26px !important;
  display: block !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
}
/* Also fix why cards */
.hm-why-icon {
  display: block !important;
  margin-bottom: 16px !important;
}
.hm-why-icon svg {
  width: 28px !important;
  height: 28px !important;
  display: block !important;
}

/* ═══ DEFINITIVE SVG ICON FIX ═══ */
.hm-svc-icon-wrap {
  width: 52px !important; height: 52px !important;
  min-width: 52px !important; min-height: 52px !important;
  border-radius: 12px !important;
  background: rgba(201,168,76,.12) !important;
  border: 1.5px solid rgba(201,168,76,.28) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  margin-bottom: 16px !important; overflow: visible !important; flex-shrink: 0 !important;
}
.hm-svc-icon-wrap svg {
  width: 26px !important; height: 26px !important;
  display: block !important; flex-shrink: 0 !important;
  overflow: visible !important;
}
.hm-why-icon {
  width: 44px !important; height: 44px !important;
  background: rgba(201,168,76,.1) !important;
  border-radius: 10px !important; margin-bottom: 16px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  flex-shrink: 0 !important;
}
.hm-why-icon svg {
  width: 26px !important; height: 26px !important;
  display: block !important; overflow: visible !important;
}

/* ═══════════════════════════════════════════════════
   SERVICE & WHY-US ICON BOXES — DEFINITIVE RULES
   Dark box with gold SVG icons — always visible
   ═══════════════════════════════════════════════════ */

/* Service card icon box */
.hm-svc-icon-wrap {
  background: #0A2015 !important;
  border: 2px solid rgba(201,168,76,.4) !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
}
.hm-svc-icon-wrap svg {
  width: 26px !important;
  height: 26px !important;
  display: block !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
  /* Gold icon on the dark box below = high contrast */
  stroke: #C9A84C !important;
  fill: none !important;
}
/* Cards where SVG uses fill instead of stroke */
.hm-svc-icon-wrap svg[fill="#C9A84C"],
.hm-svc-icon-wrap svg path[fill="#C9A84C"] {
  fill: #C9A84C !important;
}
/* Dark box so the gold icon is clearly visible (cream box hid it) */
.hm-svc-icon-wrap {
  background: #0A2015 !important;
  border: 1.5px solid rgba(201,168,76,.45) !important;
}
/* Hover: lighten box */
.hm-svc-card:hover .hm-svc-icon-wrap {
  background: #142e1e !important;
  border-color: rgba(201,168,76,.7) !important;
}

/* Why-Us card icon box */
.hm-why-icon {
  background: #0A2015 !important;
  border: 2px solid rgba(201,168,76,.45) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
  flex-shrink: 0 !important;
}
.hm-why-icon svg {
  width: 26px !important;
  height: 26px !important;
  display: block !important;
  overflow: visible !important;
  stroke: #C9A84C !important;
}
.hm-why-icon svg[fill="#C9A84C"],
.hm-why-icon svg polygon[fill="#C9A84C"] {
  fill: #C9A84C !important;
  stroke: none !important;
}

/* ══ MOBILE PACKAGE CARD FIXES ══════════════════════════════════════ */
@media (max-width: 600px) {
  /* Stack action buttons vertically so "Book Now" never overflows */
  .hm-pk-footer {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  .hm-pk-btn-details,
  .hm-pk-btn-book {
    width: 100% !important;
    flex: none !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    padding: 12px 14px !important;
  }
  /* Price row + /person must not clip */
  .hm-pk-price-row {
    flex-wrap: wrap !important;
    align-items: baseline !important;
    row-gap: 2px !important;
  }
  .hm-pk-price {
    font-size: 1.35rem !important;
    word-break: break-word !important;
  }
  .hm-pk-price-from {
    white-space: nowrap !important;
    font-size: 11px !important;
  }
  /* Give the image room so badges sit on it, not below */
  .hm-pk-img-wrap {
    aspect-ratio: 16 / 11 !important;
    min-height: 150px !important;
  }
  /* Badges: keep tidy, allow wrap, slightly smaller */
  .hm-pk-badges {
    gap: 5px !important;
    max-width: calc(100% - 24px);
  }
  .hm-pk-badge {
    font-size: 9px !important;
    padding: 3px 7px !important;
  }
  .hm-pk-body {
    padding: 16px !important;
  }
}


/* ════════════════════════════════════════════════════════════
   MOBILE HARDENING PASS — overflow, grid collapse, touch targets
   ════════════════════════════════════════════════════════════ */

/* Global horizontal-overflow guard (belt-and-braces) */
html, body { max-width: 100%; overflow-x: hidden; }

/* Responsive grid utilities — collapse on mobile regardless of inline styles.
   Use .ft-grid-collapse on any inline-styled multi-column grid. */
@media (max-width: 768px) {
  .ft-grid-collapse { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .ft-grid-collapse { grid-template-columns: 1fr !important; gap: 1rem !important; }
}

/* Any inline 4-col "why/features" grid collapses on mobile */
@media (max-width: 900px) {
  .hm-why-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .hm-why-grid { grid-template-columns: 1fr !important; }
}

/* Touch targets — ensure tappable controls meet 44px minimum on mobile */
@media (max-width: 768px) {
  button, .ft-book, .ft-login, .hm-pk-btn-book, .hm-pk-btn-details,
  .pd-modal-submit, .pk-cta, .pd-book-btn, a.ft-btn, .ft-btn {
    min-height: 44px;
  }
  /* prevent iOS auto-zoom: inputs must be >=16px */
  input, select, textarea { font-size: 16px !important; }
}

/* Tables never break the viewport — wrap horizontally */
@media (max-width: 768px) {
  .pd-price-tbl-wrap, .ma-table-wrap, .b2b-table-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
  }
}

/* ════════════════════════════════════════════════════════════
   PREMIUM IMAGE LAYER — consistent ratios, graceful fallbacks
   ════════════════════════════════════════════════════════════ */

/* All content images cover their box and never distort.
   !important + height:100% overrides WP's inline width/height attributes
   (wp_get_attachment_image adds them, which otherwise letterboxes the image). */
.pk-card-img img, .ht-card-img img, .hm-pk-img,
.pd-main-img, .pd-rel-img, .pd-thumb img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: center !important;
  display: block; max-width: none;
}
/* Ensure the wrapper has a definite height for height:100% to resolve against */
.hm-pk-img-wrap { display: block; }

/* Branded gradient sits BEHIND every image box, so empty/slow/failed
   images show an intentional deep-forest panel — never a broken icon */
.pk-card-img, .ht-card-img, .hm-pk-img-wrap, .pd-main-img-wrap {
  background: linear-gradient(160deg, #1A3A28 0%, #0A2015 100%);
}

/* When a photo fails to load, fade in the brand mark instead of broken-img */
img.ft-photo { transition: opacity .3s; }
img.ft-photo[data-failed="true"] { opacity: 0; }

/* Readability overlay for any image that carries text/CTA on top */
.ft-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,32,21,.85) 0%, rgba(10,32,21,.35) 45%, rgba(10,32,21,.05) 100%);
  pointer-events: none;
}

/* Subtle zoom-on-hover for premium feel (respects reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .pk-card:hover .pk-card-img img,
  .ht-card:hover .ht-card-img img { transform: scale(1.05); }
  .pk-card-img img, .ht-card-img img { transition: transform .5s ease; }
}

/* ════════════════════════════════════════════════════════════
   FINAL PREMIUM POLISH PASS — shadows, skeletons, micro-interactions
   ════════════════════════════════════════════════════════════ */

/* Reusable skeleton loader (shared shimmer) — use on any page */
.ft-skel{background:linear-gradient(90deg,#F0EDE6 25%,#EDE8DC 50%,#F0EDE6 75%);
  background-size:1000px 100%;animation:shimmer 1.5s infinite;border-radius:8px;}
.ft-skel-card{background:#fff;border:1px solid #E8E0D0;border-radius:16px;overflow:hidden;}
.ft-skel-img{aspect-ratio:4/3;}
.ft-skel-body{padding:16px;display:flex;flex-direction:column;gap:12px;}
.ft-skel-line{height:15px;border-radius:4px;}
.ft-skel-line.short{width:55%;}
.ft-skel-price{height:26px;width:45%;border-radius:4px;margin-top:4px;}

/* Unified premium card elevation + hover (tasteful, fast) */
@media (prefers-reduced-motion: no-preference){
  .pk-card, .ht-card, .hm-pk-card, .hm-svc-card, .pd-rel-card{
    transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, border-color .22s ease;
  }
  .pk-card:hover, .hm-pk-card:hover, .pd-rel-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(10,32,21,.13);
  }
  .ht-card:hover{ box-shadow: 0 12px 32px rgba(10,32,21,.12); }
  .hm-svc-card:hover{ transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,32,21,.10); }
}

/* Stronger, calmer resting shadow on cards (consistent depth) */
.pk-card, .ht-card{ box-shadow: 0 2px 10px rgba(10,32,21,.05); }

/* Primary CTA — confident but not aggressive; gentle lift + glow on hover */
.pk-cta, .hm-pk-btn-book, .pd-book-btn, .pd-modal-submit{
  transition: background .15s ease, transform .12s ease, box-shadow .2s ease;
}
.pk-cta:hover, .hm-pk-btn-book:hover, .pd-book-btn:hover, .pd-modal-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.32);
}
.pk-cta:active, .hm-pk-btn-book:active, .pd-book-btn:active, .pd-modal-submit:active{
  transform: translateY(0);
}

/* Focus-visible rings for keyboard users (accessibility + polish) */
.pk-cta:focus-visible, .hm-pk-btn-book:focus-visible,
.pd-book-btn:focus-visible, .ft-book:focus-visible, .pd-modal-submit:focus-visible{
  outline: none; box-shadow: 0 0 0 3px rgba(201,168,76,.4);
}

/* Trust statistics — premium presentation */
.hm-trust-item{ transition: transform .2s ease; }
@media (prefers-reduced-motion: no-preference){
  .hm-trust-item:hover{ transform: translateY(-2px); }
}

/* ════════════════════════════════════════════════════════════
   FT-BUILD css-icons-v2 — FINAL service/why icon rules.
   Appended last so they win the cascade. Dark box + gold icon.
   ════════════════════════════════════════════════════════════ */
.hm-svc-icon-wrap{
  background-color:#0A2015 !important;
  border:1.5px solid rgba(201,168,76,.45) !important;
  width:52px !important; height:52px !important;
  border-radius:12px !important;
  display:flex !important; align-items:center !important; justify-content:center !important;
  flex-shrink:0 !important; margin-bottom:16px !important; overflow:visible !important;
}
/* Higher-specificity override: an earlier `a.hm-svc-card .hm-svc-icon-wrap`
   rule was repainting the box cream by default. Match its specificity. */
a.hm-svc-card .hm-svc-icon-wrap,
.hm-svc-card a .hm-svc-icon-wrap,
.hm-svcs a.hm-svc-card .hm-svc-icon-wrap,
.hm-svc-grid a .hm-svc-icon-wrap{
  background-color:#0A2015 !important;
  border:1.5px solid rgba(201,168,76,.45) !important;
}
.hm-svc-icon-wrap svg{
  width:26px !important; height:26px !important; display:block !important;
  stroke:#C9A84C !important;
}
/* Paint the actual child shapes — setting stroke only on <svg> doesn't reliably
   cascade to the drawn paths/rects/circles. Force them all gold. */
.hm-svc-icon-wrap svg *{ stroke:#C9A84C !important; }
.hm-svc-icon-wrap svg [fill]:not([fill="none"]){ fill:#C9A84C !important; }
.hm-svc-icon-wrap svg [fill="none"]{ fill:none !important; }
.hm-svc-icon-wrap svg [fill="#C9A84C"],
.hm-svc-icon-wrap svg[fill="#C9A84C"]{ fill:#C9A84C !important; }
.hm-svc-icon-wrap svg [stroke="#C9A84C"]{ stroke:#C9A84C !important; }
.hm-svc-card:hover .hm-svc-icon-wrap{ background-color:#142e1e !important; }

.hm-why-icon{
  background-color:#0A2015 !important;
  border:1.5px solid rgba(201,168,76,.45) !important;
  width:48px !important; height:48px !important; border-radius:12px !important;
  display:flex !important; align-items:center !important; justify-content:center !important;
  flex-shrink:0 !important; margin-bottom:16px !important;
}
.hm-why-icon svg{ width:26px !important; height:26px !important; display:block !important; stroke:#C9A84C !important; }
.hm-why-icon svg[fill="#C9A84C"], .hm-why-icon svg polygon[fill="#C9A84C"]{ fill:#C9A84C !important; stroke:none !important; }

/* ════════════════════════════════════════════════════════════
   FT-BUILD css-icons-v3 — CSS background-image icons.
   Inline SVG was being stripped by cache minification, leaving
   empty <svg> tags. Delivering icons via CSS background avoids that.
   ════════════════════════════════════════════════════════════ */
.hm-svc-icon-wrap > svg{display:none !important;}
.hm-svc-icon-wrap{background-repeat:no-repeat !important;background-position:center !important;background-size:26px 26px !important;}
.hm-svc-icon-wrap.svc-umrah{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNDOUE4NEMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik0zIDIxVjlsOS02IDkgNnYxMiIvPjxwYXRoIGQ9Ik05IDIxdi02aDZ2NiIvPjwvc3ZnPg==") !important;}
.hm-svc-icon-wrap.svc-hajj{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNDOUE4NEMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxyZWN0IHg9IjciIHk9IjciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgcng9IjEiLz48cGF0aCBkPSJNNSAxN2gxNE05IDdWNWg2djIiLz48L3N2Zz4=") !important;}
.hm-svc-icon-wrap.svc-flights{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNDOUE4NEMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik0yMSAxNnYtMmwtOC01VjMuNWExLjUgMS41IDAgMCAwLTMgMFY5bC04IDV2Mmw4LTIuNVYxOWwtMiAxLjVWMjJsMy41LTEgMy41IDF2LTEuNUwxMyAxOXYtNS41eiIvPjwvc3ZnPg==") !important;}
.hm-svc-icon-wrap.svc-hotels{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNDOUE4NEMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik0zIDIxVjVhMSAxIDAgMCAxIDEtMWgxMGExIDEgMCAwIDEgMSAxdjE2Ii8+PHBhdGggZD0iTTE1IDloNWExIDEgMCAwIDEgMSAxdjExIi8+PHBhdGggZD0iTTMgMjFoMThNNyA4aDJNNyAxMmgyTTcgMTZoMiIvPjwvc3ZnPg==") !important;}
.hm-svc-icon-wrap.svc-visa{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNDOUE4NEMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxyZWN0IHg9IjQiIHk9IjMiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxOCIgcng9IjIiLz48cGF0aCBkPSJNOCA3aDhNOCAxMWg4TTggMTVoNSIvPjwvc3ZnPg==") !important;}
.hm-svc-icon-wrap.svc-transfers{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNDOUE4NEMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik01IDE3aDE0TTUgMTdWOWwyLTRoMTBsMiA0djgiLz48Y2lyY2xlIGN4PSI3LjUiIGN5PSIxNy41IiByPSIxLjUiLz48Y2lyY2xlIGN4PSIxNi41IiBjeT0iMTcuNSIgcj0iMS41Ii8+PHBhdGggZD0iTTUgMTFoMTQiLz48L3N2Zz4=") !important;}
.hm-svc-icon-wrap.svc-b2b{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNDOUE4NEMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSIzIi8+PGNpcmNsZSBjeD0iMTciIGN5PSI5IiByPSIyLjUiLz48cGF0aCBkPSJNMiAyMHYtMWE1IDUgMCAwIDEgMTAgMHYxTTE0IDIwdi0xYTQgNCAwIDAgMSA3LTIuNiIvPjwvc3ZnPg==") !important;}
.hm-svc-icon-wrap.svc-group{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNDOUE4NEMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxjaXJjbGUgY3g9IjkiIGN5PSI3IiByPSIzIi8+PGNpcmNsZSBjeD0iMTciIGN5PSI4IiByPSIyIi8+PHBhdGggZD0iTTMgMjB2LTFhNiA2IDAgMCAxIDEyIDB2MU0xNSAyMHYtMWE0IDQgMCAwIDEgNi0zLjQiLz48L3N2Zz4=") !important;}
