/* Travzo Holidays – Main Stylesheet */

:root {
  --navy: #1A2A5E;
  --gold: #C9A227;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --text-dark: #1A1A1A;
  --text-muted: #6B7280;
}

/* ================================================================
   RESET / BASE
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* ================================================================
   HEADER
   ================================================================ */

/* ── Sticky wrapper ───────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

/* ── Utility Bar ──────────────────────────────────────────────── */
.utility-bar {
  background-color: var(--navy);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.utility-bar__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-bar__tagline {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-bar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.utility-bar__link:hover {
  opacity: 1;
}

.utility-bar__social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.utility-bar__social-link {
  display: flex;
  align-items: center;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s ease;
  line-height: 0;
}

.utility-bar__social-link:hover {
  opacity: 1;
}

/* ── Main Nav ─────────────────────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  position: relative;          /* anchor for .mega-panel */
  transition: box-shadow 0.3s ease;
}

.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-nav__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.main-nav__logo {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.main-nav__logo img,
.main-nav__logo .custom-logo {
  max-height: 48px;
  width: auto;
}

/* Primary nav */
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: static;             /* keep mega panel relative to .main-nav */
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  flex: 1;
  justify-content: center;
  overflow: visible;
  position: static;
}

.nav-item {
  position: static;
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  padding: 8px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-item.current-menu-item > .nav-link {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Chevron on dropdown items */
.nav-link .chevron {
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.25s ease;
}

.nav-item.has-mega:hover .nav-link .chevron {
  transform: rotate(180deg);
}

/* CTA pill button */
.main-nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 8px;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
}

.main-nav__cta:hover {
  background: #b8911f;
  transform: translateY(-1px);
}

/* ── Hamburger ────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: auto;
}

.hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger.open .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mega Menu Panels ─────────────────────────────────────────── */
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 999;
  /* Animate with visibility + opacity so transition works */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s 0.25s;     /* delay visibility change until fade completes */
  pointer-events: none;
}

/* Show on CSS hover (primary) + JS .is-open class (accessibility fallback) */
.nav-item.has-mega:hover .mega-panel,
.mega-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s 0s;
  pointer-events: auto;
}

.mega-panel__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 40px;
  display: grid;
  gap: 40px;
}

.mega-panel--1col .mega-panel__inner {
  grid-template-columns: 1fr;
  max-width: 400px;
}

.mega-panel--2col .mega-panel__inner {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}

.mega-panel--3col .mega-panel__inner {
  grid-template-columns: repeat(3, 1fr);
}

.mega-panel--4col .mega-panel__inner {
  grid-template-columns: repeat(4, 1fr);
}

.mega-col__heading {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F3F4F6;
}

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

.mega-col ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.15s ease;
}

.mega-col ul a::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.mega-col ul a:hover {
  color: var(--gold);
  gap: 10px;
}

.mega-col ul a:hover::before {
  opacity: 1;
}

/* ── Mobile Drawer ────────────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  backdrop-filter: blur(2px);
}

.mobile-overlay.open {
  display: block;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Drawer header */
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #E5E7EB;
  flex-shrink: 0;
}

.mobile-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--navy);
  border-radius: 4px;
  transition: background 0.15s ease;
}

.mobile-drawer__close:hover {
  background: var(--off-white);
}

/* Drawer nav */
.mobile-drawer__nav {
  flex: 1;
  padding: 8px 0;
}

.mobile-nav {
  list-style: none;
}

.mobile-nav > li > a {
  display: block;
  padding: 14px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid #F3F4F6;
  transition: color 0.2s ease, background 0.15s ease;
}

.mobile-nav > li > a:hover {
  color: var(--gold);
  background: var(--off-white);
}

/* Mobile accordion */
.mobile-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 1px solid #F3F4F6;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-align: left;
  transition: color 0.2s ease, background 0.15s ease;
}

.mobile-accordion__trigger:hover {
  color: var(--gold);
  background: var(--off-white);
}

.mobile-accordion__trigger .chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.mobile-accordion.open .mobile-accordion__trigger {
  color: var(--gold);
}

.mobile-accordion.open .mobile-accordion__trigger .chevron {
  transform: rotate(180deg);
}

.mobile-accordion__panel {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  background: #F9FAFB;
  transition: max-height 0.3s ease;
}

.mobile-accordion.open .mobile-accordion__panel {
  max-height: 600px;
}

.mobile-accordion__panel li a {
  display: block;
  padding: 10px 24px 10px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid #F3F4F6;
  transition: color 0.2s ease;
}

.mobile-accordion__panel li a:hover {
  color: var(--gold);
}

/* Drawer footer */
.mobile-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid #E5E7EB;
  flex-shrink: 0;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.mobile-cta-btn:hover {
  background: #b8911f;
  transform: translateY(-1px);
}

/* ── Responsive ───────────────────────────────────────────────── */
/* RESPONSIVE NAV FIX */
@media (max-width: 1280px) {
  .nav-link {
    font-size: 11px;
    padding: 8px 6px;
    letter-spacing: 0.5px;
  }
  .main-nav__cta {
    font-size: 12px;
    padding: 10px 14px;
  }
}

@media (max-width: 1100px) {
  .nav-link {
    font-size: 10px;
    padding: 8px 4px;
  }
  .main-nav__cta {
    font-size: 11px;
    padding: 8px 12px;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .primary-nav {
    display: none;
  }
  .main-nav__cta {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .main-nav__inner {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .utility-bar__tagline {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .utility-bar__link:first-child {
    display: none;  /* hide email on very small screens, keep phone */
  }
}

/* ================================================================
   FOOTER
   ================================================================ */

/* ── Footer Main ──────────────────────────────────────────────── */
.footer-main {
  background-color: var(--navy);
  padding: 80px 0;
}

.footer-main__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
}

/* Column sizing */
.footer-col--about    { flex: 1.2; }
.footer-col--links    { flex: 0.9; }
.footer-col--packages { flex: 0.9; }
.footer-col--contact  { flex: 1.2; }

/* ── Column heading ───────────────────────────────────────────── */
.footer-col__heading {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── Logo column ──────────────────────────────────────────────── */
.footer-logo {
  margin-bottom: 16px;
}

.footer-logo__link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.footer-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* Force white on any custom logo SVG / img in the footer */
.footer-logo .custom-logo,
.footer-logo img {
  max-height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  max-width: 260px;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.footer-social__btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ── Footer link lists (cols 2 & 3) ──────────────────────────── */
.footer-link-list {
  list-style: none;
}

.footer-link-list li {
  line-height: 28px;
}

.footer-link-list a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--gold);
}

/* wp_nav_menu wraps output in a <ul> - target it via the class */
.footer-col--links .footer-link-list,
.footer-col--links > ul {
  list-style: none;
}

.footer-col--links > ul li {
  line-height: 28px;
}

.footer-col--links > ul a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col--links > ul a:hover {
  color: var(--gold);
}

/* ── Contact column ───────────────────────────────────────────── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item__icon {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item__icon--gold {
  color: var(--gold);
}

.footer-contact-item__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
}

.footer-contact-item--muted .footer-contact-item__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.footer-contact-item__link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item__link:hover {
  color: var(--gold);
}

.footer-contact-item__link--gold {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

.footer-contact-item__link--gold:hover {
  color: #e0b530;
}

/* WhatsApp button */
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-bottom: 18px;
  white-space: nowrap;
}

.footer-whatsapp-btn:hover {
  background: #b8911f;
  transform: translateY(-1px);
}

/* ── Gold divider ─────────────────────────────────────────────── */
.footer-divider {
  background-color: var(--navy);
  border: none;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  margin: 0;
}

/* ── Footer bottom bar ────────────────────────────────────────── */
.footer-bottom {
  background-color: #0F1A3E;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.footer-bottom__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom__copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
}

.footer-bottom__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom__nav a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.footer-bottom__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  user-select: none;
}

/* ── Footer responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main__inner {
    flex-wrap: wrap;
    gap: 40px 24px;
  }

  .footer-col--about    { flex: 1 1 100%; }
  .footer-col--links    { flex: 1 1 calc(33% - 16px); }
  .footer-col--packages { flex: 1 1 calc(33% - 16px); }
  .footer-col--contact  { flex: 1 1 calc(33% - 16px); }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 56px 0;
  }

  .footer-main__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }

  .footer-col--about,
  .footer-col--links,
  .footer-col--packages,
  .footer-col--contact {
    flex: 1 1 100%;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    gap: 10px;
  }

  .footer-bottom__nav {
    justify-content: center;
  }

  .footer-bottom__copy {
    white-space: normal;
  }
}

/* ================================================================
   HOMEPAGE – GLOBAL SECTION UTILITIES
   ================================================================ */

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Gold label above headings */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label--white {
  color: rgba(255, 255, 255, 0.7);
}

/* Section headings */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
  line-height: 1.15;
  text-align: center;
}

