:root {
  --navy-900: #3B2412;
  --navy-800: #4F3219;
  --gold-light: #E8C9A0;
  --gold-mid: #B97D3E;
  --gold-dark: #6B4423;
  --gold-light-bg: #D8B98C;
  --gold-mid-bg: #A8703A;
  --gold-dark-bg: #5A3A1E;
  --silver: #8A7563;
  --white: #FFFFFF;
  --cream: #FBF6EF;
  --cream-alt: #F3E8DA;
  --radius: 14px;
}

* { box-sizing: border-box; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-underline {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.page-shell h1 { text-align: center; }
.gradient-underline::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
}

body {
  margin: 0;
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--navy-900);
  line-height: 1.55;
}

a { color: var(--gold-mid); text-decoration: none; }
a:hover { color: var(--gold-dark); }

h1, h2, h3 { font-family: 'Georgia', serif; color: var(--navy-900); }

/* ---------- Sticky Glassmorphism Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(243, 232, 218, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(185, 130, 78, 0.25);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
}

.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 64px; }

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-mid);
  border-bottom-color: var(--gold-mid);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  color: var(--navy-900);
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-cta:hover { color: var(--navy-900); filter: brightness(1.08); }

.nav-cta-secondary {
  background: transparent;
  border: 1px solid rgba(185, 130, 78, 0.5);
  color: var(--navy-900);
}
.nav-cta-secondary:hover {
  background: rgba(185, 130, 78, 0.12);
  color: var(--navy-900);
  filter: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-dark);
}

/* ---------- Hero Ken Burns (bottom-left → top-right) ---------- */
@keyframes heroKenBurns {
  0%   { transform: scale(1.15) translate(-3%, 3%); }
  100% { transform: scale(1.03) translate(3%, -3%); }
}

/* ---------- Hero Ken Burns reverse (upper-right -> lower-left) ---------- */
@keyframes heroKenBurnsReverse {
  0%   { transform: scale(1.15) translate(3%, -3%); }
  100% { transform: scale(1.03) translate(-3%, 3%); }
}

.hero-slide.active:not(.hero-slide-video) {
  animation: heroKenBurns 7s ease-out forwards;
}

.hero-slide.active.kb-reverse:not(.hero-slide-video) {
  animation: heroKenBurnsReverse 7s ease-out forwards;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(ellipse at top, var(--navy-800), var(--navy-900));
  overflow: hidden;
  color: var(--white);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59,36,18,0.22), rgba(59,36,18,0.52));
  pointer-events: none;
  z-index: 1;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-cta {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
}

.hero-cta-secondary {
  background: transparent;
  border: 1px solid rgba(232, 201, 160, 0.7);
  color: var(--white);
}
.hero-cta-secondary:hover { background: rgba(232, 201, 160, 0.15); color: var(--white); }

/* ---------- Why-Us Cards with Images ---------- */
.intro-card { padding: 0; overflow: hidden; }
.intro-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.intro-card-body { padding: 20px 22px; }
.intro-card-body h3 { margin-top: 0; }

/* ---------- Generic Carousel ---------- */
.carousel { position: relative; max-width: 900px; margin: 30px auto 0; }
.carousel-track { position: relative; min-height: 320px; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active { opacity: 1; visibility: visible; position: relative; }
.carousel-slide img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(185, 130, 78, 0.3);
}
.carousel-slide-video video {
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 169, 59, 0.25);
  background: #000;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(212, 169, 59, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: var(--gold-mid); }

.fleet-showcase, .testimonial-showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
  text-align: center;
}

.page-lede.center, .page-note.center { text-align: center; margin: 0 auto; }

.testimonial-showcase .page-note.center { margin-top: 8px; }
.testimonial-carousel .carousel-track { min-height: 0; }
.testimonial-carousel .carousel-dots { margin-top: 4px; }