.section-heading--left  { text-align: left; }
.section-heading--white { color: var(--white); }

/* Center CTA wrapper */
.section-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ── Shared buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover { background: #b8911f; border-color: #b8911f; }

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost-white:hover { background: var(--white); color: var(--navy); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover { background: #253a80; border-color: #253a80; }

.btn--navy-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--navy-ghost:hover { background: var(--navy); color: var(--white); }

.btn--full { width: 100%; border-radius: 8px; }

/* ================================================================
   SECTION 1 – HERO
   ================================================================ */

.hero-wrapper {
  padding: 16px 32px;
  background: var(--white);
}

.hero-section {
  position: relative;
  height: 78vh;
  min-height: 600px;
  max-height: 760px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-slider-wrapper,
.hero-slides-container {
  overflow: visible;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 42, 94, 0.20) 0%,
    rgba(26, 42, 94, 0.60) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  width: 100%;
}

/* Gold pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.6);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}

.hero-section--slideshow .hero-overlay { z-index: 1; }
.hero-section--slideshow .hero-content { z-index: 2; pointer-events: none; }
.hero-section--slideshow .hero-content a,
.hero-section--slideshow .hero-content button { pointer-events: auto; }

.hero-arrow,
.hero-prev, .hero-next,
.slider-arrow,
.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.9);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease;
}
.hero-arrow:hover { background: var(--gold); }
.hero-prev, .slick-prev { left: 16px; }
.hero-next, .slick-next { right: 16px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease, width 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 32px;
}

/* Hero Search Bar */
.hero-search-bar {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.hero-search-bar form {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-search-input-wrap {
  position: relative;
  flex: 2;
  min-width: 0;
}
.hero-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.hero-search-input-wrap input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--text-dark);
}
.hero-search-input-wrap input:focus { border-color: var(--gold); }
.hero-search-bar select {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  cursor: pointer;
  outline: none;
  color: var(--text-dark);
}
.hero-search-bar select:focus { border-color: var(--gold); }
.hero-search-btn {
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.hero-search-btn:hover { background: #b08f1f; }

/* Extra top padding on next section when search bar overlaps */
.hero-wrapper:has(.hero-search-bar-active) + section { padding-top: 100px; }

@media (max-width: 1024px) {
  .hero-wrapper { padding: 12px 20px; }
  .hero-search-bar form {
    flex-wrap: wrap;
  }
  .hero-search-input-wrap { flex: 1 1 100%; }
  .hero-search-bar select { flex: 1 1 calc(50% - 6px); }
  .hero-search-btn { flex: 1 1 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .hero-wrapper { padding: 8px 12px; }
  .hero-section {
    border-radius: 16px;
    height: 65vh;
    min-height: 480px;
  }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-prev  { left: 12px; }
  .hero-next  { right: 12px; }
  .hero-dots  { bottom: 16px; }
  .hero-search-bar {
    bottom: -60px;
    padding: 14px 16px;
    width: 94%;
  }
  .hero-search-bar select { flex: 1 1 100%; }
  .hero-wrapper:has(.hero-search-bar-active) + section { padding-top: 120px; }
}

/* ================================================================
   SECTION 2 – OUR PACKAGES
   ================================================================ */

.packages-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

/* CSS grid: row-1 = 2 cols at 60/40; row-2 = 4 equal cols */
.package-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.package-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.package-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}

.package-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 1;
}

.package-tile__name {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.package-tile__count {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ================================================================
   SECTION 3 – STATS BAR
   ================================================================ */

.stats-section {
  background-color: var(--navy);
  padding: 80px 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
}

.stat-block {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.stat-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(201, 162, 39, 0.3);
  flex-shrink: 0;
}

/* ================================================================
   SECTION 4 – ABOUT SNIPPET
   ================================================================ */

.about-snippet {
  background: var(--off-white);
  padding: 80px 0;
}

.about-snippet__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.about-snippet__image-wrap {
  flex: 0 0 55%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #CBD5E1;
}

.about-snippet__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-snippet__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A2A5E 0%, #2D4080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.about-snippet__content {
  flex: 1;
}

.about-snippet__content .section-heading {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-snippet__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-feature__icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* ================================================================
   SECTION 5 – TRENDING TOURS
   ================================================================ */

.trending-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.package-cards-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.package-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background: var(--white);
}

.package-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  transform: translateY(-4px);
}

.package-card__image-wrap {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.package-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.package-card:hover .package-card__image {
  transform: scale(1.05);
}

.package-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A2A5E 0%, #2D4080 100%);
}

.package-card__type-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
}

.package-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}

.package-card__stars {
  display: flex;
  gap: 2px;
}

.package-card__title {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.package-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.package-card__destination {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.package-card__duration {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.package-card__price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.package-card__price-from {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

.package-card__price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

/* ================================================================
   SECTION 6 – WHY CHOOSE US
   ================================================================ */

.why-us-section {
  background: var(--off-white);
  padding: 80px 0;
  text-align: center;
}

.why-us-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.why-us-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-us-block:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.why-us-block__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.why-us-block__title {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-us-block__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Accreditation strip */
.accreditation-strip {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.accreditation-badge {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 8px 20px;
  cursor: default;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.accreditation-badge:hover {
  color: var(--navy);
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

/* ================================================================
   SECTION 7 – TESTIMONIALS
   ================================================================ */

.testimonials-section {
  background-color: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Legacy class kept for backward compat */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
}

.testimonial-card__quote {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  flex: 1;
}

.testimonial-card__divider {
  border: none;
  border-top: 1px solid #E5E7EB;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__avatar-initial {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-card__name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__trip {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ================================================================
   SECTION 8 – ENQUIRY FORM
   ================================================================ */

.enquiry-section {
  background: var(--white);
  padding: 80px 0;
}

.enquiry-section__inner {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

/* Left info card */
.enquiry-info {
  flex: 1;
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.enquiry-info .section-label { color: var(--gold); }

.enquiry-info .section-heading {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--white);
}

.enquiry-info__subtext {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.enquiry-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.enquiry-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.enquiry-contact-row__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.enquiry-contact-row__text:hover { color: var(--gold); }

/* Right form card */
.enquiry-form-card {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.enquiry-form-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

/* Form layout */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row--2col > .form-field { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field label span { color: var(--gold); margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

/* Success / error feedback */
.enquiry-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
}

.enquiry-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
}

.enquiry-success p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

.enquiry-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin-bottom: 16px;
}

/* ================================================================
   SECTION 9 – LATEST BLOG
   ================================================================ */

.blog-section {
  background: var(--off-white);
  padding: 80px 0;
  text-align: center;
}

.blog-cards-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.blog-card {
  flex: 1;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.blog-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image { transform: scale(1.05); }

.blog-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E5E7EB 0%, #CBD5E1 100%);
}

.blog-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
}

.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  text-align: left;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-card__title {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.blog-card__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__readmore {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.15s ease;
  margin-top: auto;
  display: inline-block;
}

.blog-card__readmore:hover { color: #b8911f; }

/* ================================================================
   SECTION 10 – NEWSLETTER
   ================================================================ */

.newsletter-section {
  background: var(--gold);
  padding: 60px 0;
  text-align: center;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(26, 42, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.newsletter-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.newsletter-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(26, 42, 94, 0.75);
  margin-bottom: 8px;
}

.newsletter-form { width: 100%; max-width: 480px; }

.newsletter-form__pill {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.newsletter-form__pill input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
}

.newsletter-form__pill button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.newsletter-form__pill button:hover { background: #253a80; }

/* ================================================================
   HOMEPAGE – RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .hero-heading    { font-size: 44px; }
  .section-heading { font-size: 38px; }

  /* Package tiles: 2 columns on tablet */
  .package-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  /* Package cards: 2 columns */
  .package-cards-row,
  .blog-cards-row {
    flex-wrap: wrap;
  }
  .package-card,
  .blog-card { flex: 1 1 calc(50% - 12px); }

  /* About: tighten gap */
  .about-snippet__inner { gap: 40px; }
  .about-snippet__image-wrap { flex: 0 0 48%; }

  /* Why us: 2 cols on tablet */
  .why-us-blocks { grid-template-columns: repeat(2, 1fr); }
  .why-us-block { padding: 28px 20px; }

  /* Testimonials: 2 columns on tablet */
  .testimonials-grid,
  .testimonials-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-heading  { font-size: 32px; }
  .hero-subtext  { font-size: 14px; }
  .hero-section  { min-height: 440px; }

  /* Sections */
  .section-inner  { padding: 0 20px; }
  .section-heading { font-size: 32px; margin-bottom: 32px; }

  /* Package tiles: 1 column on mobile */
  .package-tiles-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  /* Stats: 2×2 */
  .stats-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-block   { flex: 1 1 45%; }
  .stat-divider { display: none; }
  .stat-number  { font-size: 40px; }

  /* About: stack */
  .about-snippet__inner {
    flex-direction: column;
    gap: 32px;
  }
  .about-snippet__image-wrap { flex: none; width: 100%; }

  /* Package cards & blog: 1 col */
  .package-card,
  .blog-card { flex: 1 1 100%; }
  .package-cards-row,
  .blog-cards-row { flex-direction: column; }

  /* Why us: stack */
  .why-us-blocks { grid-template-columns: 1fr; }

  /* Testimonials: 1 column on mobile */
  .testimonials-grid,
  .testimonials-row { grid-template-columns: 1fr; }

  /* Enquiry: stack */
  .enquiry-section__inner { flex-direction: column; }
  .enquiry-info,
  .enquiry-form-card { flex: none; width: 100%; }

  /* Form rows: 1 col on mobile */
  .form-row--2col { flex-direction: column; }
}

/* ================================================================
   PACKAGE LIST (archive-package.php)
   ================================================================ */

/* ── Page Hero ────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A2A5E 0%, #2A3F7E 100%);
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 42, 94, 0.15) 0%,
    rgba(26, 42, 94, 0.55) 100%
  );
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 760px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb svg   { opacity: 0.5; flex-shrink: 0; }

.page-hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero__subtext {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

.page-hero__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ── Filter Bar ───────────────────────────────────────────────── */
.filter-bar {
  position: sticky;
  top: 108px;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #F3F4F6;
}

.filter-bar__form {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Row layout */
.filter-bar__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ROW 1: Search */
.filter-bar__row--search {
  justify-content: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.filter-search-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
}

.filter-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.filter-search-input {
  width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px 10px 40px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
  background: var(--white);
}

/* ROW 2: Filter dropdowns — CSS grid */
.filter-bar__row--filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ROW 3: Active filter chips */
.filter-bar__row--chips {
  padding-top: 4px;
  gap: 8px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.filter-chip:hover {
  background: rgba(201, 162, 39, 0.22);
  border-color: var(--gold);
}

.filter-chip--clear-all {
  background: rgba(26, 42, 94, 0.08);
  border-color: rgba(26, 42, 94, 0.2);
  color: var(--navy);
}

.filter-chip--clear-all:hover {
  background: rgba(26, 42, 94, 0.15);
}

/* Result bar — sort on same row */
.packages-result-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-select-wrap {
  position: relative;
  min-width: 0;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid #D1D5DB;
  border-radius: 999px;
  padding: 8px 36px 8px 14px;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  min-width: 0;
}

.filter-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.filter-select.is-active {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--gold);
  font-weight: 600;
}

.filter-select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.filter-select-wrap--sort {
  flex-shrink: 0;
  max-width: 220px;
}
.filter-select-wrap--sort .filter-select {
  border-color: var(--navy);
  width: auto;
}

.filter-bar__submit-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  grid-column: -1;
}

.filter-bar__submit-btn:hover { background: var(--gold); }

/* ── Searchable Dropdown ──────────────────────────────────── */
.filter-searchable {
  position: relative;
  min-width: 0;
}

.filter-searchable__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid #D1D5DB;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.filter-searchable__trigger.is-active {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--gold);
  font-weight: 600;
}

.filter-searchable__trigger svg {
  flex-shrink: 0;
  color: var(--gold);
}

.filter-searchable__panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 1000;
  overflow: hidden;
}

.filter-searchable__panel.is-open { display: block; }

.filter-searchable__search {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  background: var(--off-white);
}

.filter-searchable__list {
  max-height: 260px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.filter-searchable__option {
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.filter-searchable__option:hover,
.filter-searchable__option.is-highlighted {
  background: rgba(201, 162, 39, 0.1);
}

.filter-searchable__option.is-selected {
  font-weight: 600;
  color: var(--gold);
}

.filter-searchable__empty {
  padding: 16px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ── Packages Grid Section ────────────────────────────────────── */
.packages-grid-section {
  background: var(--white);
  padding: 48px 0 80px;
}

.packages-grid-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.packages-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}

.packages-result-count {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.filter-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 5px 12px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.filter-clear-btn:hover { color: var(--navy); border-color: var(--navy); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ── Package Card (archive context) ──────────────────────────── */
.packages-grid .package-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  background: var(--white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.packages-grid .package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.packages-grid .package-card__image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.packages-grid .package-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.packages-grid .package-card:hover .package-card__image {
  transform: scale(1.05);
}

.packages-grid .package-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A2A5E 0%, #2D4080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.packages-grid .package-card__image-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.packages-grid .package-card__type-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
}

.packages-grid .package-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 10px;
}

.packages-grid .package-card__stars { display: flex; gap: 2px; }

.packages-grid .package-card__title {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.packages-grid .package-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.packages-grid .package-card__title a:hover { color: var(--gold); }

.packages-grid .package-card__destination {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.package-card__meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.package-card__duration {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.package-card__pax {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.packages-grid .package-card__price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.packages-grid .package-card__price-from {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

.packages-grid .package-card__price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.pkg-cta-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin-top: auto;
}

.pkg-cta-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── Empty state ──────────────────────────────────────────────── */
.packages-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 80px 24px;
}

.packages-empty__heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}

.packages-empty__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
}

/* ── Pagination ───────────────────────────────────────────────── */
.packages-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.packages-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.packages-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1.5px solid #E5E7EB;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.packages-pagination .page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.packages-pagination .page-numbers.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.packages-pagination .page-numbers.dots {
  border-color: transparent;
  cursor: default;
}

.packages-pagination .prev.page-numbers,
.packages-pagination .next.page-numbers {
  background: var(--off-white);
}

.packages-pagination .prev.page-numbers:hover,
.packages-pagination .next.page-numbers:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── Enquiry Strip ────────────────────────────────────────────── */
.enquiry-strip {
  background: var(--gold);
  padding: 64px 0;
}

.enquiry-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.enquiry-strip__left { flex: 1; }

.enquiry-strip__heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.enquiry-strip__subtext {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(26, 42, 94, 0.8);
}

.enquiry-strip__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.enquiry-strip .btn--navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.enquiry-strip .btn--navy:hover { background: #253a80; border-color: #253a80; }

.enquiry-strip .btn--ghost-white {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.enquiry-strip .btn--ghost-white:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Package List – Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .packages-grid      { grid-template-columns: repeat(2, 1fr); }
  .page-hero__heading { font-size: 44px; }
  .filter-bar__row--filters { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .page-hero            { min-height: 320px; }
  .page-hero__heading   { font-size: 34px; }
  .page-hero__subtext   { font-size: 15px; }
  .filter-bar           { top: 72px; position: relative; }
  .filter-bar__form     { padding: 12px 16px; }
  .filter-bar__row--filters { grid-template-columns: repeat(2, 1fr); }
  .filter-search-wrap   { max-width: 100%; }
  .packages-result-bar  { flex-direction: column; gap: 12px; align-items: flex-start; }
  .packages-result-bar__right { width: 100%; justify-content: space-between; }
  .packages-grid        { grid-template-columns: 1fr; }
  .packages-grid-inner  { padding: 0 20px; }

  .enquiry-strip__inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .enquiry-strip__heading { font-size: 28px; }
  .enquiry-strip__right   { justify-content: center; flex-wrap: wrap; }
}


/* ================================================================
   PACKAGE DETAIL (single-package.php)
   ================================================================ */

/* ── Section utilities ────────────────────────────────────────── */
.pkg-centered-heading {
  text-align: center;
  margin-bottom: 12px;
}

.pkg-centered-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
}

/* ── SECTION 1: Package Hero ──────────────────────────────────── */
.package-hero {
  position: relative;
  z-index: 0;
  height: 65vh;
  min-height: 460px;
  background-color: var(--navy);
  background-image: linear-gradient(135deg, #1A2A5E 0%, #2D4080 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.package-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(26, 42, 94, 0.85) 80%);
  pointer-events: none;
}

.package-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 48px;
}

.package-hero__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.package-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 24px;
}

.package-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.package-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ── SECTION 2: Package Layout ────────────────────────────────── */
.package-layout {
  background: var(--off-white);
  padding: 48px 0 80px;
  position: relative;
  z-index: 10;
  margin-top: 0;
  clear: both;
}

.package-layout__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 0;
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 48px;
  align-items: start;
}

/* ── Package content (left column) ───────────────────────────── */
.package-content {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* ── Tab navigation ───────────────────────────────────────────── */
.package-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  background: var(--white);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.pkg-tab {
  padding: 16px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pkg-tab:hover { color: var(--navy); }

.pkg-tab.active {
  color: var(--navy);
  font-weight: 700;
  border-bottom-color: var(--gold);
}

/* ── Tab panels ───────────────────────────────────────────────── */
.tab-panel {
  padding: 40px;
  transition: opacity 0.2s ease;
}

.tab-panel[hidden] { display: none; }

.pkg-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  margin-top: 40px;
}

.tab-panel .pkg-section-heading:first-child { margin-top: 0; }

.pkg-description { margin-bottom: 40px; }

.pkg-description p,
.entry-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* Highlights list */
.pkg-highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 40px;
}

.pkg-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
}

.pkg-check-icon { flex-shrink: 0; margin-top: 2px; }

/* Gallery */
/* ── Package Type Details Card ────────────────────────────── */
.pkg-type-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.pkg-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.pkg-type-field__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pkg-type-field__value {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.pkg-type-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pkg-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
}

.pkg-type-list-section {
  margin-top: 12px;
}

.pkg-type-list-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pkg-type-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.pkg-type-list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  padding-left: 18px;
  position: relative;
}

.pkg-type-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.pkg-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pkg-gallery__item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.pkg-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.pkg-gallery__item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Itinerary days */
.itinerary-day {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 28px;
  position: relative;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.day-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.itinerary-day__title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.itinerary-day__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Inclusions / Exclusions */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.inclusions__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.inclusions__heading--green { color: #16A34A; }
.inclusions__heading--red   { color: #DC2626; }

.inclusion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.inclusion-list li svg { flex-shrink: 0; margin-top: 2px; }

/* Hotel cards */
.hotel-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease;
}

.hotel-card:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }

.hotel-card__image-wrap {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.hotel-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotel-card__image-wrap--placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, #2D4080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-card__info { flex: 1; }

.hotel-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.hotel-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.hotel-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hotel-card__room-type {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Sticky sidebar ───────────────────────────────────────────── */
.package-sidebar {
  position: sticky;
  top: 124px;
  align-self: start;
}

.sidebar-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.sidebar-card__top {
  background: var(--navy);
  padding: 24px;
}

.sidebar-card__label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}

.sidebar-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.sidebar-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.sidebar-card__per-person {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.sidebar-card__price-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.sidebar-card__body { padding: 24px; }

.sidebar-card__form-heading {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.sidebar-enquiry-form { display: flex; flex-direction: column; gap: 14px; }

.sidebar-form-field { display: flex; flex-direction: column; gap: 5px; }

.sidebar-form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-form-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: #FAFAFA;
  transition: border-color 0.2s ease;
  outline: none;
}

.sidebar-form-field input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.btn-enquire-now {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 4px;
}

.btn-enquire-now:hover { background: #b8911f; transform: translateY(-1px); }
.btn-enquire-now:active { transform: translateY(0); }

.btn-download-pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--navy);
  border-radius: 8px;
  margin-top: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-download-pdf:hover { background: var(--navy); color: var(--white); }

.sidebar-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.trust-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

.sidebar-form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.sidebar-form-success p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #16A34A;
  font-weight: 600;
}

.sidebar-form-error {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #DC2626;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

/* ── SECTION 3: Pricing Table ─────────────────────────────────── */
.pricing-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid #E5E7EB;
}

.pricing-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  margin-bottom: 16px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
}

.pricing-table thead tr { background: var(--navy); }

.pricing-table thead th {
  padding: 16px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white);
  text-align: left;
  white-space: nowrap;
}

.pricing-table thead th:first-child { border-radius: 12px 0 0 0; }
.pricing-table thead th:last-child  { border-radius: 0 12px 0 0; }

.pricing-table tbody tr:nth-child(even) { background: #F9FAFB; }
.pricing-table tbody tr:nth-child(odd)  { background: var(--white); }

.pricing-table tbody tr.pricing-table__recommended {
  border-left: 3px solid var(--gold);
}

.pricing-table tbody tr.pricing-table__recommended th,
.pricing-table tbody tr.pricing-table__recommended td { font-weight: 700; }

.pricing-table tbody th,
.pricing-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
}

.pricing-table tbody th { font-weight: 600; min-width: 160px; }

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td { border-bottom: none; }

.recommended-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

.pricing-na { color: var(--text-muted); font-size: 13px; }

.pricing-table__note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ── SECTION 4: Terms Accordion ───────────────────────────────── */
.terms-section {
  background: var(--off-white);
  padding: 80px 0;
}

.terms-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.accordion-item {
  border-bottom: 1px solid #E5E7EB;
  background: var(--white);
}

.pkg-accordion .accordion-item:first-child { border-radius: 12px 12px 0 0; }
.pkg-accordion .accordion-item:last-child  { border-radius: 0 0 12px 12px; border-bottom: none; }

.accordion-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.15s ease;
}

.accordion-item__trigger:hover { background: #FAFAFA; }

.accordion-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.accordion-item.open .accordion-chevron { transform: rotate(180deg); }

.accordion-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item__body {
  padding: 20px 28px 28px;
}

.accordion-item__body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}

.accordion-item__body p:last-child {
  margin-bottom: 0;
}

.accordion-item__body ul,
.accordion-item__body ol {
  padding-left: 24px;
  margin: 14px 0;
  list-style-position: outside;
}

.accordion-item__body ul {
  list-style-type: disc;
}

.accordion-item__body ol {
  list-style-type: decimal;
}

.accordion-item__body li {
  font-family: 'Inter', sans-serif;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}

.accordion-item__body li::marker {
  color: var(--gold);
}

.accordion-item__body strong {
  color: var(--navy);
  font-weight: 600;
}

.accordion-item__body a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── SECTION 5: Similar Packages ──────────────────────────────── */
.similar-packages {
  background: var(--white);
  padding: 80px 0;
}

.similar-packages__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.similar-packages__inner .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}

.similar-packages__grid { grid-template-columns: repeat(3, 1fr); }

/* ── Package Detail – Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .package-hero__content { padding: 0 40px 40px; }
  .package-hero__title   { font-size: 40px; }

  .package-layout__inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 32px;
  }

  .package-sidebar { position: static; }

  .pricing-section__inner,
  .terms-section__inner,
  .similar-packages__inner { padding: 0 32px; }

  .similar-packages__inner .section-heading { font-size: 32px; }
  .similar-packages__grid { grid-template-columns: repeat(2, 1fr); }

  .pkg-highlights-list { grid-template-columns: 1fr; }
  .pkg-gallery         { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .package-hero        { min-height: 380px; height: auto; padding-top: 80px; }
  .package-hero__content { padding: 0 20px 36px; }
  .package-hero__title { font-size: 30px; }
  .package-hero__pill  { font-size: 12px; padding: 6px 12px; }

  .package-layout { padding: 32px 0 48px; }
  .package-layout__inner { padding: 0 20px; }

  .package-tabs { overflow-x: auto; }
  .pkg-tab      { padding: 14px 16px; font-size: 12px; }

  .tab-panel { padding: 24px 20px; }

  .pkg-gallery              { grid-template-columns: repeat(2, 1fr); }

  .inclusions-grid { grid-template-columns: 1fr; }

  .pricing-section,
  .terms-section,
  .similar-packages  { padding: 48px 0; }

  .pricing-section__inner,
  .terms-section__inner,
  .similar-packages__inner { padding: 0 20px; }

  .similar-packages__grid { grid-template-columns: 1fr; }
  .similar-packages__inner .section-heading { font-size: 28px; }

  .accordion-item__trigger { font-size: 14px; padding: 16px 18px; }
}


/* ================================================================
   ABOUT PAGE (page-about.php)
   ================================================================ */

/* ── Shared container utility (alias for section-inner) ──────── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── SECTION 2: Our Story ─────────────────────────────────────── */
.about-story-section {
  background: var(--white);
  padding: 96px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, #2A3F7E 100%);
  border-radius: 16px;
}

.about-experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.4);
}

.badge-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.about-story-content .section-heading {
  margin-bottom: 24px;
}

.about-story-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-inline-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
}

.inline-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.inline-stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── SECTION 4: Why Choose Us (about variant) ─────────────────── */
.about-why-us {
  background: var(--off-white);
  text-align: center;
}

.features-grid {
  display: grid;
  gap: 24px;
}

.features-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-block {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-block h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-block p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SECTION 5: Team ──────────────────────────────────────────── */
.team-section {
  background: var(--white);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--off-white);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}

.team-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-bio {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SECTION 6: Awards ────────────────────────────────────────── */
.awards-section {
  background: var(--off-white);
  padding: 80px 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.award-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.award-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.award-image {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.award-image-placeholder {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.award-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.award-year {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── SECTION 7: Accreditations ────────────────────────────────── */
.accreditations-section {
  background: var(--white);
  padding: 80px 0;
}

.accreditation-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.accreditation-logo-card {
  background: var(--off-white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accreditation-logo-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.12);
}

.accreditation-logo-card img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.accreditation-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.accreditation-logo-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.accreditation-logo-card--link:hover {
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.18);
  transform: translateY(-2px);
}

.accreditation-logo-card--link {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

/* ── SECTION 9: CTA ───────────────────────────────────────────── */
.about-cta-section {
  background: var(--navy);
  padding: 96px 0;
}

.about-cta-inner {
  text-align: center;
}

.about-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-cta-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA button styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid var(--gold);
  transition: background 0.25s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #b8911f;
  border-color: #b8911f;
  transform: translateY(-2px);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.btn-ghost-white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── About Page – Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .section-container { padding: 0 32px; }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-experience-badge { right: 0; bottom: -16px; }

  .features-grid-6  { grid-template-columns: repeat(2, 1fr); }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .awards-grid      { grid-template-columns: repeat(2, 1fr); }

  .about-cta-inner h2 { font-size: 36px; }
}

@media (max-width: 768px) {
  .section-container { padding: 0 20px; }

  .about-story-section  { padding: 60px 0; }
  .about-story-grid     { gap: 48px; }
  .about-experience-badge { right: 0; padding: 16px 20px; }
  .badge-number         { font-size: 28px; }

  .about-inline-stats   { flex-wrap: wrap; gap: 24px; }
  .inline-stat-number   { font-size: 26px; }

  .features-grid-6 { grid-template-columns: 1fr; }

  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }

  .about-cta-section  { padding: 64px 0; }
  .about-cta-inner h2 { font-size: 28px; }
  .about-cta-inner p  { font-size: 15px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Section wrapper ────────────────────────────────────────── */
.contact-section {
  padding: 80px 0;
  background: var(--off-white);
}

/* ── Contact grid (info card | form card) ───────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* ── Info card ──────────────────────────────────────────────── */
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: sticky;
  top: 100px;
}

.contact-info-card__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.contact-info-card__header p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── Info list ──────────────────────────────────────────────── */
.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.contact-info-text strong {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
}

.contact-info-text a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-text a:hover { color: var(--gold); }

/* ── Social links ───────────────────────────────────────────── */
.contact-social__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  margin: 0 0 12px;
}

.contact-social__links {
  display: flex;
  gap: 12px;
}

.contact-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.contact-social-icon:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Form card ──────────────────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-card__header {
  margin-bottom: 28px;
}

.contact-form-card__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.contact-form-card__header p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Contact form layout ────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Half-row: used for travel date + guests side-by-side */
.cform-row__half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cform-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cform-group label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cform-group label span { color: var(--gold); margin-left: 2px; }

.cform-group input,
.cform-group select,
.cform-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.cform-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

.cform-group textarea { resize: vertical; min-height: 110px; }

/* ── Submit button full-width ───────────────────────────────── */
.btn--full {
  width: 100%;
  justify-content: center;
  gap: 8px;
}

/* ── Form error ─────────────────────────────────────────────── */
.contact-form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 4px;
}

/* ── Success state ──────────────────────────────────────────── */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.contact-success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}

.contact-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.contact-success p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  max-width: 380px;
}

/* ── Branches section ───────────────────────────────────────── */
.branches-section {
  padding: 80px 0 96px;
  background: var(--white);
}

.branches-section .section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.branches-section .section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0;
}

.branches-section .section-heading p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Branch card ────────────────────────────────────────────── */
.branch-card {
  background: var(--off-white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.branch-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.branch-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-card__city {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.branch-card__address {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.branch-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.branch-card__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.branch-card__contact-link svg { flex-shrink: 0; color: var(--gold); }

.branch-card__contact-link:hover { color: var(--navy); }

/* ── Responsive: 1280px ─────────────────────────────────────── */
@media (max-width: 1280px) {
  .branches-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Responsive: 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid         { grid-template-columns: 1fr; }
  .contact-info-card    { position: static; }
  .branches-grid        { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-section      { padding: 56px 0; }
  .contact-info-card,
  .contact-form-card    { padding: 28px 20px; }
  .cform-row            { grid-template-columns: 1fr; }
  .cform-row__half      { grid-template-columns: 1fr 1fr; }
  .branches-section     { padding: 56px 0 72px; }
  .branches-grid        { grid-template-columns: 1fr; }
  .branches-section .section-heading h2 { font-size: 26px; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* ── Section wrapper ────────────────────────────────────────── */
.faq-section {
  background: var(--off-white);
  padding: 80px 0;
}

/* ── Two-column layout ──────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.faq-sidebar {
  position: sticky;
  top: 110px;
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.faq-sidebar__heading {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
}

/* ── Category list ──────────────────────────────────────────── */
.faq-category-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-cat-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.faq-cat-btn:hover {
  background: var(--off-white);
  color: var(--navy);
}

.faq-cat-btn.active {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.faq-cat-count {
  font-size: 11px;
  font-weight: 700;
  background: var(--off-white);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.faq-cat-btn.active .faq-cat-count {
  background: var(--gold);
  color: var(--navy);
}

/* ── Sidebar CTA ────────────────────────────────────────────── */
.faq-sidebar__cta {
  border-top: 1px solid #E5E7EB;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.faq-sidebar__cta p {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 4px;
}

.faq-sidebar__btn {
  justify-content: center;
  font-size: 13px;
  padding: 10px 20px;
}

/* ── btn--navy variant (used in sidebar) ────────────────────── */
.btn--navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn--navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Search bar ─────────────────────────────────────────────── */
.faq-search-wrap {
  position: relative;
  margin-bottom: 32px;
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.faq-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

/* ── Category group ─────────────────────────────────────────── */
.faq-category-group {
  margin-bottom: 40px;
}

.faq-category-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* ── Accordion ──────────────────────────────────────────────── */
.faq-accordion {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
}

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

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.faq-question-btn:hover {
  background: var(--off-white);
}

.faq-item.open .faq-question-btn {
  background: rgba(201,162,39,0.05);
}

.faq-question-btn span {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* Answer: max-height transition; hidden attribute overrides display */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer[hidden] {
  display: block !important; /* keep in flow for CSS transition */
  max-height: 0;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ── No-results state ───────────────────────────────────────── */
.faq-no-results {
  text-align: center;
  padding: 64px 24px;
}

.faq-no-results[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.faq-no-results svg {
  display: block;
  margin: 0 auto 16px;
  color: var(--gold);
}

.faq-no-results h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.faq-no-results p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Bottom CTA ─────────────────────────────────────────────── */
.faq-cta-section {
  background: var(--navy);
  padding: 80px 0;
}

.faq-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}

.faq-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
}

.faq-cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 36px;
}

.faq-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive: 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-category-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-cat-btn {
    width: auto;
  }
}

/* ── Responsive: 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-section          { padding: 56px 0; }
  .faq-sidebar          { padding: 20px; }
  .faq-question-btn     { padding: 16px 18px; }
  .faq-answer p         { padding: 0 18px 16px; }
  .faq-cta-section      { padding: 64px 0; }
  .faq-cta-inner h2     { font-size: 30px; }
  .faq-cta-inner p      { font-size: 15px; }
}

/* ============================================================
   MEDIA PAGE
   ============================================================ */

/* ── Panel subtext ──────────────────────────────────────────── */
.media-panel-subtext {
  font-size: 16px;
  color: var(--text-muted);
  margin: -8px 0 40px;
}

/* ── Sticky tab bar ─────────────────────────────────────────── */
.media-tabs-bar {
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 106px;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.media-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.media-tabs::-webkit-scrollbar { display: none; }

.media-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.media-tab-btn:hover          { color: var(--navy); }
.media-tab-btn.active         { color: var(--navy); border-bottom-color: var(--gold); }
.media-tab-btn svg            { flex-shrink: 0; }

/* ── Content section ────────────────────────────────────────── */
.media-content-section {
  background: var(--off-white);
  padding: 64px 0 80px;
}

.media-panel { display: none; }
.media-panel.active { display: block; }

/* hidden attr override — keep panel out of flow when not active */
.media-panel[hidden] { display: none !important; }

.media-panel-header { margin-bottom: 8px; }

/* ── Photo masonry grid ─────────────────────────────────────── */
.photo-masonry-grid {
  columns: 4;
  column-gap: 12px;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.photo-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.photo-item:hover img { transform: scale(1.03); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,42,94,0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  cursor: pointer;
}

.photo-item:hover .photo-overlay,
.photo-overlay:focus  { opacity: 1; }

.photo-overlay:focus { outline: 3px solid var(--gold); outline-offset: -3px; }

/* Placeholder tiles */
.photo-item--placeholder {
  cursor: default;
}

.photo-placeholder-inner {
  background: linear-gradient(135deg, var(--navy), #2A3F7E);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
}

.photo-placeholder-inner span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

/* Vary heights to simulate masonry feel */
.photo-item--placeholder:nth-child(3n+1) .photo-placeholder-inner { padding: 60px 20px; }
.photo-item--placeholder:nth-child(5n+2) .photo-placeholder-inner { padding: 80px 20px; }

/* ── Videos grid ────────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.video-thumb-wrap {
  position: relative;
  height: 200px;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb-wrap:focus { outline: 3px solid var(--gold); outline-offset: 2px; }

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), #2A3F7E);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  pointer-events: none;
}

.video-thumb-wrap:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--navy);
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 16px 18px;
  line-height: 1.45;
  margin: 0;
}

/* ── Press grid ─────────────────────────────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.press-logo {
  height: 40px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
  filter: grayscale(1);
  transition: filter 0.2s;
}

.press-card:hover .press-logo { filter: none; }

.press-publication-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.press-headline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
}

.press-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
}

.press-date svg { flex-shrink: 0; color: var(--gold); }

.press-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
  align-self: flex-start;
}

.press-read-more:hover { color: var(--navy); }

/* ── Awards showcase grid ───────────────────────────────────── */
.awards-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.award-showcase-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.award-showcase-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 20px;
  background: var(--off-white);
  display: block;
}

.award-showcase-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), #2A3F7E);
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-showcase-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.award-showcase-year {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.award-showcase-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0 0;
  line-height: 1.35;
}

.award-showcase-body {
  font-size: 13px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox[hidden] {
  display: flex !important; /* keep in flow; JS uses hidden + .open for transition */
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* ── Video modal ────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.video-modal[hidden] { display: flex !important; }

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}

/* ── Shared close button ────────────────────────────────────── */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1;
}

.lightbox-close:hover  { background: rgba(255,255,255,0.22); }
.lightbox-close:focus  { outline: 2px solid var(--gold); }

/* ── Responsive: 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .photo-masonry-grid          { columns: 3; }
  .videos-grid                 { grid-template-columns: repeat(2, 1fr); }
  .press-grid                  { grid-template-columns: repeat(2, 1fr); }
  .awards-showcase-grid        { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  .media-content-section       { padding: 48px 0 64px; }
  .media-tab-btn               { padding: 14px 16px; font-size: 11px; }
  .photo-masonry-grid          { columns: 2; }
  .videos-grid                 { grid-template-columns: 1fr; }
  .press-grid                  { grid-template-columns: 1fr; }
  .awards-showcase-grid        { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG PAGES  (archive.php + single.php)
   ============================================================ */

/* ── Category filter bar ────────────────────────────────────── */
.blog-filter-bar {
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 106px;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-filter-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.blog-filter-tabs::-webkit-scrollbar { display: none; }

.blog-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 999px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.blog-filter-tab:hover      { color: var(--navy); background: var(--off-white); }
.blog-filter-tab.active     { background: var(--navy); color: var(--white); }

.blog-filter-count {
  font-size: 11px;
  font-weight: 700;
  background: var(--off-white);
  color: var(--text-muted);
  padding: 1px 8px;
  border-radius: 999px;
}

.blog-filter-tab.active .blog-filter-count {
  background: var(--gold);
  color: var(--navy);
}

/* ── Blog search bar ────────────────────────────────────────── */
.blog-search-bar {
  background: var(--off-white);
  padding: 24px 0 8px;
}

.blog-search-form {
  display: flex;
  justify-content: center;
  width: 100%;
}

.blog-search-input-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

.blog-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.blog-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-search-input::placeholder { color: var(--text-muted); }

.blog-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.blog-search-results-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
}

.blog-search-results-heading p { margin: 0; }

.blog-search-clear {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-search-clear:hover { color: var(--navy); }

/* ── Featured post ──────────────────────────────────────────── */
.featured-post-section {
  background: var(--white);
  padding: 64px 0 0;
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.featured-post-image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-post-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), #2A3F7E);
}

.featured-post-image .blog-category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
}

.featured-post-content {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.featured-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 12px 0 16px;
}

.featured-post-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.featured-post-title a:hover { color: var(--gold); }

.featured-post-excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-post-btn {
  margin-top: 24px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Featured carousel ─────────────────────────────────────── */
.featured-carousel {
  position: relative;
}

.featured-carousel__track {
  position: relative;
  overflow: hidden;
}

.featured-carousel__slide {
  display: none;
  animation: featuredFadeIn 0.4s ease;
}

.featured-carousel__slide.active {
  display: block;
}

@keyframes featuredFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.featured-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}

.featured-carousel__arrow:hover {
  background: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

.featured-carousel__arrow--prev { left: -22px; }
.featured-carousel__arrow--next { right: -22px; }

.featured-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.featured-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.featured-carousel__dot:hover { border-color: var(--gold); }

.featured-carousel__dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Post author chip ───────────────────────────────────────── */
.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

.author-avatar {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: block;
}

.author-avatar--lg {
  width: 40px !important;
  height: 40px !important;
}

.post-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.post-date svg { color: var(--gold); }

/* ── Blog category tag/pill ─────────────────────────────────── */
.blog-category-tag {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Blog list section ──────────────────────────────────────── */
.blog-list-section {
  background: var(--off-white);
  padding: 48px 0 80px;
}

/* ── Blog grid ──────────────────────────────────────────────── */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Blog card ──────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}

.blog-image-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-image { transform: scale(1.05); }

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), #2A3F7E);
}

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.blog-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0 0 10px;
}

.blog-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--gold); }

.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}

.blog-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-meta svg { color: var(--gold); }

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.blog-read-more:hover { color: var(--navy); gap: 8px; }

/* ── No posts state ─────────────────────────────────────────── */
.no-posts-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  gap: 12px;
  color: var(--text-muted);
}

.no-posts-message svg { color: var(--gold); }

.no-posts-message h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin: 0;
}

.no-posts-message p { margin: 0; font-size: 15px; }

/* ── BLOG PAGINATION ───────────────────────────────────────── */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin: 48px 0 0;
}

.blog-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-pagination li { margin: 0; padding: 0; }

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.blog-pagination .page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.blog-pagination .page-numbers.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.blog-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
}

.blog-pagination .prev.page-numbers,
.blog-pagination .next.page-numbers {
  border-radius: 999px;
  padding: 0 16px;
  background: var(--white);
  border: 1px solid var(--navy);
  white-space: nowrap;
}

.blog-pagination .prev.page-numbers:hover,
.blog-pagination .next.page-numbers:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Post hero ──────────────────────────────────────────────── */
.post-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}

.post-hero--default { background: linear-gradient(135deg, var(--navy) 0%, #2A3F7E 100%); }

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,94,0.95) 0%, rgba(26,42,94,0.2) 70%);
}

/* Mirror .post-layout grid so hero title aligns with article body */
.post-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.post-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 48px;
  width: 100%;
}

.post-hero__breadcrumb { margin-bottom: 16px; }

.post-hero-cat { margin-bottom: 16px; display: inline-block; }

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 24px;
}

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.post-hero-meta .post-author { color: var(--white); }
.post-hero-meta .post-author span { color: rgba(255,255,255,0.8); }

.author-name {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.post-date-small {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

.post-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

/* ── Post layout ────────────────────────────────────────────── */
.post-layout-section {
  background: var(--off-white);
  padding: 64px 0 80px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ── Post content area ──────────────────────────────────────── */
.post-content-area {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  min-width: 0; /* prevent grid blowout */
}

.post-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.9;
}

.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
  line-height: 1.3;
}

.post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
  line-height: 1.35;
}

.post-body p { margin-bottom: 20px; }

.post-body img {
  border-radius: 12px;
  margin: 24px 0;
  width: 100%;
  height: auto;
  display: block;
}

.post-body ul,
.post-body ol { padding-left: 24px; margin-bottom: 20px; }

.post-body li { margin-bottom: 8px; line-height: 1.7; }

.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}

.post-body a { color: var(--gold); font-weight: 600; }
.post-body a:hover { color: var(--navy); }

/* ── Tags ───────────────────────────────────────────────────── */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 12px;
}

.post-tags-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.post-tag {
  font-size: 12px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  padding: 4px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.post-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── Author bio ─────────────────────────────────────────────── */
.post-author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--off-white);
  border-radius: 12px;
  margin: 32px 0;
}