/* ---------- Alternating Dark Sections ---------- */
.section-dark {
  background: linear-gradient(135deg, var(--navy-900) 0%, #5A3820 50%, var(--navy-900) 100%);
  color: var(--white);
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 50px 24px;
}
.fleet-showcase.section-dark {
  background: #F3E8DA;
}
.fleet-showcase.section-dark h2 { color: var(--navy-900); }
.fleet-showcase.section-dark .page-lede,
.fleet-showcase.section-dark .page-lede.center { color: var(--silver); }
.section-dark h2 { color: var(--white); }
.section-dark .page-lede,
.section-dark .page-lede.center { color: var(--gold-light); }
.section-dark .value-card,
.section-dark .contact-info-item,
.section-dark .intro-card {
  background: var(--navy-800);
  border-color: rgba(232,201,160,0.25);
}
.section-dark .value-card p,
.section-dark .contact-info-item p,
.section-dark .intro-card-body p { color: var(--gold-light); }
.section-dark .value-card h3,
.section-dark .contact-info-item h3,
.section-dark .intro-card-body h3 { color: var(--white); }
.section-dark .contact-info-item i,
.section-dark .value-card i { color: var(--gold-light); }
.section-dark a { color: var(--gold-light); }
.section-dark a:hover { color: var(--white); }
.fleet-showcase.section-dark a { color: var(--gold-mid); }
.fleet-showcase.section-dark a:hover { color: var(--gold-dark); }

.testimony-card.featured {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  font-size: 1.05rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 14px;
  color: var(--white);
}

.hero-sub {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ---------- Booking Box ---------- */
.booking-box {
  background: rgba(251, 246, 239, 0.97);
  border: 1px solid rgba(185, 130, 78, 0.45);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 22px;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

.booking-box-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.bb-field {
  color: var(--navy-900);
  font-size: 0.88rem;
  padding: 6px 12px;
  border: 1px solid rgba(185, 130, 78, 0.3);
  border-radius: 999px;
}

.bb-expand-toggle {
  margin-left: auto;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  color: var(--navy-900);
  font-weight: 700;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chevron { transition: transform 0.2s; }

.booking-box-form {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(185, 130, 78, 0.3);
}

.booking-box.expanded .booking-box-form { display: flex; }
.booking-box.expanded .chevron { transform: rotate(180deg); }

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

.form-row label,
.booking-page-form label,
.contact-form label {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--silver);
  gap: 6px;
}

.full-width { flex: 1 1 100%; }

input, select, textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(185, 130, 78, 0.35);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-family: inherit;
  margin: 0;
}

input::placeholder { color: rgba(138, 117, 99, 0.7); }

.bb-submit {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  color: var(--navy-900);
  font-weight: 700;
  border: none;
  padding: 13px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}
.bb-submit:hover { filter: brightness(1.08); }

/* Hero "Book Now" stays capsule-shaped */
.hero-cta.bb-submit { border-radius: 999px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb-nav { margin-bottom: 24px; }
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--silver);
}
.breadcrumb-list li { display: flex; align-items: center; }
.breadcrumb-list a { color: var(--gold-mid, #D4A93B); text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list [aria-current="page"] { color: var(--silver); }

/* ---------- Generic Page Shells ---------- */
.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.page-lede { color: var(--silver); font-size: 1.05rem; max-width: 720px; }
.page-shell .page-lede:not(.center) { max-width: 100%; }
.page-note { color: var(--silver); font-size: 0.85rem; margin-top: 24px; }

.home-intro { max-width: 1100px; margin: 0 auto; padding: 60px 24px; text-align: center; }
.intro-grid, .service-grid, .fleet-grid, .blog-grid, .testimony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 30px;
  text-align: left;
}

.intro-card, .service-card, .fleet-card, .blog-card, .testimony-card,
.value-card, .contact-info-item, .trip-detail-card, .testimony-card-v2 {
  position: relative;
  overflow: hidden;
}

.intro-card, .service-card, .fleet-card, .blog-card, .testimony-card {
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 4px 16px rgba(74,46,26,0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.intro-card::before, .service-card::before, .fleet-card::before, .blog-card::before, .testimony-card::before,
.value-card::before, .contact-info-item::before, .trip-detail-card::before, .testimony-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.intro-card:hover::before, .service-card:hover::before, .fleet-card:hover::before, .blog-card:hover::before,
.testimony-card:hover::before, .value-card:hover::before, .contact-info-item:hover::before,
.trip-detail-card:hover::before, .testimony-card-v2:hover::before {
  transform: scaleX(1);
}

.intro-card:hover, .service-card:hover, .fleet-card:hover, .blog-card:hover, .testimony-card:hover,
.value-card:hover, .contact-info-item:hover, .trip-detail-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 38px rgba(74,46,26,0.18);
  border-color: rgba(212,169,59,0.6);
}

.service-card, .fleet-card { padding: 0; overflow: hidden; }
.service-card img, .fleet-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover img, .fleet-card:hover img { transform: scale(1.07); }
.service-card-body, .fleet-card-body { padding: 18px 20px; }
.service-card-body h3, .fleet-card-body h3 { margin-top: 0; }

.service-grid-9 {
  grid-template-columns: repeat(3, 1fr);
}
.service-grid-9 .service-card-body {
  display: flex;
  flex-direction: column;
}
.service-card-body > p,
.fleet-card-body > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.blog-capsule-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.service-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.service-card-title i {
  font-size: 1.4rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.service-card-title h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.0rem;
}
.service-card-highlights {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card-highlights li {
  font-size: 0.82rem;
  color: var(--silver);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-card-highlights li i {
  color: var(--gold-dark);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.service-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}
.service-card-badge {
  background: rgba(185,130,78,0.12);
  border: 1px solid rgba(185,130,78,0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  padding: 3px 10px;
  font-weight: 600;
}
.service-card-cta {
  align-self: flex-start;
  margin-top: 14px;
  padding: 9px 20px;
  font-size: 0.85rem;
}

.hero-cta-outline {
  background: transparent;
  border: 1px solid rgba(185, 130, 78, 0.5);
  color: var(--navy-900);
}
.hero-cta-outline:hover { background: rgba(185, 130, 78, 0.12); color: var(--navy-900); }

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-feature-list li {
  color: var(--navy-900);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-feature-list i { color: var(--gold-dark); margin-top: 3px; }

.testimony-card cite { color: var(--gold-mid); font-size: 0.85rem; }

.contact-form, .booking-page-form, .auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin-top: 30px;
}

.page-shell.narrow { max-width: 540px; }

.form-errors {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 20px;
  color: #f3c2c8;
}
.form-errors p { margin: 4px 0; }

.form-success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.4);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-top: 20px;
  color: #1f5c33;
  font-weight: 600;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(199, 205, 217, 0.15);
  font-size: 0.9rem;
}
.data-table th { color: var(--gold-mid); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(199, 205, 217, 0.3);
  color: var(--silver);
}
.status-confirmed, .status-completed { border-color: rgba(40,167,69,0.5); color: #b6e3c2; }
.status-cancelled, .status-conflict { border-color: rgba(220,53,69,0.5); color: #f3c2c8; }
.status-pending_vendor, .status-quote { border-color: rgba(212,169,59,0.5); color: var(--gold-light); }

.trip-detail-card {
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.trip-detail-card p { margin: 6px 0; }

.page-shell.wide { max-width: 1280px; }

.filter-bar {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.filter-bar input[type="text"] { flex: 1 1 240px; }

.inline-form {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.inline-form select { font-size: 0.78rem; padding: 6px 8px; }

.bb-submit.small { padding: 7px 12px; font-size: 0.82rem; }
.bb-submit.danger { background: linear-gradient(135deg, #f3a0a8, #dc3545, #8c1c26); }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
  color: var(--silver);
  font-size: 0.9rem;
}
.checkbox-label input { width: auto; }

.data-table select, .data-table input { width: auto; }

/* ---------- Help & Support FAQ ---------- */
.help-categories { margin-top: 30px; }

.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 10px;
  max-width: 900px;
}
.faq-topic-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.faq-topic-nav a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  border-color: transparent;
  color: var(--navy-900);
}
.faq-topic-nav a i { color: var(--gold-dark); }
.faq-topic-nav a:hover i { color: var(--navy-900); }

.faq-topic-group { margin-top: 46px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-topic-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Georgia', serif;
  color: var(--navy-900);
  font-size: 1.25rem;
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(185,130,78,0.3);
}
.faq-topic-heading i { color: var(--gold-dark); font-size: 1.1rem; }

.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; max-width: 800px; }
.faq-item {
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-900);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 1.2rem;
  font-weight: 700;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--silver); margin: 12px 0 0; }

/* ---------- Blog Capsule Cards ---------- */
.blog-capsule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 30px;
}
.blog-capsule {
  display: block;
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(74,46,26,0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.blog-capsule:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 38px rgba(74,46,26,0.18);
  border-color: rgba(212,169,59,0.6);
}
.blog-capsule-media { position: relative; height: 190px; overflow: hidden; }
.blog-capsule-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-capsule:hover .blog-capsule-media img { transform: scale(1.07); }
.blog-capsule-media .blog-capsule-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  margin-bottom: 0;
}
.blog-capsule-body { padding: 22px 24px; }
.blog-capsule-tag {
  display: inline-block;
  background: var(--cream-alt);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.blog-capsule h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--navy-900); }
.blog-capsule p { color: var(--silver); font-size: 0.9rem; margin: 0 0 14px; }
.blog-capsule-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(185,130,78,0.15);
  padding-top: 12px;
}
.blog-capsule-date { color: var(--silver); font-size: 0.78rem; }
.blog-capsule-read {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.78rem;
}
.blog-capsule-extra { color: var(--silver); font-size: 0.88rem; margin-top: 8px; }

/* ---------- Category / Filter Capsule Buttons ---------- */
.blog-category-nav, .fleet-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 28px;
}
.blog-cat-btn, .fleet-cat-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--cream-alt);
  color: var(--navy-900);
  border: 1px solid rgba(185, 130, 78, 0.35);
  transition: all 0.25s ease;
}
.blog-cat-btn:hover, .fleet-cat-btn:hover {
  background: rgba(185, 130, 78, 0.15);
  color: var(--navy-900);
}
.blog-cat-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  color: var(--navy-900);
  border-color: transparent;
}

/* ---------- Services Trust Bar ---------- */
.services-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 40px 0;
  padding: 24px;
  background: var(--cream-alt);
  border-radius: var(--radius);
  border: 1px solid rgba(185, 130, 78, 0.2);
}
.services-trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-900);
  white-space: nowrap;
}
.services-trust-bar .trust-item i { color: var(--gold-dark); font-size: 1.1rem; }

/* ---------- Home Blog Preview Section ---------- */
.home-blog-preview {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 50px;
  text-align: center;
}

/* ---------- Service Detail Heading ---------- */
.service-detail-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.service-detail-heading h1 { margin: 0; }
.service-detail-icon {
  font-size: 2.1rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Service Keyword Chips ---------- */
.service-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.service-keywords .keyword-chip {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--cream-alt);
  border: 1px solid rgba(185, 130, 78, 0.3);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Author capsule — same pill style as category tag */
.blog-capsule-author {
  display: inline-block;
  background: rgba(185, 130, 78, 0.08);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid rgba(185, 130, 78, 0.28);
  margin-bottom: 10px;
}

/* ---------- Blog Pagination ---------- */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.blog-post-hero {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.blog-post-body p { color: var(--navy-900); margin-bottom: 16px; line-height: 1.7; }

/* ---------- Testimony Page v2 ---------- */
.testimony-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
  margin: 30px 0 50px;
  padding: 26px 0;
  border-top: 1px solid rgba(185,130,78,0.25);
  border-bottom: 1px solid rgba(185,130,78,0.25);
}
.testimony-stat .stat-number { display: block; font-family: 'Georgia', serif; font-size: 1.9rem; color: var(--gold-dark); font-weight: 700; }
.testimony-stat .stat-label { color: var(--silver); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }

.testimony-stack { display: flex; flex-direction: column; gap: 22px; max-width: 760px; margin: 0 auto; }
.testimony-card-v2 {
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: 0 4px 16px rgba(74,46,26,0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.testimony-card-v2:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 38px rgba(74,46,26,0.18);
  border-color: rgba(212,169,59,0.6);
}
.testimony-stars { color: var(--gold-mid); letter-spacing: 2px; margin-bottom: 10px; }
.testimony-quote { font-size: 1.02rem; color: var(--navy-900); margin-bottom: 16px; }
.testimony-author { display: flex; align-items: center; gap: 14px; }
.testimony-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--navy-900);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimony-author-title { display: block; color: var(--silver); font-size: 0.85rem; }

/* ---------- About Us Page ---------- */
.about-hero { text-align: center; margin-bottom: 30px; }
.about-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
}
.about-section.reverse { flex-direction: row-reverse; }