.author-bio-avatar {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  flex-shrink: 0;
  display: block;
}

.author-bio-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.author-bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.author-bio-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Share buttons ──────────────────────────────────────────── */
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 12px;
}

.post-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.post-share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: filter 0.2s;
}

.share-btn:hover { filter: brightness(0.88); }

.share-facebook { background: #1877F2; color: var(--white); }
.share-whatsapp { background: #25D366; color: var(--white); }
.share-twitter  { background: #000;    color: var(--white); }

/* ── Post navigation ────────────────────────────────────────── */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
}

.post-nav-prev,
.post-nav-next {
  background: var(--off-white);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.2s;
}

.post-nav-prev:hover,
.post-nav-next:hover { background: var(--navy); }

.post-nav-prev a,
.post-nav-next a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.post-nav-next { text-align: right; }

.post-nav-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}

.post-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.post-nav-prev:hover .post-nav-label,
.post-nav-prev:hover .post-nav-title,
.post-nav-next:hover .post-nav-label,
.post-nav-next:hover .post-nav-title { color: var(--white); }

/* ── Sidebar ────────────────────────────────────────────────── */
.post-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.widget-heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.sidebar-search {
  display: flex;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar-search-input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: transparent;
  outline: none;
  min-width: 0;
}

.sidebar-search button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.sidebar-search button:hover { background: var(--gold); color: var(--navy); }

.sidebar-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid #E5E7EB;
  transition: color 0.2s;
}