/* Photo card wrapper — gives the gold top-bar on hover */
.about-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(74,46,26,0.1);
  flex: 1 1 360px;
  max-width: 460px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.about-photo-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1;
}
.about-photo-card:hover::before { transform: scaleX(1); }
.about-photo-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 18px 38px rgba(74,46,26,0.18);
}
.about-photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-photo-card:hover img { transform: scale(1.05); }

.about-section-body { flex: 1 1 360px; }
.about-section-body p { color: var(--silver); }

.about-values { margin: 60px 0; }
.about-values h2.center { text-align: center; margin-bottom: 30px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(74,46,26,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.value-card i { font-size: 2rem; color: var(--gold-dark); margin-bottom: 12px; display: block; transition: transform 0.25s ease; }
.value-card:hover i { transform: scale(1.15); }
.value-card p { color: var(--silver); font-size: 0.9rem; }
.value-card img { width: 100%; height: 120px; object-fit: cover; border-radius: calc(var(--radius) - 4px); margin-bottom: 12px; display: block; }

/* ---------- Gallery Page ---------- */
.gallery-page-header h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0 0 10px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(185,130,78,0.2);
  box-shadow: 0 4px 16px rgba(74,46,26,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(74,46,26,0.2); }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,36,18,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--white); font-size: 2rem; }

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lb-img { max-width: 88vw; max-height: 88vh; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 50px rgba(0,0,0,0.7); }
.gallery-lb-close { position: fixed; top: 18px; right: 26px; font-size: 2.8rem; color: #fff; background: none; border: none; cursor: pointer; line-height: 1; z-index: 10000; }
.gallery-lb-prev, .gallery-lb-next { position: fixed; top: 50%; transform: translateY(-50%); font-size: 3.5rem; color: #fff; background: none; border: none; cursor: pointer; padding: 0 18px; z-index: 10000; user-select: none; }
.gallery-lb-prev { left: 0; }
.gallery-lb-next { right: 0; }
.gallery-lb-close:hover, .gallery-lb-prev:hover, .gallery-lb-next:hover { color: var(--gold-light); }

/* Home SEO Book Now inline button */
.home-seo-btn-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.home-seo-book-now {
  display: inline-block;
  padding: 9px 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  color: var(--navy-900);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  white-space: nowrap;
}
.home-seo-book-now:hover { filter: brightness(1.08); transform: translateY(-1px); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
  margin: 50px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(185,130,78,0.25);
  border-bottom: 1px solid rgba(185,130,78,0.25);
}
.stat-number { display: block; font-family: 'Georgia', serif; font-size: 2.4rem; color: var(--gold-dark); font-weight: 700; }
.stat-label { color: var(--silver); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

.about-cta { text-align: center; margin-top: 40px; }

/* ---------- Trust Badges & Contact Info ---------- */
.trust-badges-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 0;
  text-align: center;
}
.trust-badges-bar.inline { padding: 24px 0 0; max-width: none; }
.trust-badges-label { color: var(--silver); font-size: 0.85rem; margin-bottom: 10px; }
.trust-badges-icons { display: flex; justify-content: center; gap: 18px; }
.trust-badges-icons i { font-size: 2rem; color: var(--gold-dark); }

.home-contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 50px;
  text-align: center;
}

.home-contact-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.contact-info-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}
.contact-info-item {
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: 0 4px 16px rgba(74,46,26,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-info-item i { font-size: 1.6rem; color: var(--gold-dark); margin-bottom: 10px; display: block; }
.contact-info-item h3 { margin: 0 0 6px; font-size: 1.05rem; }
.contact-info-item p { margin: 0; color: var(--navy-900); font-size: 0.92rem; }

/* ---------- Footer Social Icons ---------- */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  color: var(--navy-900);
  font-size: 0.85rem;
  transition: filter 0.2s, transform 0.2s;
}
.footer-social a:hover { filter: brightness(1.12); transform: translateY(-2px); color: var(--navy-900); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-alt);
  border-top: 1px solid rgba(185, 130, 78, 0.3);
  padding: 50px 24px 20px;
  margin-top: 60px;
  color: var(--navy-900);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer-legal-heading { margin-top: 22px; }
.footer-contact li { color: var(--silver); font-size: 0.88rem; }
.footer-contact a { color: var(--silver); font-size: inherit; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-brand p { color: var(--silver); font-size: 0.88rem; max-width: 320px; }
.footer-brand p + p { margin-top: 10px; }
.footer-logo { height: 56px; margin-bottom: 14px; }

.footer-col h4 {
  color: var(--gold-dark);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul, .locations-matrix {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a { color: var(--silver); font-size: 0.88rem; }
.footer-col a:hover { color: var(--gold-light); }

.footer-badges {
  max-width: 1280px;
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badge {
  font-size: 0.75rem;
  color: var(--silver);
  border: 1px solid rgba(138, 117, 99, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 26px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(138, 117, 99, 0.2);
  color: rgba(74, 46, 26, 0.7);
  font-size: 0.8rem;
  text-align: center;
}

/* ---------- Responsive ---------- */
/* ---------- Service Detail Gallery ---------- */
.service-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0 30px;
}
.service-detail-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(185,130,78,0.25);
}

/* ---------- Service Detail: Benefits & FAQ ---------- */
.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 30px;
}
.service-benefit-card {
  background: var(--cream);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.service-benefit-card i {
  font-size: 1.3rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy-800);
  line-height: 1.5;
}
.service-faq {
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-faq-item {
  background: var(--cream);
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
}
.service-faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.0rem;
  color: var(--navy-900);
  font-weight: 700;
}
.service-faq-item p {
  margin: 0;
  font-size: 0.93rem;
  color: #5A3A1E;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .service-benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- Home SEO Content Section ---------- */
.home-seo-content {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.home-seo-content h2 {
  text-align: center;
  margin-bottom: 36px;
}
.home-seo-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.home-seo-body p {
  color: var(--navy-900);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.home-seo-body strong { color: var(--navy-900); }
.home-seo-body a:not(.bb-submit) { color: var(--gold-dark); text-decoration: underline; }
.home-seo-sidebar {
  background: var(--cream);
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: sticky;
  top: 90px;
}
.home-seo-sidebar h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin: 0 0 14px;
}
.home-seo-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-seo-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--navy-800);
}
.home-seo-links li i {
  color: var(--gold-dark);
  font-size: 0.85rem;
  width: 16px;
  flex-shrink: 0;
}
.home-seo-links a {
  color: var(--navy-800);
  text-decoration: none;
}
.home-seo-links a:hover { color: var(--gold-dark); }
@media (max-width: 860px) {
  .home-seo-grid { grid-template-columns: 1fr; }
  .home-seo-sidebar { position: static; }
}

/* ---------- SEO Text Collapsible Box ---------- */
.home-seo-text-box {
  background: #FBF6EF;
  border: 1px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 20px 24px 16px;
  margin-bottom: 4px;
}

.home-seo-expandable {
  display: none;
  overflow: hidden;
}

.home-seo-expandable.open {
  display: block;
}

.home-seo-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid rgba(185,130,78,0.4);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 16px;
  margin-top: 10px;
  font-family: inherit;
  transition: background 0.2s;
}
.home-seo-expand-btn:hover { background: rgba(185,130,78,0.1); }
.home-seo-expand-btn i { transition: transform 0.25s; font-size: 0.75rem; }
.home-seo-expand-btn[aria-expanded="true"] i { transform: rotate(180deg); }

/* ---------- Help Page Layout ---------- */
.help-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.help-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.help-capsule-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(185,130,78,0.25);
}
.help-capsule-bar:hover { filter: brightness(1.08); transform: translateY(-2px); color: var(--navy-900); }
.help-capsule-bar i { font-size: 1.05rem; flex-shrink: 0; }
.help-capsule-bar-label { line-height: 1.2; }
.help-capsule-bar-label small { display: block; font-weight: 400; font-size: 0.75rem; color: var(--navy-800); opacity: 0.8; }

/* ---------- FAQ Accordion (2 visible per category) ---------- */
.faq-item.faq-hidden { display: none; }
.faq-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(185,130,78,0.4);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 7px 18px;
  margin-top: 14px;
  transition: background 0.2s, color 0.2s;
}
.faq-expand-btn:hover { background: rgba(185,130,78,0.1); }
.faq-expand-btn i { transition: transform 0.2s; }
.faq-expand-btn.expanded i { transform: rotate(180deg); }