.sidebar-categories li:last-child a { border-bottom: none; }
.sidebar-categories li a:hover { color: var(--gold); }

.sidebar-categories li a span {
  font-size: 11px;
  background: var(--off-white);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.sidebar-recent-posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.recent-post-thumb {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.recent-post-thumb-placeholder {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy), #2A3F7E);
  flex-shrink: 0;
}

.recent-post-info { min-width: 0; }

.recent-post-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
  transition: color 0.2s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recent-post-title:hover { color: var(--gold); }

.recent-post-date {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Sidebar enquiry CTA ────────────────────────────────────── */
.sidebar-enquiry-widget {
  background: var(--navy);
}

.sidebar-enquiry-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.sidebar-enquiry-widget p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 0 20px;
}

.sidebar-enquiry-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sidebar-enquiry-call-btn:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ── Related posts section ──────────────────────────────────── */
.related-posts-section {
  background: var(--white);
  padding: 80px 0;
}

.related-posts-grid {
  margin-top: 32px;
}

/* ── Responsive: 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-post-card         { grid-template-columns: 1fr; }
  .featured-post-image        { min-height: 300px; }
  .blog-list-grid             { grid-template-columns: repeat(2, 1fr); }
  .post-layout                { grid-template-columns: 1fr; }
  .post-hero-grid             { grid-template-columns: 1fr; }
  .post-sidebar               { position: static; }
  .post-hero-content          { padding: 60px 0 32px; }
  .post-title                 { font-size: 36px; }
  .featured-carousel__arrow--prev { left: 8px; }
  .featured-carousel__arrow--next { right: 8px; }
}

/* ── Responsive: 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  .blog-list-grid             { grid-template-columns: 1fr; }
  .post-title                 { font-size: 28px; }
  .post-hero-content          { padding: 48px 0 24px; }
  .post-content-area          { padding: 28px 20px; }
  .post-navigation            { grid-template-columns: 1fr; }
  .post-nav-next              { text-align: left; }
  .post-author-bio            { flex-direction: column; }
  .post-share                 { flex-direction: column; align-items: flex-start; }
  .featured-post-content      { padding: 32px 24px; }
  .featured-post-title        { font-size: 22px; }
  .featured-carousel__arrow   { width: 36px; height: 36px; }
  .featured-carousel__arrow--prev { left: 4px; }
  .featured-carousel__arrow--next { right: 4px; }
  .blog-search-input-wrap     { max-width: 100%; }
}

/* ── Read-progress bar (injected by JS on single posts) ─────── */
#read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ── Back-to-top button (injected by JS) ────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
  z-index: 1000;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   LOGO
   ============================================================ */

/* WordPress custom logo */
.custom-logo-link img {
  height: 50px;
  width: auto;
  display: block;
}

/* Text fallback when no custom logo is set */
.site-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
}