/* ---------- Help Page Inline CTA / "Didn't Find" Bar ---------- */
.inline-help-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--navy-900) 0%, #5A3820 100%);
  border-radius: 999px;
  padding: 16px 28px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.inline-help-cta p {
  color: var(--gold-light);
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.inline-help-cta a {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  color: var(--navy-900);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  text-decoration: none;
}
.inline-help-cta a:hover { filter: brightness(1.08); color: var(--navy-900); }

.didnt-find-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.3);
  border-radius: 999px;
  padding: 14px 28px;
  margin: 40px 0 30px;
}
.didnt-find-bar p { margin: 0; font-size: 0.95rem; font-weight: 600; color: var(--navy-900); }
.didnt-find-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---------- Booking Form Box ---------- */
.booking-form-box {
  background: var(--cream-alt);
  border: 1px solid rgba(185,130,78,0.3);
  border-radius: var(--radius);
  padding: 32px 36px;
  max-width: 760px;
  margin: 30px 0;
  box-shadow: 0 4px 24px rgba(74,46,26,0.08);
}
.booking-form-box h2 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--navy-900);
}

/* ---------- Payment Method Section ---------- */
.payment-method-section {
  margin-top: 28px;
}
.payment-method-section h3 {
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.payment-method-section h3 i { color: var(--gold-dark); }
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 760px;
}
.payment-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--cream-alt);
  border: 2px solid rgba(185,130,78,0.25);
  border-radius: var(--radius);
  padding: 16px 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 0.82rem;
  color: var(--silver);
  font-weight: 600;
}
.payment-method-card i { font-size: 2.2rem; color: var(--gold-dark); }
.payment-method-card input[type="radio"] { display: none; }
.payment-method-card:has(input:checked),
.payment-method-card.selected {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(185,130,78,0.15);
  color: var(--navy-900);
}