/* Mega menu "View More" link */
.mega-viewmore a {
  color: var(--gold) !important;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES (Terms, Privacy, Cancellation)
   ═══════════════════════════════════════════════════════════════════════════ */

.legal-page-hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}

.legal-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0;
  z-index: 1;
}
.legal-page-hero--has-image .legal-page-hero__overlay {
  opacity: 0.75;
}

.legal-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 20px;
}

.legal-page-hero__breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.legal-page-hero__breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.legal-page-hero__breadcrumb a:hover {
  color: var(--gold);
}

.legal-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.2;
}

.legal-page-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.legal-page-hero__date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 16px 0 0;
}

/* Content wrapper */
.legal-content-section {
  background: var(--white);
  padding: 64px 0;
}

.legal-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Typography */
.legal-content {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
}

.legal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 8px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #374151;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: var(--navy);
  font-weight: 700;
}

.legal-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 12px 20px;
  font-style: italic;
  color: var(--text-muted);
  margin: 24px 0;
  background: #F9FAFB;
  border-radius: 0 8px 8px 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.legal-content table th {
  background: var(--off-white);
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
}
.legal-content table td {
  padding: 12px;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .legal-page-hero { min-height: 28vh; }
  .legal-page-hero h1 { font-size: 28px; }
  .legal-content h2 { font-size: 24px; }
  .legal-content h3 { font-size: 20px; }
  .legal-content-section { padding: 40px 0; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Form Success / Error Messages
   ══════════════════════════════════════════════════════════════════════════════ */
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.newsletter-form .form-success,
.newsletter-form .form-error {
  margin-top: 12px;
  font-size: 13px;
  padding: 10px 14px;
}

/* WPFORMS CAPTCHA FIX */

/* Reset all WPForms default styles in newsletter */
.newsletter-section .wpforms-container,
.newsletter-section .wpforms-form {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

/* Hide default WPForms field labels in newsletter */
.newsletter-section .wpforms-form .wpforms-field-label {
  display: none !important;
}

/* Email row - inline pill shape */
.newsletter-section .wpforms-form .wpforms-field-email input,
.newsletter-section .wpforms-form input[type="email"] {
  width: 100%;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: white;
  color: var(--text-dark);
  border-radius: 999px 0 0 999px;
}

/* Submit button */
.newsletter-section .wpforms-form .wpforms-submit-container {
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.newsletter-section .wpforms-form button[type="submit"] {
  background: var(--navy);
  color: white;
  border: none;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  border-radius: 0 999px 999px 0;
  white-space: nowrap;
  transition: background 0.2s;
  height: 100%;
}

.newsletter-section .wpforms-form button[type="submit"]:hover {
  background: #0F1A3E;
}

/* Make email + submit sit side by side */
.newsletter-section .wpforms-form .wpforms-field-container {
  display: flex;
  align-items: stretch;
  background: white;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin-bottom: 12px;
}

.newsletter-section .wpforms-form .wpforms-field-email {
  flex: 1;
  padding: 0;
  margin: 0;
}

/* Captcha row - clean styled row below */
.newsletter-section .wpforms-form .wpforms-field-captcha {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 10px 20px;
  margin-top: 0;
}

/* Captcha question label */
.newsletter-section .wpforms-form .wpforms-field-captcha .wpforms-captcha-math {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-section .wpforms-form .wpforms-field-captcha .wpforms-captcha-math span,
.newsletter-section .wpforms-form .wpforms-field-captcha .wpforms-captcha-question {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  white-space: nowrap;
}

/* Captcha answer input */
.newsletter-section .wpforms-form .wpforms-field-captcha input[type="text"],
.newsletter-section .wpforms-form .wpforms-captcha-math input {
  width: 70px;
  background: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  font-family: 'Inter', sans-serif;
  outline: none;
  color: var(--navy);
}

/* Show captcha label for the question text only */
.newsletter-section .wpforms-form .wpforms-field-captcha .wpforms-field-label {
  display: block !important;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* Hide honeypot and hidden fields */
.newsletter-section .wpforms-field-hp,
.newsletter-section .wpforms-page-indicator {
  display: none !important;
}

/* Error messages */
.newsletter-section .wpforms-error {
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 4px 10px;
  margin-top: 4px;
  display: block;
}

/* Success confirmation */
.newsletter-section .wpforms-confirmation-container-full {
  background: rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 20px 32px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

@media (max-width: 600px) {
  .newsletter-section .wpforms-form .wpforms-field-container {
    flex-direction: column;
    border-radius: 12px;
  }
  .newsletter-section .wpforms-form .wpforms-field-email input {
    border-radius: 12px 12px 0 0;
  }
  .newsletter-section .wpforms-form button[type="submit"] {
    border-radius: 0 0 12px 12px;
    width: 100%;
  }
  .newsletter-section .wpforms-form .wpforms-field-captcha {
    flex-wrap: wrap;
    justify-content: center;
  }
}