/* ---------- Contact Page Header ---------- */
.contact-page-header {
  text-align: center;
  padding: 50px 24px 30px;
  background: linear-gradient(135deg, var(--navy-900) 0%, #5A3820 100%);
  color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 36px;
}
.contact-page-header h1,
.contact-page-header h2 {
  color: var(--gold-light);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 10px;
}
.contact-page-header p {
  color: var(--gold-light);
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(243, 232, 218, 0.97);
    backdrop-filter: blur(14px);
    padding: 16px 24px;
    gap: 14px;
    border-bottom: 1px solid rgba(185, 130, 78, 0.25);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .help-layout { grid-template-columns: 1fr; }
  .help-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .help-capsule-bar { flex: 1 1 180px; }
  .service-grid-9 { grid-template-columns: repeat(2, 1fr); }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .booking-box-summary { flex-direction: column; align-items: stretch; }
  .bb-field { display: none; }
  .bb-expand-toggle { margin-left: 0; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-inner { padding: 10px 16px; }
  .service-grid-9 { grid-template-columns: 1fr; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .inline-help-cta { border-radius: var(--radius); flex-direction: column; align-items: flex-start; }
  .didnt-find-bar { border-radius: var(--radius); flex-direction: column; align-items: flex-start; }
  .booking-form-box { padding: 20px 18px; }
}
