@import url('https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.2.3/css/flag-icons.min.css');

/* ============================================================
   NYC HORSE CARRIAGE RIDES — style.css v3.0
   Final brand color system — Luxury Central Park Experience
   ============================================================ */

/* ─── 1. DESIGN TOKENS ─── */
:root {
  /* Primary Navy */
  --c-primary:       #13293D;
  --c-primary-dark:  #0B1F30;
  --c-primary-hover: #1D3A56;
  --c-primary-light: #274C77;
  --c-primary-50:    #EEF2F6;
  --c-primary-100:   #D8E2EA;

  /* Luxury Gold */
  --c-gold:        #D4A854;
  --c-gold-hover:  #C1943F;
  --c-gold-light:  #F4E6BE;
  --c-gold-soft:   #FBF6EA;
  --c-accent:      #D4A854;
  --c-accent-bg:   #FBF6EA;
  --c-gold-bg:     #FBF6EA;

  /* Forest Green — Central Park & nature only */
  --c-green:       #355E3B;
  --c-green-hover: #2C4D31;
  --c-green-bg:    #EAF3EB;

  /* Surfaces */
  --c-bg:           #FAFAF8;
  --c-bg-section:   #F5F5F2;
  --c-bg-blue:      #F5F5F2;
  --c-bg-warm:      #F8F7F4;
  --c-surface:      #FFFFFF;
  --c-surface-soft: #F8F7F4;
  --c-white:        #FFFFFF;

  /* Text */
  --c-text:           #1F2937;
  --c-text-secondary: #4B5563;
  --c-text-muted:     #64748B;
  --c-text-light:     #94A3B8;

  /* Borders */
  --c-border:        #E5E7EB;
  --c-border-light:  #E5E7EB;
  --c-border-medium: #D1D5DB;
  --c-border-dark:   #CBD5E1;

  /* Status */
  --c-success:    #16A34A;
  --c-success-bg: #ECFDF3;
  --c-warning:    #F59E0B;
  --c-warning-bg: #FFFBEB;
  --c-error:      #DC2626;
  --c-danger-bg:  #FEF2F2;
  --c-info:       #2563EB;
  --c-info-bg:    #EFF6FF;

  /* Legacy aliases */
  --c-orange:    #D4A854;
  --c-pink-bg:   #FBF6EA;
  --c-purple-bg: #FBF6EA;

  --focus-ring: rgba(19, 41, 61, .12);
  --overlay-navy: rgba(19, 41, 61, .45);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --topbar-h: 34px;
  --header-h: 64px;

  --sp-1:  .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5:  1.25rem;--sp-6: 1.5rem; --sp-8: 2rem;   --sp-10:2.5rem;
  --sp-12: 3rem;   --sp-16:4rem;   --sp-20:5rem;

  --r-sm:   4px;  --r-base:8px;  --r-md: 12px;
  --r-lg:  16px;  --r-xl: 20px;  --r-full:9999px;

  --sh-sm:         0 1px 3px rgba(19,41,61,.06);
  --sh-base:       0 2px 8px rgba(19,41,61,.07);
  --sh-md:         0 4px 16px rgba(19,41,61,.08);
  --sh-lg:         0 8px 28px rgba(19,41,61,.10);
  --sh-card:       0 2px 12px rgba(19,41,61,.06);
  --sh-card-hover: 0 12px 32px rgba(19,41,61,.12);

  --tr-fast: all .15s ease;
  --tr-base: all .25s ease;
  --tr-slow: all .4s ease;

  --container-max: 1200px;
}

/* ─── 2. RESET / BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  min-height: 100vh;
  padding-top: var(--topbar-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ─── 3. TYPOGRAPHY ─── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text);
}
h1 { font-size: clamp(1.75rem,4vw,2.5rem); }
h2 { font-size: clamp(1.4rem,3vw,2rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--c-text-muted); }

/* ─── 4. CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width:576px)  { .container { padding: 0 1.5rem; } }
@media (min-width:1280px) { .container { padding: 0 2rem; } }

/* ─── 5. SECTION HELPERS ─── */
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-bg-blue { background: var(--c-bg-section); }
.section-bg      { background: var(--c-bg-section); }
.section-white   { background: var(--c-white); }
.section-park    { background: var(--c-green-bg); }

.section-header  { margin-bottom: 2.5rem; }
.section-title   { font-size: clamp(1.3rem,3vw,1.75rem); font-weight: 700; color: var(--c-text); margin-bottom: .5rem; }
.section-subtitle{ color: var(--c-text-muted); font-size: .9375rem; }

.section-label {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--c-primary); background: var(--c-gold-soft);
  border: 1px solid var(--c-gold-light);
  padding: .28rem .75rem; border-radius: var(--r-full); margin-bottom: .75rem;
}

/* ─── 6. TOPBAR ─── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--c-surface-soft);
  border-bottom: 1px solid var(--c-border-light);
  font-size: .72rem; color: var(--c-text-muted);
  z-index: 1000;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 1rem;
  max-width: var(--container-max); margin: 0 auto;
}
.topbar-left { display: flex; align-items: center; gap: .45rem; font-weight: 500; }
.topbar-left i { color: var(--c-primary); font-size: .7rem; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-link {
  display: flex; align-items: center; gap: .3rem;
  color: var(--c-text-muted); transition: var(--tr-fast);
}
.topbar-link:hover { color: var(--c-primary); }

/* ─── 7. MAIN HEADER ─── */
#site-header {
  position: sticky;
  top: var(--topbar-h);
  height: var(--header-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: none;
  z-index: 900;
  transition: box-shadow .25s;
}
#site-header.scrolled { box-shadow: 0 2px 12px rgba(31,41,55,.07); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
}
/* Logo */
.site-logo {
  display: flex; align-items: center; gap: .6rem;
  flex-shrink: 0; text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--c-primary);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white); font-size: 1rem; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: .875rem; font-weight: 800; color: var(--c-text); }
.logo-sub  { font-size: .62rem; color: var(--c-text-muted); font-weight: 500; }

/* Main Nav */
.main-nav { display: none; align-items: center; gap: .1rem; }
@media (min-width:992px) { .main-nav { display: flex; } }
.main-nav a {
  font-size: .8375rem; font-weight: 500; color: var(--c-text-muted);
  padding: .4rem .7rem; border-radius: var(--r-base);
  transition: var(--tr-fast); white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--c-primary); background: var(--c-primary-50);
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.header-phone {
  display: none; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--c-text);
  text-decoration: none;
}

/* Language switcher */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  height: 36px; padding: 0 .7rem 0 .6rem;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-md); font-size: .78rem; font-weight: 700;
  color: var(--c-text); transition: var(--tr-fast); line-height: 1;
}
.lang-switcher-btn:hover,
.lang-switcher.open .lang-switcher-btn {
  border-color: var(--c-primary); color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.lang-switcher-btn .fi {
  width: 20px; height: 15px; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15,23,42,.1);
  flex-shrink: 0;
}
.lang-code { letter-spacing: .05em; min-width: 1.35rem; text-align: center; }
.lang-chevron { font-size: .55rem; color: var(--c-text-muted); transition: transform .2s ease; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); color: var(--c-primary); }
.lang-switcher-menu {
  position: absolute; top: calc(100% + .4rem); right: 0;
  min-width: 132px; margin: 0; padding: .35rem; list-style: none;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-md); box-shadow: var(--sh-md);
  z-index: 1100;
}
.lang-switcher-menu[hidden] { display: none; }
.lang-switcher-menu li {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .6rem; border-radius: var(--r-base);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--c-text); cursor: pointer; transition: var(--tr-fast);
}
.lang-switcher-menu li .fi {
  width: 20px; height: 15px; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15,23,42,.1); flex-shrink: 0;
}
.lang-switcher-menu li:hover,
.lang-switcher-menu li[aria-selected="true"] {
  background: var(--c-primary-50); color: var(--c-primary);
}
.header-phone i { color: var(--c-primary); }
@media (min-width:1100px) { .header-phone { display: flex; } }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 36px; height: 36px; border-radius: var(--r-base);
  transition: var(--tr-fast);
}
@media (min-width:992px) { .hamburger { display: none; } }
.hamburger span {
  width: 21px; height: 2px; background: var(--c-text);
  border-radius: 2px; transition: var(--tr-base); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── 8. MOBILE NAV (Offcanvas) ─── */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: var(--overlay-navy);
  z-index: 950; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed; top: 0; left: 0;
  width: min(300px,88vw); height: 100vh;
  background: var(--c-white);
  z-index: 960; transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-border-light); flex-shrink: 0;
}
.mobile-nav-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--c-bg); color: var(--c-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--tr-fast);
}
.mobile-nav-close:hover { background: var(--c-border); color: var(--c-text); }
.mobile-nav-links { flex: 1; padding: .5rem 0; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1.5rem;
  font-size: .9rem; font-weight: 500; color: var(--c-text);
  border-left: 3px solid transparent; transition: var(--tr-fast);
}
.mobile-nav-links a i { width: 16px; color: var(--c-text-muted); font-size: .825rem; text-align: center; }
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--c-primary); background: var(--c-primary-50); border-left-color: var(--c-primary);
}
.mobile-nav-links a.active i, .mobile-nav-links a:hover i { color: var(--c-primary); }
.mobile-nav-footer { padding: 1.25rem; border-top: 1px solid var(--c-border-light); flex-shrink: 0; }

/* ─── 9. BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 44px; padding: .6rem 1.4rem;
  font-family: var(--font-sans); font-size: .875rem; font-weight: 600; line-height: 1.3;
  border-radius: var(--r-base); border: 2px solid transparent;
  cursor: pointer; transition: var(--tr-base); white-space: nowrap;
  text-decoration: none; vertical-align: middle;
}
.btn:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; }

.btn-primary { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }
.btn-primary:hover {
  background: var(--c-primary-hover); border-color: var(--c-primary-hover); color: var(--c-white);
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(19,41,61,.18);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-outline-primary { background: var(--c-white); border-color: var(--c-primary); color: var(--c-primary); }
.btn-outline-primary:hover { background: var(--c-surface-soft); color: var(--c-primary); border-color: var(--c-primary); }

.btn-white { background: var(--c-white); border-color: var(--c-white); color: var(--c-primary); font-weight: 700; }
.btn-white:hover { background: var(--c-surface-soft); color: var(--c-primary); }

.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.5); color: var(--c-white); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--c-white); }

.btn-gold { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-primary); font-weight: 700; }
.btn-gold:hover { background: var(--c-gold-hover); border-color: var(--c-gold-hover); color: var(--c-primary); }

.btn-light { background: var(--c-bg); border-color: var(--c-border); color: var(--c-text); }
.btn-light:hover { background: var(--c-border-light); }

.btn-success { background: var(--c-success); border-color: var(--c-success); color: var(--c-white); }
.btn-success:hover { background: #145e2e; border-color: #145e2e; color: var(--c-white); }

.btn-sm  { min-height: 36px; padding: .38rem .9rem; font-size: .8rem; }
.btn-lg  { min-height: 50px; padding: .8rem 2rem; font-size: .95rem; }
.btn-xl  { min-height: 54px; padding: .95rem 2.5rem; font-size: 1.025rem; }

/* ─── 10. FORM CONTROLS ─── */
.form-control, .form-select {
  display: block; width: 100%;
  min-height: 44px; padding: .62rem 1rem;
  font-family: var(--font-sans); font-size: .9rem;
  color: var(--c-text); background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-base); outline: none;
  transition: var(--tr-fast); line-height: 1.5;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.form-control.error   { border-color: var(--c-error); background: var(--c-danger-bg); }
.form-control.success { border-color: var(--c-success); }
.form-control::placeholder { color: var(--c-text-light); }
textarea.form-control { min-height: 110px; resize: vertical; }

.form-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 fill='%23627d98' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
  padding-right: 2.5rem;
}

.form-label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--c-text); margin-bottom: .35rem;
}
.form-error {
  font-size: .73rem; color: var(--c-error);
  margin-top: .25rem; display: none;
}
.form-error.visible { display: block; }
.form-group { margin-bottom: 1.2rem; }

/* ─── 11. BADGES / TAGS ─── */
.badge {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .68rem; font-weight: 700;
  padding: .22rem .6rem; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: .05em; white-space: nowrap;
}
.badge-primary  { background: var(--c-primary-50);  color: var(--c-primary); }
.badge-gold     { background: var(--c-gold-soft);    color: var(--c-primary); }
.badge-green    { background: var(--c-green-bg);     color: var(--c-green); }
.badge-orange   { background: var(--c-gold-soft);   color: var(--c-primary); }
.badge-popular  { background: var(--c-gold-soft);   color: var(--c-primary); }
.badge-romantic { background: var(--c-gold-soft);   color: var(--c-primary); }
.badge-proposal { background: var(--c-gold-soft);   color: var(--c-primary); }
.badge-family   { background: var(--c-green-bg);    color: var(--c-green); }
.badge-best     { background: var(--c-gold-soft);   color: var(--c-primary); }
.badge-christmas { background: var(--c-green-bg);  color: var(--c-green); border: 1px solid rgba(53,94,59,.15); }

.stars       { color: var(--c-gold); letter-spacing: .05em; font-size: .875rem; }
.rating-wrap { display: flex; align-items: center; gap: .4rem; }
.rating-num  { font-size: .8rem; font-weight: 700; color: var(--c-text); }
.rating-count{ font-size: .75rem; color: var(--c-text-muted); }

/* ─── 12. PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--c-white);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--c-border-light);
}
.page-hero h1 { font-size: clamp(1.5rem,3.5vw,2.1rem); }

.breadcrumb-nav {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
  font-size: .775rem; color: var(--c-text-muted); margin-bottom: .65rem;
}
.breadcrumb-nav a { color: var(--c-text-muted); transition: var(--tr-fast); }
.breadcrumb-nav a:hover { color: var(--c-primary); }
.breadcrumb-nav .sep { font-size: .6rem; color: var(--c-border); }

/* ─── 13. HOMEPAGE HERO ─── */
.hero {
  background: var(--c-primary-dark);
  border-bottom: none;
  position: relative; overflow: hidden;
  padding: 1.5rem 0 3.5rem;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('../img/nyc-hero.webp') center/cover no-repeat;
  opacity: 1; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,31,48,.08) 0%,
    rgba(11,31,48,.22) 55%,
    rgba(11,31,48,.38) 100%
  );
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-panel {
  position: relative; z-index: 1;
  max-width: 980px; margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.hero-content {
  text-align: center;
  padding: 2.25rem 1.25rem 1.5rem;
}
@media (min-width:768px) {
  .hero-content { padding: 2.75rem 2rem 1.75rem; }
}
.hero-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--c-primary); background: var(--c-primary-50);
  border: 1px solid var(--c-primary-100);
  padding: .32rem .9rem; border-radius: var(--r-full); margin-bottom: 1.1rem;
}
.hero h1 {
  color: var(--c-text); margin-bottom: .85rem; font-weight: 800;
  letter-spacing: -.02em; line-height: 1.15;
}
.hero-subtitle {
  font-size: clamp(.9rem,2vw,1.02rem);
  color: var(--c-text-muted); max-width: 560px;
  margin: 0 auto 1.5rem; line-height: 1.65;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width:768px) {
  .hero-trust { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .65rem; }
}
.hero-trust-item {
  display: flex; align-items: center; gap: .55rem;
  text-align: left;
  background: var(--c-bg-section);
  border: 1px solid var(--c-border-light);
  padding: .65rem .7rem;
  border-radius: var(--r-md);
  transition: var(--tr-fast);
}
.hero-trust-item:hover {
  border-color: var(--c-primary-100);
  box-shadow: var(--sh-sm);
}
.hero-trust-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-white); color: var(--c-primary);
  border: 1px solid var(--c-primary-100);
  border-radius: 10px; font-size: .82rem;
}
.hero-trust-icon--gold {
  color: var(--c-gold); border-color: var(--c-gold-light);
  background: var(--c-gold-soft);
}
.hero-trust-copy {
  display: flex; flex-direction: column; gap: .05rem; min-width: 0;
}
.hero-trust-copy strong {
  font-size: .76rem; font-weight: 800; color: var(--c-text); line-height: 1.2;
}
.hero-trust-copy span {
  font-size: .64rem; font-weight: 600; color: var(--c-text-muted); line-height: 1.2;
}

/* ─── 14. SEARCH WIDGET ─── */
.search-widget {
  background: var(--c-bg-section);
  border-top: 1px solid var(--c-border-light);
  overflow: hidden;
  max-width: none; margin: 0;
  border-radius: 0; box-shadow: none; border-left: none; border-right: none; border-bottom: none;
}
.search-tabs {
  display: flex; gap: .35rem;
  padding: .7rem .85rem 0;
  background: transparent; overflow-x: auto; scrollbar-width: none;
}
.search-tabs::-webkit-scrollbar { display: none; }
.search-tab {
  flex: 1 0 auto; min-width: 88px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .22rem;
  padding: .62rem .55rem .58rem;
  font-size: .7rem; font-weight: 700; color: var(--c-text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-md) var(--r-md) 0 0;
  cursor: pointer;
  transition: var(--tr-fast); white-space: nowrap;
}
.search-tab i { font-size: .92rem; }
.search-tab:hover { color: var(--c-primary); background: rgba(255,255,255,.55); }
.search-tab.active {
  color: var(--c-primary); background: var(--c-white);
  border-color: var(--c-border-light);
  border-bottom-color: var(--c-white);
  box-shadow: 0 -2px 8px rgba(31,41,55,.04);
  position: relative; z-index: 1;
}
.search-form {
  padding: 1rem 1rem 1.15rem;
  background: var(--c-white);
  border-top: 1px solid var(--c-border-light);
}
@media (min-width:768px) { .search-form { padding: 1.1rem 1.25rem 1.25rem; } }
.search-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  align-items: end;
}
@media (min-width:768px) {
  .search-fields {
    grid-template-columns: 1.1fr 1fr 1fr auto;
    gap: .75rem;
  }
}
.search-field { min-width: 0; }
.search-field-label {
  font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--c-text-muted);
  margin-bottom: .32rem; display: flex; align-items: center; gap: .3rem;
}
.search-field-label i { color: var(--c-primary); font-size: .68rem; }
.search-field .form-control,
.search-field .form-select,
.search-field select {
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  font-size: .84rem; font-weight: 600; color: var(--c-text);
  padding: 0 .85rem;
  transition: var(--tr-fast);
}
.search-field .form-control:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.search-btn-wrap { width: 100%; }
.search-btn-wrap .btn {
  height: 44px; width: 100%;
  font-weight: 700; border-radius: var(--r-md);
  box-shadow: 0 4px 14px rgba(19,41,61,.16);
}
@media (min-width:768px) {
  .search-btn-wrap { width: auto; min-width: 168px; }
}

/* ─── 15. TRUST BAR ─── */
.trust-bar {
  background: var(--c-white);
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem 1.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: .7rem;
  font-size: .78rem; font-weight: 600; color: var(--c-text);
  line-height: 1.35;
}
.trust-item i {
  width: 42px; height: 42px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-primary-50); color: var(--c-primary);
  border: 1px solid var(--c-primary-100);
  border-radius: 12px; font-size: .95rem;
}
/* Reviews item gets gold accent */
.trust-item i.fa-star {
  background: var(--c-gold-soft); color: var(--c-gold);
  border-color: var(--c-gold-light);
}
@media (max-width: 991px) {
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); justify-items: start; }
}
@media (max-width: 575px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: .85rem 1rem; }
  .trust-item { font-size: .73rem; }
  .trust-item i { width: 36px; height: 36px; font-size: .85rem; }
}

/* ─── 16. FEATURE CARDS (3-col mini) ─── */
.feature-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 1.75rem;
  box-shadow: var(--sh-card); transition: var(--tr-base);
  display: flex; gap: 1.1rem; align-items: flex-start;
  height: 100%;
}
.feature-card:hover { border-color: var(--c-gold); box-shadow: var(--sh-card-hover); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--r-md);
  background: var(--c-surface-soft); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.feature-body h4 { font-size: .95rem; font-weight: 700; color: var(--c-text); margin-bottom: .35rem; }
.feature-body p  { font-size: .85rem; color: var(--c-text-muted); margin: 0; line-height: 1.55; }

/* ─── 17. FEATURED BANNER ─── */
.featured-banner {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-card);
  display: grid; grid-template-columns: 1fr 1fr; min-height: 260px;
}
@media (max-width:767px) { .featured-banner { grid-template-columns: 1fr; } }
.featured-banner-img { position: relative; overflow: hidden; min-height: 180px; }
.featured-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-banner-body {
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: .9rem;
}
.featured-banner-body h3 { color: var(--c-text); font-size: 1.4rem; font-weight: 700; margin: 0; }
.featured-banner-body p  { color: var(--c-text-muted); font-size: .9rem; margin: 0; }
/* light banner: remap white buttons to primary/outline */
.featured-banner .btn-white {
  background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white);
}
.featured-banner .btn-white:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); color: var(--c-white); }
.featured-banner .btn-outline-white {
  background: transparent; border-color: var(--c-primary); color: var(--c-primary);
}
.featured-banner .btn-outline-white:hover { background: var(--c-primary-50); border-color: var(--c-primary-dark); color: var(--c-primary-dark); }

/* ─── 17b. MINI RIDE CARDS (featured banner side) ─── */
.mini-ride-stack { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.mini-ride-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); box-shadow: var(--sh-card);
  overflow: hidden; display: flex; flex: 1; min-height: 124px;
  transition: var(--tr-base);
}
.mini-ride-card:hover { box-shadow: var(--sh-card-hover); transform: translateY(-2px); }
.mini-ride-img { position: relative; width: 118px; flex-shrink: 0; }
.mini-ride-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-ride-badge { position: absolute; top: .5rem; left: .5rem; }
.mini-ride-body {
  flex: 1; min-width: 0; padding: 1rem 1.15rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.mini-ride-title { font-size: .9rem; font-weight: 700; color: var(--c-text); line-height: 1.3; }
.mini-ride-meta  { font-size: .78rem; color: var(--c-text-muted); }
.mini-ride-actions {
  margin-top: auto; padding-top: .6rem;
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
}
.mini-ride-price { font-size: 1rem; font-weight: 700; color: var(--c-text); }
.mini-ride-links { display: flex; align-items: center; gap: .75rem; }
.mini-ride-links .view-detail-link { font-size: .78rem; }
.mini-ride-links .btn { font-size: .75rem; padding: .32rem .8rem; min-height: 32px; }

/* ─── 18. RIDE CARD (grid) ─── */
.ride-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); box-shadow: var(--sh-card);
  overflow: hidden; transition: var(--tr-base);
  display: flex; flex-direction: column; height: 100%;
}
.ride-card:hover {
  border-color: var(--c-gold);
  box-shadow: var(--sh-card-hover);
  transform: translateY(-3px);
}
/* Tour cover photos are portrait (2:3) — frame matches the photo ratio so it fits fully, no crop */
.ride-card-img { position: relative; aspect-ratio: 2/3; overflow: hidden; }
.ride-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ride-card:hover .ride-card-img img { transform: scale(1.05); }
.ride-card-badge { position: absolute; top: .65rem; left: .65rem; z-index: 2; }
.ride-card-img-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-wrap: wrap; gap: .4rem;
  padding: 2rem .65rem .65rem;
  background: linear-gradient(180deg, transparent 0%, rgba(19,41,61,.72) 100%);
}
.ride-card-img-meta-item {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; font-weight: 700; color: #fff;
  background: rgba(19,41,61,.55);
  border: 1px solid rgba(255,255,255,.2);
  padding: .24rem .55rem;
  border-radius: var(--r-full);
  line-height: 1.2;
}
.ride-card-img-meta-item i { font-size: .65rem; opacity: .95; }
.ride-card-body {
  padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .5rem;
}
.ride-card-title { font-size: .9375rem; font-weight: 700; color: var(--c-text); line-height: 1.3; }
.ride-card-meta { display: flex; gap: .85rem; flex-wrap: wrap; }
.ride-card-meta-item {
  display: flex; align-items: center; gap: .28rem;
  font-size: .755rem; color: var(--c-text-muted); font-weight: 500;
}
.ride-card-meta-item i { color: var(--c-primary); font-size: .7rem; }
.ride-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-top: 1px solid var(--c-border-light);
  background: var(--c-bg-section);
}
.ride-card-actions {
  display: flex; flex-direction: column; align-items: stretch; gap: .4rem;
  min-width: 7.5rem;
}
.ride-card-actions .btn { width: 100%; justify-content: center; white-space: nowrap; }
.ride-card-price .price-from   { font-size: .6rem; color: var(--c-text-muted); font-weight: 600; text-transform: uppercase; }
.ride-card-price .price-amount { font-size: 1.25rem; font-weight: 800; color: var(--c-text); line-height: 1; }
.ride-card-price .price-per    { font-size: .68rem; color: var(--c-text-muted); }

/* ─── 19. HOW IT WORKS ─── */
.how-step {
  text-align: center; padding: 2rem 1.75rem;
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); box-shadow: var(--sh-card);
  height: 100%; transition: var(--tr-base);
}
.how-step:hover { box-shadow: var(--sh-card-hover); transform: translateY(-2px); }
.how-step-num {
  width: 52px; height: 52px; background: var(--c-primary-50); color: var(--c-primary);
  border: 1px solid var(--c-primary-100);
  border-radius: 50%; font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.how-step h4 { font-size: .95rem; font-weight: 700; color: var(--c-text); margin-bottom: .5rem; }
.how-step p  { font-size: .85rem; color: var(--c-text-muted); margin: 0; line-height: 1.55; }

/* ─── 20. ROUTE CARD (clean white card + landmark chips) ─── */
.route-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  overflow: hidden;
}
.route-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.route-card-img img { width: 100%; height: 100%; object-fit: cover; }
.route-card-body { padding: 1.75rem; }
.route-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--c-text); margin: 0 0 1rem; }
.route-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.route-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--c-primary-50); border: 1px solid var(--c-primary-100);
  color: var(--c-text); padding: .34rem .85rem;
  border-radius: var(--r-full); font-size: .75rem; font-weight: 600;
}
.route-pill i { color: var(--c-primary); font-size: .7rem; }

/* Numbered route timeline */
.route-steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.route-step {
  position: relative;
  display: flex; align-items: flex-start; gap: .9rem;
  padding-bottom: 1.1rem;
  font-size: .875rem; color: var(--c-text-muted); line-height: 1.55;
}
.route-step:last-child { padding-bottom: 0; }
.route-step::before {
  content: '';
  position: absolute; left: 14px; top: 30px; bottom: 2px;
  width: 2px; background: var(--c-primary-100);
}
.route-step:last-child::before { display: none; }
.route-step-num {
  width: 29px; height: 29px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-primary-50); border: 1px solid var(--c-primary-100);
  color: var(--c-primary); font-size: .74rem; font-weight: 700;
  border-radius: 50%; position: relative; z-index: 1;
}
.route-step strong { color: var(--c-text); font-weight: 600; }

/* ─── 21. HELP ME CHOOSE ─── */
.help-box {
  background: var(--c-bg-warm); border: 1px solid #FFE0C2;
  border-radius: var(--r-xl); padding: 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.help-box-content { flex: 1; min-width: 220px; }
.help-box-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--c-text); margin-bottom: .4rem; }
.help-box-content p  { color: var(--c-text-muted); font-size: .875rem; }
.help-thumbnails { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1.1rem; }
.help-thumb {
  display: flex; flex-direction: column;
  border-radius: var(--r-md); overflow: hidden;
  border: 2px solid var(--c-white); box-shadow: var(--sh-sm);
  cursor: pointer; transition: var(--tr-fast);
  text-decoration: none; color: inherit;
}
.help-thumb:hover { transform: scale(1.04); border-color: var(--c-gold); }
.help-thumb img { width: 55px; height: 75px; object-fit: cover; display: block; }
.help-thumb-label {
  font-size: .62rem; font-weight: 700; text-align: center;
  padding: .22rem; background: var(--c-white); color: var(--c-text-muted);
}

/* ─── 22. REVIEW CARD ─── */
.review-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); padding: 1.35rem;
  box-shadow: var(--sh-card); transition: var(--tr-base);
  display: flex; flex-direction: column; gap: .7rem; height: 100%;
}
.review-card:hover { box-shadow: var(--sh-md); }
.review-header  { display: flex; align-items: flex-start; gap: .7rem; }
.review-avatar  {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-primary-50); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700; flex-shrink: 0;
}
.review-info    { flex: 1; }
.review-name    { font-size: .85rem; font-weight: 700; color: var(--c-text); line-height: 1.2; }
.review-location{ font-size: .73rem; color: var(--c-text-muted); }
.review-platform{ font-size: .68rem; color: var(--c-text-light); white-space: nowrap; }
.review-stars   { font-size: .85rem; }
.review-text    { font-size: .85rem; color: var(--c-text-muted); line-height: 1.7; flex: 1; }
.review-footer-info {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  flex-wrap: wrap; padding-top: .65rem;
  border-top: 1px solid var(--c-border-light); font-size: .73rem; color: var(--c-text-muted);
}
.review-tour-tag {
  background: var(--c-primary-50); color: var(--c-primary);
  padding: .18rem .6rem; border-radius: var(--r-full); font-size: .68rem; font-weight: 600;
}

/* ─── 23. FAQ ─── */
.faq-item {
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md); background: var(--c-white);
  margin-bottom: .45rem; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem;
  font-size: .9rem; font-weight: 600; color: var(--c-text);
  background: none; border: none; cursor: pointer; transition: var(--tr-fast);
}
.faq-question:hover { color: var(--c-primary); background: var(--c-primary-50); }
.faq-question.open  { color: var(--c-primary); background: var(--c-primary-50); }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--c-bg-blue); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center; font-size: .7rem;
  transition: transform .3s ease;
}
.faq-question.open .faq-icon { transform: rotate(180deg); background: var(--c-primary); color: var(--c-white); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: .875rem; color: var(--c-text-muted); line-height: 1.8;
}
.faq-answer.open { max-height: 400px; padding: 0 1.2rem 1.2rem; }

/* ─── 24. NEWSLETTER BAND ─── */
.newsletter-band {
  background: var(--c-white);
  border: 1px solid var(--c-border); border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.newsletter-body { flex: 1; min-width: 200px; }
.newsletter-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-text); margin-bottom: .35rem; }
.newsletter-body p  { color: var(--c-text-muted); font-size: .875rem; margin: 0; }
.newsletter-form { display: flex; gap: .5rem; flex: 1; min-width: 260px; }
.newsletter-form .form-control { flex: 1; }

/* ─── 25. CTA BANNER (light, corporate) ─── */
.cta-banner {
  background: var(--c-bg-section);
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
  padding: 5rem 0; text-align: center;
}
.cta-banner h2 { color: var(--c-text); margin-bottom: .9rem; }
.cta-banner p  { color: var(--c-text-muted); font-size: .95rem; margin-bottom: 2rem; }
/* light banner: remap white buttons to primary/outline */
.cta-banner .btn-white {
  background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white);
}
.cta-banner .btn-white:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); color: var(--c-white); }
.cta-banner .btn-outline-white {
  background: transparent; border-color: var(--c-primary); color: var(--c-primary);
}
.cta-banner .btn-outline-white:hover { background: var(--c-primary-50); border-color: var(--c-primary-dark); color: var(--c-primary-dark); }
.cta-banner .section-label {
  background: var(--c-gold-soft) !important;
  border-color: var(--c-gold-light) !important;
  color: var(--c-primary) !important;
}

/* ─── 26. FOOTER ─── */
.site-footer {
  background: var(--c-bg-section); border-top: 1px solid var(--c-border);
  padding-top: 4rem; font-size: .875rem;
}
.footer-top { padding-bottom: 3rem; border-bottom: 1px solid var(--c-border-light); }
.footer-heading {
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--c-text); margin-bottom: .9rem;
}
.footer-desc { color: var(--c-text-muted); font-size: .8rem; line-height: 1.65; margin-bottom: 1.15rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .42rem; }
.footer-links a { color: var(--c-text-muted); transition: var(--tr-fast); font-size: .8rem; }
.footer-links a:hover { color: var(--c-primary); padding-left: 3px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .5rem;
  color: var(--c-text-muted); font-size: .8rem; margin-bottom: .55rem; line-height: 1.5;
}
.footer-contact-item i { color: var(--c-primary); width: 13px; flex-shrink: 0; margin-top: .15rem; }
.footer-social { display: flex; gap: .45rem; margin-bottom: 1.1rem; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-white); border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: var(--tr-fast);
}
.footer-social a:hover { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }
.footer-payment-text {
  font-size: .75rem; color: var(--c-text-muted);
  margin: 0 0 .5rem; line-height: 1.5;
}
.footer-payment { display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.footer-payment-icon {
  padding: .18rem .55rem; background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-sm); font-size: .6rem; font-weight: 700; color: var(--c-text-muted);
}
.footer-trust-band {
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid var(--c-border-light);
}
.footer-trust-item {
  display: flex; align-items: center; gap: .85rem;
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); padding: 1rem 1.1rem;
  box-shadow: var(--sh-sm); height: 100%;
  transition: var(--tr-base);
}
.footer-trust-item:hover { box-shadow: var(--sh-md); border-color: var(--c-primary-100); }
.footer-trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-md); background: var(--c-primary-50);
  color: var(--c-primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.footer-trust-title { font-size: .82rem; font-weight: 700; color: var(--c-text); line-height: 1.25; }
.footer-trust-sub  { font-size: .72rem; color: var(--c-text-muted); margin-top: .12rem; }
.footer-legal {
  padding: 1.35rem 1rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .85rem; text-align: center;
}
.footer-license {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; margin: 0; padding: .4rem .85rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; line-height: 1.35;
  color: var(--c-primary); background: var(--c-primary-50);
  border: 1px solid var(--c-border-light); border-radius: 999px;
}
.footer-license i { font-size: .75rem; opacity: .9; }
.footer-license-text { color: inherit; }
.footer-license strong { color: var(--c-text); font-weight: 600; }
.footer-legal-meta {
  display: flex; flex-direction: column; align-items: center;
  gap: .35rem; max-width: 640px; width: 100%;
}
.footer-legal-credit { margin: 0; line-height: 1; }
.footer-webmaster {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 600; color: var(--c-text-muted);
  transition: var(--tr-fast);
}
.footer-webmaster i { font-size: .95rem; color: #25d366; }
.footer-webmaster:hover { color: var(--c-primary); }
.footer-find-us {
  text-align: center; padding: 2rem 0 2.25rem;
  border-bottom: 1px solid var(--c-border-light);
}
.footer-find-us-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c-primary); margin-bottom: 1rem;
}
.footer-map-wrap {
  max-width: 920px; margin: 0 auto 1rem;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-border); box-shadow: var(--sh-md);
  background: var(--c-white);
}
.footer-map-wrap iframe { display: block; width: 100%; min-height: 300px; }
.footer-map-actions {
  display: flex; gap: .65rem; justify-content: center; flex-wrap: wrap;
}
.footer-bottom-copy {
  margin: 0; font-size: .73rem; line-height: 1.5;
  color: var(--c-text-muted);
}
.footer-disclaimer {
  margin: 0; font-size: .72rem; line-height: 1.55;
  color: var(--c-text-muted); opacity: .92;
}
.footer-bottom-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .35rem 1rem; max-width: 920px;
}
.footer-bottom-links a { color: var(--c-text-muted); transition: var(--tr-fast); white-space: nowrap; }
.footer-bottom-links a:hover { color: var(--c-primary); }
@media (min-width: 768px) {
  .footer-legal-meta { gap: .45rem; }
}

/* ─── 27. TOURS LISTING ─── */
.listing-layout {
  display: grid; grid-template-columns: 252px 1fr;
  gap: 1.35rem; align-items: start;
}
@media (max-width:991px) { .listing-layout { grid-template-columns: 1fr; } }

.filter-sidebar {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 1rem);
  max-height: calc(100vh - var(--topbar-h) - var(--header-h) - 2rem);
  overflow-y: auto;
}
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 4px; }
.filter-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; border-bottom: 1px solid var(--c-border-light);
}
.filter-header h3 { font-size: .9rem; font-weight: 700; margin: 0; }
.filter-reset { font-size: .73rem; color: var(--c-primary); cursor: pointer; font-weight: 600; }
.filter-reset:hover { text-decoration: underline; }
.filter-group { padding: .9rem 1.2rem; border-bottom: 1px solid var(--c-border-light); }
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--c-text-muted); margin-bottom: .65rem;
}
.filter-option {
  display: flex; align-items: center; gap: .55rem;
  padding: .3rem 0; font-size: .85rem; color: var(--c-text);
  cursor: pointer; transition: var(--tr-fast);
}
.filter-option:hover { color: var(--c-primary); }
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 15px; height: 15px; accent-color: var(--c-primary);
  cursor: pointer; flex-shrink: 0;
}
.filter-count { font-size: .7rem; color: var(--c-text-light); margin-left: auto; }

/* Ride List Card (horizontal) */
.ride-list-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); box-shadow: var(--sh-card);
  overflow: hidden; display: grid;
  grid-template-columns: 210px 1fr auto;
  transition: var(--tr-base); margin-bottom: .75rem;
}
.ride-list-card:hover { box-shadow: var(--sh-card-hover); transform: translateY(-1px); }
@media (max-width:767px) { .ride-list-card { grid-template-columns: 1fr; } }
.ride-list-img { position: relative; overflow: hidden; min-height: 140px; }
.ride-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ride-list-card:hover .ride-list-img img { transform: scale(1.04); }
.ride-list-badge { position: absolute; top: .6rem; left: .6rem; }
.ride-list-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .55rem; }
.ride-list-title { font-size: .9375rem; font-weight: 700; color: var(--c-text); }
.ride-list-meta  { display: flex; flex-wrap: wrap; gap: .65rem; }
.ride-list-meta-item { display: flex; align-items: center; gap: .28rem; font-size: .78rem; color: var(--c-text-muted); }
.ride-list-meta-item i { color: var(--c-primary); font-size: .72rem; }
.ride-list-highlights { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .2rem; }
.ride-list-highlight {
  font-size: .68rem; background: var(--c-bg); color: var(--c-text-muted);
  padding: .18rem .55rem; border-radius: var(--r-full);
  border: 1px solid var(--c-border-light);
}
.ride-list-price-col {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: space-between;
  padding: 1.15rem; min-width: 155px;
  border-left: 1px solid var(--c-border-light); background: var(--c-surface-soft);
}
@media (max-width:767px) {
  .ride-list-price-col {
    border-left: none; border-top: 1px solid var(--c-border-light);
    flex-direction: row; align-items: center; justify-content: space-between;
    min-width: unset;
  }
}
.ride-list-price .price-from   { font-size: .62rem; text-transform: uppercase; color: var(--c-text-muted); font-weight: 600; }
.ride-list-price .price-amount { font-size: 1.45rem; font-weight: 800; color: var(--c-text); line-height: 1; }
.ride-list-price .price-per    { font-size: .68rem; color: var(--c-text-muted); }
.view-detail-link {
  font-size: .78rem; color: var(--c-primary); font-weight: 600;
  margin-top: .3rem; display: flex; align-items: center; gap: .25rem;
}
.view-detail-link:hover { text-decoration: underline; }

/* Mobile filter chips */
.mobile-filter-bar {
  display: flex; gap: .4rem; overflow-x: auto; padding-bottom: .5rem;
  scrollbar-width: none;
}
.mobile-filter-bar::-webkit-scrollbar { display: none; }
.filter-chip {
  display: flex; align-items: center; gap: .3rem;
  padding: .38rem .85rem;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-full); font-size: .78rem; font-weight: 500;
  color: var(--c-text); white-space: nowrap; cursor: pointer; flex-shrink: 0;
  transition: var(--tr-fast);
}
.filter-chip.active { background: var(--c-primary-50); border-color: var(--c-primary); color: var(--c-primary); }
.filter-chip:hover  { border-color: var(--c-primary); color: var(--c-primary); }

/* ─── 28. TOUR DETAIL ─── */
.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 130px;
  gap: .5rem; border-radius: var(--r-xl); overflow: hidden;
}
@media (max-width:767px) { .detail-gallery { grid-template-columns: 1fr; grid-template-rows: 220px; } }
.detail-gallery-main { grid-row: 1 / 3; overflow: hidden; position: relative; cursor: pointer; }
.detail-gallery-main::after {
  content: '\f065'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: .75rem; bottom: .75rem;
  width: 34px; height: 34px; border-radius: var(--r-base);
  background: rgba(255,255,255,.92); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; box-shadow: var(--sh-sm); pointer-events: none;
}
.detail-gallery-thumb { overflow: hidden; cursor: pointer; position: relative; }
.detail-gallery-thumb.show-more::after {
  content: '+4 more'; position: absolute; inset: 0;
  background: rgba(19,41,61,.55); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700;
}
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.detail-gallery-thumb:hover img { transform: scale(1.05); }

.detail-info-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); padding: 1.1rem 1.25rem;
  box-shadow: var(--sh-sm);
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem;
}
@media (min-width:992px) { .detail-info-card { grid-template-columns: repeat(4,1fr); } }
.detail-info-item { display: flex; align-items: flex-start; gap: .55rem; }
.detail-info-icon {
  width: 34px; height: 34px; border-radius: var(--r-base);
  background: var(--c-primary-50); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .825rem; flex-shrink: 0;
}
.detail-info-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-text-muted); }
.detail-info-value { font-size: .85rem; font-weight: 600; color: var(--c-text); margin-top: .1rem; }

/* Sticky booking card on detail page */
.booking-card {
  background: var(--c-white); border: 2px solid var(--c-border);
  border-radius: var(--r-xl); box-shadow: var(--sh-md);
  overflow: hidden; position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 1rem);
}
.booking-card-header {
  background: var(--c-surface); border-bottom: 1px solid var(--c-border);
  padding: 1.15rem;
}
.bc-from   { font-size: .68rem; text-transform: uppercase; font-weight: 700; color: var(--c-text-muted); letter-spacing: .05em; }
.bc-amount { font-size: 1.8rem; font-weight: 800; color: var(--c-gold); line-height: 1; }
.bc-per    { font-size: .73rem; color: var(--c-text-muted); }
.booking-card-body   { padding: 1.5rem; }
.booking-card-footer { padding: 0 1.15rem 1.15rem; }
.booking-card-trust {
  display: flex; align-items: center; gap: .65rem; justify-content: center;
  flex-wrap: wrap; padding-top: .9rem; border-top: 1px solid var(--c-border-light);
  font-size: .68rem; color: var(--c-text-muted);
}
.booking-card-trust-item { display: flex; align-items: center; gap: .22rem; }
.booking-card-trust-item i { color: var(--c-success); }

.included-list { list-style: none; margin: 0; padding: 0; }
.included-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .55rem 0; border-bottom: 1px solid var(--c-border-light);
  font-size: .85rem; color: var(--c-text-muted);
}
.included-list li:last-child { border-bottom: none; }
.included-list li i { color: var(--c-success); margin-top: .15rem; flex-shrink: 0; }
.not-included li i  { color: var(--c-error); }

/* ─── 29. BOOKING / CHECKOUT ─── */
.checkout-header {
  background: var(--c-white); border-bottom: 1px solid var(--c-border-light); padding: .9rem 0;
}
.countdown-bar {
  background: var(--c-warning-bg); border: 1px solid var(--c-gold-light);
  border-radius: var(--r-base); padding: .6rem 1.15rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: .85rem; font-weight: 600; color: var(--c-primary); margin-bottom: 1.15rem;
}
.countdown-bar i { color: var(--c-warning); }
.countdown-timer { font-weight: 800; font-size: .95rem; font-variant-numeric: tabular-nums; }

.checkout-stepper { display: flex; align-items: center; margin-bottom: 2rem; }
.checkout-step {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  flex: 1; text-align: center; position: relative;
}
.checkout-step::after {
  content: ''; position: absolute; top: 19px; left: 50%;
  width: 100%; height: 2px; background: var(--c-border); z-index: 0;
}
.checkout-step:last-child::after { display: none; }
.checkout-step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-bg); border: 2px solid var(--c-border);
  color: var(--c-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; position: relative; z-index: 1;
  transition: var(--tr-base);
}
.checkout-step.active .checkout-step-num {
  background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white);
}
.checkout-step.done .checkout-step-num {
  background: var(--c-success); border-color: var(--c-success); color: var(--c-white);
}
.checkout-step.done::after   { background: var(--c-success); }
.checkout-step-label         { font-size: .68rem; font-weight: 600; color: var(--c-text-muted); white-space: nowrap; }
.checkout-step.active .checkout-step-label { color: var(--c-primary); }
.checkout-step.done  .checkout-step-label  { color: var(--c-success); }

/* Checkout layout */
.checkout-layout {
  display: grid; grid-template-columns: 1fr 350px;
  gap: 1.35rem; align-items: stretch;
}
.checkout-layout > :last-child {
  min-height: 100%;
}
@media (max-width:991px) { .checkout-layout { grid-template-columns: 1fr; } }

.checkout-panel {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl); box-shadow: var(--sh-sm); overflow: hidden;
}
.checkout-panel-header {
  padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--c-border-light); background: var(--c-surface-soft);
}
.checkout-panel-header h3 { font-size: .95rem; font-weight: 700; margin: 0; }
.checkout-panel-body { padding: 1.75rem; }

/* Summary card */
.summary-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl); box-shadow: var(--sh-sm);
  position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 1rem); overflow: hidden;
}
.summary-card-header {
  background: var(--c-primary-50); border-bottom: 1px solid var(--c-primary-100);
  padding: 1rem 1.2rem;
}
.summary-card-header h3 { font-size: .9rem; font-weight: 700; color: var(--c-text); margin: 0; }
.summary-ride-img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; background: var(--c-bg-section); }
.summary-card-body { padding: 1.5rem; }
.summary-ride-name {
  font-size: .95rem; font-weight: 700; color: var(--c-text);
  margin-bottom: 1rem;
}
.summary-detail {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: .4rem 0; margin: 0; font-size: .85rem;
}
.summary-detail-label {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--c-text-muted); flex-shrink: 0;
}
.summary-detail-label i {
  color: var(--c-primary); width: 16px; text-align: center; font-size: .8rem;
}
.summary-detail-value { font-weight: 600; color: var(--c-text); text-align: right; }
.summary-divider { border: none; border-top: 1px solid var(--c-border-light); margin: .9rem 0; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--c-bg-section); border: 1px solid var(--c-border-light);
  border-radius: var(--r-md); padding: .75rem 1rem; margin-top: .25rem;
}
.summary-total-label { font-size: .875rem; font-weight: 700; color: var(--c-text); }
.summary-total-price { font-size: 1.3rem; font-weight: 700; color: var(--c-gold); }

/* Optional add-ons */
.optional-addon {
  background: var(--c-bg); border: 1px solid var(--c-border-light);
  border-radius: var(--r-md); padding: .9rem;
  margin-bottom: .45rem; display: flex; align-items: flex-start; gap: .7rem;
}
.optional-addon input[type="checkbox"] {
  width: 17px; height: 17px; accent-color: var(--c-primary);
  cursor: pointer; flex-shrink: 0; margin-top: .15rem;
}
.addon-info h5 { font-size: .85rem; font-weight: 700; color: var(--c-text); margin-bottom: .18rem; }
.addon-info p  { font-size: .75rem; color: var(--c-text-muted); margin: 0; }
.addon-price   { font-size: .85rem; font-weight: 700; color: var(--c-primary); margin-left: auto; flex-shrink: 0; }

/* Guest counter */
.guest-counter { display: flex; align-items: center; gap: .7rem; }
.counter-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--c-border); background: var(--c-white); color: var(--c-text);
  font-size: 1.05rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr-fast); flex-shrink: 0;
}
.counter-btn:hover:not(:disabled) {
  border-color: var(--c-primary); color: var(--c-primary); background: var(--c-primary-50);
}
.counter-btn:disabled { opacity: .4; cursor: not-allowed; }
.counter-value { font-size: 1.05rem; font-weight: 700; color: var(--c-text); min-width: 26px; text-align: center; }

/* Time slots */
.time-slots { display: flex; flex-wrap: wrap; gap: .45rem; }
.time-slot {
  padding: .45rem .85rem; border: 1.5px solid var(--c-border);
  border-radius: var(--r-base); font-size: .8rem; font-weight: 600; color: var(--c-text);
  cursor: pointer; transition: var(--tr-fast); background: var(--c-white); white-space: nowrap;
}
.time-slot:hover:not(.disabled) { border-color: var(--c-primary); color: var(--c-primary); background: var(--c-primary-50); }
.time-slot.selected { border-color: var(--c-primary); background: var(--c-primary); color: var(--c-white); }
.time-slot.disabled { opacity: .5; cursor: not-allowed; background: var(--c-bg); }
.time-slot-period { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-text-muted); margin: .75rem 0 .35rem; }

/* Checkout trust */
.checkout-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem 1.4rem;
  padding: .9rem 1.2rem; background: #f5f8ff; border-top: 1px solid var(--c-border-light);
}
.checkout-trust-item { display: flex; align-items: center; gap: .3rem; font-size: .72rem; color: var(--c-text-muted); font-weight: 500; }
.checkout-trust-item i { color: var(--c-primary); }

/* ─── 30. PAYMENT PAGE ─── */
.card-field { position: relative; }
.card-icons { position: absolute; right: .7rem; top: 50%; transform: translateY(-50%); display: flex; gap: .2rem; }
.card-icon-img { height: 19px; border-radius: 3px; border: 1px solid var(--c-border-light); }
.payment-secure-note {
  background: var(--c-green-bg); border: 1px solid #b7dfbb;
  border-radius: var(--r-base); padding: .7rem 1rem;
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .8rem; color: var(--c-text-muted);
}
.payment-secure-note i { color: var(--c-success); font-size: .95rem; flex-shrink: 0; margin-top: .05rem; }

/* ─── 31. CONFIRMATION ─── */
.confirmation-hero {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-light);
  padding: 4rem 0; text-align: center;
}
.conf-success-icon {
  width: 76px; height: 76px; margin: 0 auto 1.5rem;
  background: var(--c-green-bg); border: 1px solid #BBE5C8; border-radius: 50%;
  color: var(--c-success); display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
}
.confirmation-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl); box-shadow: var(--sh-md); overflow: hidden;
}
.confirmation-card-header {
  background: var(--c-green-bg); border-bottom: 1px solid #b7dfbb;
  padding: 1.15rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.booking-ref {
  font-family: 'Courier New', monospace; font-size: 1.1rem; font-weight: 800; color: var(--c-primary);
  background: var(--c-primary-50); padding: .35rem .9rem; border-radius: var(--r-base); letter-spacing: .08em;
}
.conf-detail-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: .75rem 0; border-bottom: 1px solid var(--c-border-light); font-size: .875rem;
}
.conf-detail-row:last-child { border-bottom: none; }
.conf-detail-label { color: var(--c-text-muted); display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }
.conf-detail-label i { color: var(--c-primary); width: 14px; font-size: .8rem; }
.conf-detail-value { font-weight: 600; color: var(--c-text); text-align: right; }

/* ─── 32. ABOUT ─── */
.stat-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); padding: 1.65rem; text-align: center; box-shadow: var(--sh-sm);
  transition: var(--tr-base);
}
.stat-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.stat-num   { font-size: 2.1rem; font-weight: 800; color: var(--c-primary); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--c-text-muted); margin-top: .25rem; }
.team-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
  text-align: center; transition: var(--tr-base);
}
.team-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.team-img { aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-img img { transform: scale(1.04); }
.team-body { padding: 1.5rem 1.25rem; }
.team-name { font-size: .9rem; font-weight: 700; color: var(--c-text); }
.team-role { font-size: .75rem; color: var(--c-text-muted); margin-top: .2rem; }
.value-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); padding: 1.35rem; box-shadow: var(--sh-sm); transition: var(--tr-base);
}
.value-card:hover { box-shadow: var(--sh-md); border-color: var(--c-primary-100); }
.value-icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--c-primary-50); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: .9rem;
}
.value-card h4 { font-size: .9rem; font-weight: 700; color: var(--c-text); margin-bottom: .35rem; }
.value-card p  { font-size: .8rem; color: var(--c-text-muted); margin: 0; }

/* ─── 33. CONTACT ─── */
.contact-method-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--sh-sm);
  text-align: center; cursor: pointer; transition: var(--tr-base);
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
  text-decoration: none; color: inherit;
}
.contact-method-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--c-primary-100); }
.contact-method-icon {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-method-icon.phone    { background: var(--c-primary-50); color: var(--c-primary); }
.contact-method-icon.whatsapp { background: var(--c-green-bg);   color: #128c7e; }
.contact-method-icon.email    { background: var(--c-accent-bg);  color: var(--c-accent); }
.contact-method-card h4 { font-size: .9rem; font-weight: 700; color: var(--c-text); margin: 0; }
.contact-method-card p  { font-size: .8rem; color: var(--c-text-muted); margin: 0; }
.contact-method-cta { font-size: .78rem; font-weight: 700; color: var(--c-primary); }
.map-placeholder {
  aspect-ratio: 16/6; background: #e4eaf2; border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .65rem; color: var(--c-text-muted); font-size: .85rem;
  border: 1px solid var(--c-border-light);
}
.map-placeholder i { font-size: 2.5rem; color: var(--c-border); }

/* ─── 34. GALLERY ─── */
.gallery-filter-bar { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1.35rem; }
.gallery-filter-btn {
  padding: .4rem 1rem; background: var(--c-white); border: 1.5px solid var(--c-border);
  border-radius: var(--r-full); font-size: .8rem; font-weight: 600; color: var(--c-text-muted);
  cursor: pointer; transition: var(--tr-fast); white-space: nowrap;
}
.gallery-filter-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.gallery-filter-btn.active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(19,41,61,.4); color: var(--c-white);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  opacity: 0; transition: opacity .25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(8,18,36,.95);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--c-white); border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; cursor: pointer; transition: var(--tr-fast); z-index: 2;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-img-wrap { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-img      { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r-md); }
.lightbox-caption  { color: rgba(255,255,255,.65); font-size: .85rem; margin-top: .65rem; }
.lightbox-counter  { position: absolute; bottom: 1.15rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.55); font-size: .78rem; }

/* ─── 35. BLOG ─── */
.blog-featured-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-card);
  display: grid; grid-template-columns: 1fr 1fr; transition: var(--tr-base);
}
@media (max-width:767px) { .blog-featured-card { grid-template-columns: 1fr; } }
.blog-featured-card:hover { box-shadow: var(--sh-card-hover); transform: translateY(-2px); }
.blog-featured-img { position: relative; overflow: hidden; min-height: 240px; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; gap: .7rem; }

.blog-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
  transition: var(--tr-base); height: 100%; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .55rem; }
.blog-category {
  display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--c-primary); background: var(--c-primary-50);
  padding: .18rem .65rem; border-radius: var(--r-full);
}
.blog-title   { font-size: .9rem; font-weight: 700; color: var(--c-text); line-height: 1.4; flex: 1; }
.blog-excerpt { font-size: .8rem; color: var(--c-text-muted); line-height: 1.6; }
.blog-meta { display: flex; align-items: center; gap: .65rem; font-size: .73rem; color: var(--c-text-muted); flex-wrap: wrap; }
.blog-meta-item { display: flex; align-items: center; gap: .28rem; }
.blog-meta-item i { font-size: .62rem; color: var(--c-primary); }

/* Blog detail */
.blog-content h2    { font-size: 1.3rem; font-weight: 700; color: var(--c-text); margin: 2rem 0 .7rem; }
.blog-content h3    { font-size: 1.05rem; font-weight: 700; color: var(--c-text); margin: 1.5rem 0 .5rem; }
.blog-content p     { font-size: .9375rem; color: var(--c-text-muted); line-height: 1.8; margin-bottom: 1.15rem; }
.blog-content ul, .blog-content ol { color: var(--c-text-muted); line-height: 1.9; padding-left: 1.5rem; margin-bottom: 1.15rem; }
.blog-content li    { margin-bottom: .3rem; }
.blog-content strong{ color: var(--c-text); font-weight: 700; }
.blog-content blockquote {
  border-left: 3px solid var(--c-primary); padding: .9rem 1.4rem;
  background: var(--c-primary-50); border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.4rem 0; color: var(--c-text); font-style: italic;
}
.blog-author-card {
  background: var(--c-bg-blue); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); padding: 1.4rem;
  display: flex; gap: .9rem; align-items: flex-start;
}
.blog-author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; flex-shrink: 0;
}

/* ─── 36. 404 PAGE ─── */
.page-404 {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--c-bg-blue);
}
.error-num { font-size: clamp(5rem,20vw,10rem); font-weight: 900; color: var(--c-primary); opacity: .12; line-height: 1; }
.error-title { font-size: 1.5rem; font-weight: 700; color: var(--c-text); }

/* ─── 37. MISC BLOCKS ─── */
.info-block {
  background: var(--c-primary-50); border: 1px solid var(--c-primary-100);
  border-radius: var(--r-md); padding: .9rem 1.15rem;
  display: flex; gap: .65rem; font-size: .875rem; color: var(--c-text-muted);
}
.info-block i { color: var(--c-primary); flex-shrink: 0; margin-top: .15rem; }
.warning-block {
  background: var(--c-gold-bg); border: 1px solid #ffe083;
  border-radius: var(--r-md); padding: .9rem 1.15rem;
  display: flex; gap: .65rem; font-size: .875rem;
}
.warning-block i { color: var(--c-gold); flex-shrink: 0; }
.divider { border: none; border-top: 1px solid var(--c-border-light); margin: 1.4rem 0; }
.tag-pill {
  display: inline-flex; align-items: center; gap: .28rem;
  font-size: .73rem; font-weight: 600; padding: .28rem .7rem;
  border-radius: var(--r-full); border: 1px solid var(--c-border);
  color: var(--c-text-muted); background: var(--c-white);
}

/* ─── 37b. ABOUT / CONTACT / REVIEWS PAGE COMPONENTS ─── */
.team-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl); padding: 1.5rem; text-align: center;
  box-shadow: var(--sh-sm); transition: var(--tr-base);
}
.team-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.team-img {
  width: 90px; height: 90px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 1rem; border: 3px solid var(--c-primary-50);
}
.team-name { font-size: .95rem; font-weight: 700; color: var(--c-text); margin-bottom: .2rem; }
.team-role { font-size: .78rem; color: var(--c-primary); font-weight: 600; margin-bottom: .65rem; }
.team-bio  { font-size: .78rem; color: var(--c-text-muted); line-height: 1.6; }

.contact-method-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-xl); padding: 1.5rem; text-align: center;
  box-shadow: var(--sh-sm); transition: var(--tr-base); height: 100%;
}
.contact-method-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.contact-method-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1rem;
}
.contact-method-card h3 { font-size: .95rem; font-weight: 700; color: var(--c-text); margin-bottom: .3rem; }
.contact-method-card p  { font-size: .78rem; color: var(--c-text-muted); }

.map-placeholder {
  background: var(--c-bg-section); border: 2px dashed var(--c-border);
  border-radius: var(--r-xl); height: 220px;
  display: flex; align-items: center; justify-content: center;
}

/* Blog detail content */
.blog-detail-content h2    { font-size: 1.25rem; font-weight: 700; color: var(--c-text); margin: 1.75rem 0 .65rem; }
.blog-detail-content h3    { font-size: 1.05rem; font-weight: 700; color: var(--c-text); margin: 1.4rem 0 .5rem; }
.blog-detail-content p     { font-size: .9375rem; color: var(--c-text-muted); line-height: 1.8; margin-bottom: 1rem; }
.blog-detail-content ul,
.blog-detail-content ol    { color: var(--c-text-muted); line-height: 1.9; padding-left: 1.5rem; margin-bottom: 1.1rem; }
.blog-detail-content li    { margin-bottom: .35rem; }
.blog-detail-content strong{ color: var(--c-text); font-weight: 700; }
.blog-detail-content blockquote {
  border-left: 4px solid var(--c-primary); padding: 1rem 1.25rem;
  background: var(--c-primary-50); border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.5rem 0; color: var(--c-text);
}
.blog-featured-title  { font-size: 1.4rem; font-weight: 700; color: var(--c-text); line-height: 1.3; }
.blog-featured-excerpt{ font-size: .88rem; color: var(--c-text-muted); line-height: 1.7; }

/* Confirmation page */
.confirmation-wrap { max-width: 980px; margin: 0 auto; }
.confirmation-header {
  text-align: center; padding: 2rem 1rem 1.5rem;
}
.confirmation-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--c-green-bg); color: var(--c-success);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1rem;
  border: 3px solid var(--c-success);
}

/* ─── 38. SCROLL TOP / TOAST / SPINNER ─── */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; box-shadow: var(--sh-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: var(--tr-base); z-index: 500;
}
.scroll-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { background: var(--c-primary-dark); transform: translateY(-2px); }

.toast-container { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 9998; display: flex; flex-direction: column; gap: .45rem; }
.toast {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: .8rem 1.15rem;
  display: flex; align-items: center; gap: .65rem;
  box-shadow: var(--sh-lg); font-size: .85rem; min-width: 270px;
  animation: toastIn .3s ease forwards;
}
.toast.success { border-left: 3px solid var(--c-success); }
.toast.error   { border-left: 3px solid var(--c-error); }
.toast.info    { border-left: 3px solid var(--c-primary); }
.toast i.s { color: var(--c-success); }
.toast i.e { color: var(--c-error); }
.toast i.i { color: var(--c-primary); }
@keyframes toastIn { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }

.spinner {
  width: 17px; height: 17px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: var(--c-white);
  border-radius: 50%; animation: spin .7s linear infinite; display: inline-block;
}
.spinner-dark { border-color: rgba(19,41,61,.15); border-top-color: var(--c-primary); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── 39. REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── 40. STICKY MOBILE CTA ─── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-white); border-top: 1px solid var(--c-border);
  padding: .7rem 1rem;
  display: flex; gap: .65rem; align-items: center;
  z-index: 400; box-shadow: 0 -4px 16px rgba(19,41,61,.09);
  transform: translateY(100%); transition: transform .3s;
}
.sticky-cta.show { transform: translateY(0); }
@media (min-width:992px) { .sticky-cta { display: none; } }
.sticky-cta-price .price-from   { font-size: .62rem; text-transform: uppercase; font-weight: 700; color: var(--c-text-muted); }
.sticky-cta-price .price-amount { font-size: 1.05rem; font-weight: 800; color: var(--c-text); }
.sticky-cta .btn { flex-shrink: 0; }

/* ─── 41. RATING BAR ─── */
.rating-bar-row { display: flex; align-items: center; gap: .65rem; margin-bottom: .35rem; }
.rating-bar-label { font-size: .78rem; color: var(--c-text-muted); width: 18px; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 7px; background: var(--c-bg-section); border-radius: var(--r-full); overflow: hidden; }
.rating-bar-fill  { height: 100%; background: var(--c-gold); border-radius: var(--r-full); transition: width .6s ease; }
.rating-bar-pct   { font-size: .73rem; color: var(--c-text-muted); width: 32px; flex-shrink: 0; text-align: right; }

/* ─── 42. RESPONSIVE ─── */
@media (max-width:575px) {
  .section { padding: 3rem 0; }
  .section-lg { padding: 4rem 0; }
  .checkout-stepper .checkout-step-label { display: none; }
  .detail-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .help-box { padding: 1.35rem; }
  .newsletter-band { padding: 1.5rem; }
  .featured-banner { grid-template-columns: 1fr; }
  .blog-featured-card { grid-template-columns: 1fr; }
}
@media (max-width:767px) {
  .listing-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 980; border-radius: 0; max-height: 100vh;
  }
  .filter-sidebar.open { display: flex; flex-direction: column; }
  .checkout-layout { grid-template-columns: 1fr; }
}
@media (min-width:992px) {
  .sticky-cta { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   43. COMPATIBILITY LAYER — v2 page markup variants
   (pages using .main-header / .footer-grid / .cta-band etc.)
   ═══════════════════════════════════════════════════════════ */

/* ── Topbar variant: .topbar > .container ── */
.topbar > .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
}
.topbar-right a {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--c-text-muted); transition: var(--tr-fast); white-space: nowrap;
}
.topbar-right a:hover { color: var(--c-primary); }
.topbar-right a i { font-size: .68rem; }
@media (max-width:575px) { .topbar-left { font-size: .65rem; } .topbar-right a:not(:first-child) { display: none; } }

/* ── Header variant: .main-header ── */
.main-header {
  position: sticky; top: var(--topbar-h);
  height: var(--header-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: none;
  z-index: 900;
  transition: box-shadow .25s;
}
.main-header.scrolled { box-shadow: 0 2px 12px rgba(31,41,55,.07); }
.main-header > .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
}
.header-actions { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }

/* Hamburger variant: .mobile-menu-btn */
.mobile-menu-btn {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 36px; height: 36px; border-radius: var(--r-base);
  background: none; border: none; cursor: pointer;
  transition: var(--tr-fast);
}
@media (min-width:992px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn span {
  width: 21px; height: 2px; background: var(--c-text);
  border-radius: 2px; transition: var(--tr-base); transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav link variant */
.mobile-nav nav { display: flex; flex-direction: column; padding: .6rem 0; }
.mobile-nav-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .8rem 1.5rem;
  font-size: .9rem; font-weight: 500; color: var(--c-text);
  transition: var(--tr-fast);
}
.mobile-nav-link:hover { background: var(--c-primary-50); color: var(--c-primary); }
.mobile-nav-link i { color: var(--c-primary); width: 18px; text-align: center; }

/* ── Section badge alias ── */
.section-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--c-primary); background: var(--c-primary-50);
  padding: .28rem .75rem; border-radius: var(--r-full); margin-bottom: .75rem;
}

/* ── Stat number alias ── */
.stat-number {
  font-size: clamp(1.6rem, 4vw, 2.1rem); font-weight: 800;
  color: var(--c-primary); line-height: 1.15; margin-bottom: .2rem;
}

/* ── Button outline alias ── */
.btn-outline {
  background: var(--c-white); color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary-50); color: var(--c-primary-dark); }

/* ── CTA band (light, corporate) ── */
.cta-band {
  background: var(--c-bg-section);
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
  padding: 5rem 0; text-align: center;
}
.cta-band-content { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.cta-band-title { color: var(--c-text); font-size: clamp(1.3rem,3vw,1.75rem); font-weight: 700; margin-bottom: .7rem; }
.cta-band-subtitle { color: var(--c-text-muted); font-size: .95rem; margin-bottom: 0; }

/* ── Newsletter variant ── */
.newsletter-inner {
  background: var(--c-white);
  border: 1px solid var(--c-border); border-radius: var(--r-xl);
  box-shadow: var(--sh-card);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.newsletter-title { font-size: 1.2rem; font-weight: 700; color: var(--c-text); margin-bottom: .35rem; }
.newsletter-subtitle { color: var(--c-text-muted); font-size: .875rem; margin: 0; }
.newsletter-input {
  flex: 1; min-width: 200px;
  padding: .6rem .9rem;
  border: 1px solid var(--c-border); border-radius: var(--r-base);
  font-family: inherit; font-size: .875rem; color: var(--c-text);
  background: var(--c-white); transition: var(--tr-fast);
}
.newsletter-input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px var(--c-primary-50); }
@media (max-width:575px) { .newsletter-inner { padding: 1.5rem; } }

/* ── Review card variants ── */
.review-card-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.review-meta { font-size: .75rem; color: var(--c-text-muted); }
.review-tour {
  display: inline-block; margin-top: .75rem;
  font-size: .72rem; font-weight: 600; color: var(--c-primary);
  background: var(--c-primary-50); padding: .25rem .6rem; border-radius: var(--r-full);
}

/* ── Blog card title/excerpt aliases ── */
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--c-text); line-height: 1.35; }
.blog-card .blog-card-title a, .blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--c-primary); }
.blog-card-excerpt { font-size: .83rem; color: var(--c-text-muted); line-height: 1.6; flex: 1; }

/* ── Generic filter buttons (FAQ etc.) ── */
.filter-btn {
  padding: .45rem 1rem;
  border: 1px solid var(--c-border); border-radius: var(--r-full);
  background: var(--c-white); color: var(--c-text-muted);
  font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: var(--tr-fast); white-space: nowrap;
}
.filter-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.filter-btn.active { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }

/* ── Checkout step "completed" alias of "done" ── */
.checkout-step.completed .checkout-step-num {
  background: var(--c-success); border-color: var(--c-success); color: var(--c-white);
}
.checkout-step.completed::after { background: var(--c-success); }
.checkout-step.completed .checkout-step-label { color: var(--c-success); }

/* ── Footer grid variant ── */
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--c-border-light);
}
@media (max-width:991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:575px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-logo { margin-bottom: .9rem; }
.footer-phone {
  display: flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600; color: var(--c-text);
  transition: var(--tr-fast);
}
.footer-phone i { color: var(--c-primary); }
.footer-phone:hover { color: var(--c-primary); }

/* ── Lightbox content variant ── */
.lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r-md); }

/* ── Checkout countdown: stays below sticky header ── */
.checkout-countdown-strip {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h));
  z-index: 850;
  background: var(--c-bg);
  padding: .85rem 0 .35rem;
}
.checkout-countdown-strip .countdown-bar { margin-bottom: 0; }

/* ============================================================
   PROPOSAL TOUR — spotlight & booking components
   ============================================================ */

/* Reservations-required notice (full-width row) */
.reserve-banner {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--c-gold-soft); border: 1px solid var(--c-gold-light);
  border-radius: var(--r-md); padding: .9rem 1.15rem;
  font-size: .85rem; color: var(--c-text); line-height: 1.5;
}
.reserve-banner i { color: var(--c-gold); margin-top: .15rem; flex-shrink: 0; }
.reserve-banner strong { font-weight: 700; }

/* Small accent pill */
.reserve-required-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--c-gold-soft); color: var(--c-primary); border: 1px solid var(--c-gold-light);
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .75rem; border-radius: var(--r-full); width: fit-content;
}

/* Fact pills inside spotlight banner */
.proposal-facts { display: flex; flex-wrap: wrap; gap: .45rem .55rem; padding: 0; margin: 0; list-style: none; }
.proposal-facts li {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--c-text-muted);
  background: var(--c-bg-section); border: 1px solid var(--c-border-light);
  padding: .32rem .7rem; border-radius: var(--r-full);
}
.proposal-facts li i { color: var(--c-primary); font-size: .75rem; }

/* Side info cards next to spotlight banner */
.proposal-side-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); box-shadow: var(--sh-card);
  padding: 1.25rem; flex: 1;
}
@media (min-width:992px) { .proposal-side-card { padding: 1.35rem 1.4rem; } }
.proposal-exclusive-card {
  border-left: 3px solid var(--c-gold);
  background: var(--c-white);
}
.proposal-addons-card { display: flex; flex-direction: column; gap: .85rem; }
.proposal-card-head {
  display: flex; align-items: flex-start; gap: .75rem;
}
.proposal-card-head h4 {
  font-size: .92rem; font-weight: 700; color: var(--c-text);
  margin: 0 0 .35rem; line-height: 1.3;
}
.proposal-card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; font-size: .95rem;
}
.proposal-card-icon--primary {
  background: var(--c-primary-50); color: var(--c-primary);
  border: 1px solid var(--c-primary-100);
}
.proposal-card-icon--accent {
  background: var(--c-gold-soft); color: var(--c-gold);
  border: 1px solid var(--c-gold-light);
}
.proposal-side-card p { font-size: .82rem; margin: 0; line-height: 1.58; color: var(--c-text-muted); }
.proposal-addon-grid {
  display: flex; flex-direction: column; gap: .5rem;
  margin: 0; padding: 0; list-style: none;
}
.proposal-addon-item {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .62rem .75rem;
  background: var(--c-bg-section);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  transition: var(--tr-fast);
}
.proposal-addon-item:hover {
  border-color: var(--c-primary-100);
  background: var(--c-white);
}
.proposal-addon-name {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 600; color: var(--c-text);
  min-width: 0;
}
.proposal-addon-name i {
  width: 28px; height: 28px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-white); color: var(--c-primary);
  border: 1px solid var(--c-border-light);
  border-radius: 8px; font-size: .72rem;
}
.proposal-addon-price {
  font-size: .78rem; font-weight: 800; color: var(--c-gold);
  white-space: nowrap; flex-shrink: 0;
}
.proposal-addon-item--bundle {
  background: var(--c-gold-soft);
  border-color: var(--c-gold-light);
}
.proposal-addon-item--bundle .proposal-addon-name i {
  color: var(--c-gold); border-color: var(--c-gold-light);
  background: var(--c-white);
}
.proposal-addon-item--bundle .proposal-addon-price {
  display: flex; flex-direction: column; align-items: flex-end; gap: .12rem;
  color: var(--c-text);
}
.proposal-addon-bundle-price { font-size: .86rem; font-weight: 800; }
.proposal-addon-save {
  font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  color: var(--c-primary); background: var(--c-gold);
  padding: .14rem .45rem; border-radius: var(--r-full);
}
.proposal-addon-notice {
  display: flex; align-items: flex-start; gap: .5rem;
  padding: .65rem .75rem;
  background: var(--c-primary-50);
  border: 1px solid var(--c-primary-100);
  border-radius: var(--r-md);
  font-size: .72rem; font-weight: 600; color: var(--c-text-muted); line-height: 1.45;
}
.proposal-addon-notice i {
  color: var(--c-primary); margin-top: .1rem; flex-shrink: 0;
}
/* legacy list (booking pages) */
.proposal-addon-list { display: flex; flex-direction: column; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.proposal-addon-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .8rem; color: var(--c-text-muted); }
.proposal-addon-list li span:last-child { font-weight: 600; color: var(--c-text); white-space: nowrap; }

/* Add-on row with quantity stepper */
.addon-row {
  display: flex; align-items: center; gap: .9rem;
  background: var(--c-bg); border: 1px solid var(--c-border-light);
  border-radius: var(--r-md); padding: .9rem 1rem; margin-bottom: .65rem;
}
.addon-row.disabled { opacity: .5; pointer-events: none; }
.addon-row-info { flex: 1; min-width: 0; }
.addon-row-info h5 { font-size: .85rem; font-weight: 600; color: var(--c-text); margin: 0 0 .15rem; }
.addon-row-info p { font-size: .75rem; color: var(--c-text-muted); margin: 0; }
.addon-row-price { font-weight: 700; font-size: .85rem; color: var(--c-text); white-space: nowrap; }
.addon-row-price.free { color: var(--c-success); }
.addon-qty { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.addon-qty button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--c-border); background: var(--c-white);
  font-weight: 700; color: var(--c-text); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr-fast);
}
.addon-qty button:hover { border-color: var(--c-primary); color: var(--c-primary); }
.addon-qty-value { min-width: 22px; text-align: center; font-weight: 700; font-size: .85rem; }

/* Bundle package card */
.addon-package {
  background: var(--c-gold-soft); border: 1px solid var(--c-gold-light);
  border-radius: var(--r-lg); padding: 1.15rem 1.25rem;
  display: flex; gap: .9rem; align-items: flex-start;
}
.addon-package input[type="checkbox"] { margin-top: .25rem; flex-shrink: 0; }
.addon-package-info { flex: 1; min-width: 0; }
.addon-package-info h5 {
  font-size: .875rem; font-weight: 700; color: var(--c-text);
  margin: 0 0 .3rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.addon-package-info p { font-size: .78rem; color: var(--c-text-muted); margin: 0; line-height: 1.5; }
.addon-package-save {
  background: var(--c-gold); color: var(--c-primary); font-size: .62rem; font-weight: 700;
  padding: .18rem .55rem; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .04em;
}
.pkg-prices { text-align: right; white-space: nowrap; flex-shrink: 0; }
.pkg-old { display: block; text-decoration: line-through; color: var(--c-text-muted); font-size: .78rem; }
.pkg-new { display: block; font-weight: 700; font-size: 1.05rem; color: var(--c-text); }

/* Promo / gift code rows */
.promo-row { display: flex; gap: .6rem; }
.promo-row .form-control { flex: 1; min-width: 0; }
.promo-row .btn { flex-shrink: 0; }

/* Carriage capacity info */
.capacity-box {
  background: var(--c-primary-50); border: 1px solid var(--c-primary-100);
  border-radius: var(--r-md); padding: .9rem 1.1rem; font-size: .8rem;
}
.capacity-box h5 {
  font-size: .8rem; font-weight: 700; color: var(--c-text);
  display: flex; gap: .45rem; align-items: center; margin-bottom: .45rem;
}
.capacity-box h5 i { color: var(--c-primary); }
.capacity-box ul { margin: 0 0 .45rem; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .2rem; }
.capacity-box li { display: flex; gap: .45rem; color: var(--c-text-muted); }
.capacity-box li::before { content: '•'; color: var(--c-primary); }
.capacity-note { font-size: .73rem; color: var(--c-text-muted); margin: 0; }

/* Small notes */
.note-muted {
  font-size: .75rem; color: var(--c-text-muted);
  display: flex; gap: .45rem; align-items: flex-start; line-height: 1.5;
}
.note-muted i { margin-top: .12rem; color: var(--c-primary); flex-shrink: 0; }
.note-warning {
  font-size: .78rem; color: var(--c-text-secondary); background: var(--c-warning-bg);
  border: 1px solid var(--c-gold-light); border-radius: var(--r-md);
  padding: .6rem .85rem; display: flex; gap: .5rem; align-items: flex-start; line-height: 1.5;
}
.note-warning i { color: var(--c-warning); margin-top: .1rem; flex-shrink: 0; }

/* Empty time-slot state */
.time-slots-empty {
  font-size: .82rem; color: var(--c-text-muted);
  background: var(--c-bg-section); border: 1px dashed var(--c-border);
  border-radius: var(--r-md); padding: .85rem 1rem;
}

/* Proposal-only blocks stay hidden until JS enables them */
[data-proposal-only][hidden] { display: none !important; }

/* Discounted pricing — struck-through regular price */
.price-old {
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text-light);
  text-decoration: line-through;
}

/* ============================================================
   TOUR GUIDE PAGE — interactive route (reuses theme tokens)
   ============================================================ */
.route-stops-list {
  display: flex; flex-direction: column; gap: .35rem;
  max-height: 540px; overflow-y: auto; padding-right: .25rem;
}
.route-stop-btn {
  display: flex; align-items: center; gap: .65rem; width: 100%; text-align: left;
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-md); padding: .55rem .75rem;
  font-size: .82rem; font-weight: 600; color: var(--c-text-muted);
  transition: var(--tr-fast); cursor: pointer;
}
.route-stop-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.route-stop-btn.active { background: var(--c-primary-50); border-color: var(--c-primary-100); color: var(--c-primary); }
.route-stop-num {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-bg-section); border: 1px solid var(--c-border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; color: var(--c-text-muted);
}
.route-stop-btn.active .route-stop-num { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-white); }
.route-detail-panel {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg); box-shadow: var(--sh-card);
  padding: 2rem; height: 100%;
}
.route-detail-panel h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--c-text);
  display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem;
}
.route-detail-panel p { font-size: .9rem; color: var(--c-text-muted); line-height: 1.7; margin: 0; }


/* ============================================================
   BOOKING v3 — Tour selection, step wizard, summary add-ons
   ============================================================ */

/* Step visibility */
.booking-step[hidden] { display: none; }

/* Tour selection grid */
.tour-select-grid { display: flex; flex-direction: column; gap: .75rem; }
.tour-select-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.tour-select-card:hover { border-color: var(--c-border-medium); box-shadow: var(--sh-sm); }
.tsc-layout {
  display: flex; gap: 1rem; align-items: flex-start;
}
.tsc-layout-body { flex: 1; min-width: 0; }
.tsc-thumb {
  width: 72px; flex-shrink: 0;
  aspect-ratio: 2/3; border-radius: var(--r-md);
  overflow: hidden; background: var(--c-bg-section);
  border: 1px solid var(--c-border);
}
.tsc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-select-card.active {
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(212, 168, 84, .18);
}
.tsc-top { display: flex; align-items: flex-start; gap: .65rem; }
.tsc-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--c-border); flex-shrink: 0; margin-top: .15rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s ease;
}
.tour-select-card.active .tsc-radio { border-color: var(--c-primary); }
.tour-select-card.active .tsc-radio::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--c-primary);
}
/* Single preselected tour card — display only, not clickable */
.tour-select-card.single { cursor: default; }
.tour-select-card.single:hover { box-shadow: none; }
.tsc-main { flex: 1; min-width: 0; }
.tsc-name { font-size: .92rem; font-weight: 700; color: var(--c-text); }
.tsc-meta { font-size: .76rem; color: var(--c-text-muted); margin-top: .15rem; }
.tsc-price { text-align: right; white-space: nowrap; flex-shrink: 0; }
.tsc-price-now { font-size: 1.02rem; font-weight: 800; color: var(--c-gold); }
.tsc-price-old { display: block; font-size: .72rem; font-weight: 600; color: var(--c-text-light); text-decoration: line-through; }
.tsc-price-unit { display: block; font-size: .68rem; color: var(--c-text-muted); font-weight: 500; }
.tsc-desc { font-size: .78rem; color: var(--c-text-muted); line-height: 1.5; margin: .55rem 0 0; }
.tsc-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.tsc-badge {
  font-size: .66rem; font-weight: 600; padding: .22rem .55rem;
  border-radius: 999px; background: var(--c-bg); border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}
.tour-select-card.active .tsc-badge { background: var(--c-surface); }

/* Tour details accordion inside card */
.tsc-details-toggle {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .74rem; font-weight: 600; color: var(--c-primary);
  background: none; border: 0; padding: .55rem 0 0; cursor: pointer;
}
.tsc-details-toggle i { transition: transform .2s ease; font-size: .62rem; }
.tsc-details-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.tsc-details {
  display: none; margin-top: .65rem; padding-top: .65rem;
  border-top: 1px dashed var(--c-border); font-size: .78rem; color: var(--c-text-muted);
}
.tsc-details.open { display: block; }
.tsc-details h6 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--c-text); margin: .6rem 0 .3rem;
}
.tsc-details h6:first-child { margin-top: 0; }
.tsc-details ul { margin: 0; padding: 0 0 0 1rem; display: flex; flex-direction: column; gap: .15rem; }

/* Photo & video radio options */
.pv-option {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .75rem; border: 1px solid var(--c-border);
  border-radius: var(--r-md); margin-bottom: .45rem; cursor: pointer;
  font-size: .8rem; color: var(--c-text); transition: border-color .15s ease, background .15s ease;
}
.pv-option:last-child { margin-bottom: 0; }
.pv-option:hover { border-color: var(--c-primary-100); }
.pv-option.selected { border-color: var(--c-primary); background: var(--c-primary-50); }
.pv-option input { flex-shrink: 0; accent-color: var(--c-primary); }
.pv-option .pv-label { flex: 1; }
.pv-option .pv-price { font-weight: 700; font-size: .78rem; white-space: nowrap; }

/* Continue hint under disabled button */
.continue-hint {
  text-align: center; font-size: .76rem; color: var(--c-text-muted);
  margin-top: .6rem;
}
.continue-hint.warn { color: var(--c-warning); font-weight: 600; }

/* Itemized add-ons in summary card */
.summary-addons-list {
  list-style: none; margin: .1rem 0 .35rem; padding: 0 0 0 .35rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.summary-addons-list li {
  display: flex; justify-content: space-between; gap: .75rem;
  font-size: .73rem; color: var(--c-text-muted);
}
.summary-addons-list li span:last-child { font-weight: 600; color: var(--c-text); white-space: nowrap; }

/* ─── OUR HORSES PAGE ─── */
.horse-profile-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); overflow: hidden;
  height: 100%; transition: var(--tr-base);
  display: flex; flex-direction: column;
}
.horse-profile-card:hover {
  border-color: var(--c-gold); box-shadow: var(--sh-card-hover);
  transform: translateY(-3px);
}
.horse-profile-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--c-bg-section); }
.horse-profile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.horse-profile-card:hover .horse-profile-img img { transform: scale(1.04); }
.horse-profile-body { padding: 1.2rem 1.35rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.horse-profile-name { font-size: 1.05rem; font-weight: 800; color: var(--c-text); line-height: 1.2; }
.horse-profile-breed {
  font-size: .68rem; font-weight: 700; color: var(--c-gold);
  text-transform: uppercase; letter-spacing: .07em; margin-top: .25rem;
}
.horse-profile-meta { font-size: .78rem; color: var(--c-text-muted); margin: .45rem 0 .6rem; }
.horse-profile-desc { font-size: .82rem; color: var(--c-text-muted); line-height: 1.62; margin: 0; flex: 1; }
.horse-trait-pills { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .85rem; }
.horse-trait-pill {
  font-size: .66rem; font-weight: 600; padding: .22rem .58rem;
  border-radius: var(--r-full); background: var(--c-surface-soft);
  border: 1px solid var(--c-border); color: var(--c-text-secondary);
}

.horses-care-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem;
}
@media (min-width:768px) { .horses-care-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.horses-care-item {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 1.15rem;
  display: flex; gap: .75rem; align-items: flex-start;
}
.horses-care-item i {
  width: 36px; height: 36px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); background: var(--c-green-bg);
  color: var(--c-green); font-size: .9rem;
}
.horses-care-item h4 { font-size: .84rem; font-weight: 700; color: var(--c-text); margin: 0 0 .25rem; }
.horses-care-item p { font-size: .76rem; color: var(--c-text-muted); margin: 0; line-height: 1.55; }

.horses-license-banner {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-gold); border-radius: var(--r-xl);
  padding: 1.5rem 1.75rem; box-shadow: var(--sh-card);
}

/* ─── TOUR ROUTE OPTIONS (detail pages) ─── */
.tour-route-option {
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  background: var(--c-bg-section);
  padding: 1.15rem 1.2rem;
  margin-bottom: .75rem;
}
.tour-route-option:last-child { margin-bottom: 0; }
.tour-route-option--featured {
  border-color: rgba(212, 168, 84, .35);
  background: linear-gradient(135deg, var(--c-white) 0%, var(--c-gold-soft) 100%);
}

/* ─── BOOKING ROUTE PICKER ─── */
.booking-route-options { display: flex; flex-direction: column; gap: .65rem; }
.booking-route-option {
  display: flex; align-items: center; gap: .85rem;
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  background: var(--c-bg-section);
  padding: .95rem 1rem;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.booking-route-option input { flex-shrink: 0; accent-color: var(--c-primary); }
.booking-route-option-body { flex: 1; min-width: 0; }
.booking-route-option-title {
  display: flex; align-items: center; gap: .45rem;
  font-weight: 700; color: var(--c-text); font-size: .92rem;
}
.booking-route-option-desc {
  display: block; margin-top: .2rem;
  font-size: .78rem; color: var(--c-text-muted); line-height: 1.35;
}
.booking-route-option-price {
  font-weight: 700; color: var(--c-primary); font-size: .95rem; white-space: nowrap;
}
.booking-route-option.is-selected,
.booking-route-option:has(input:checked) {
  border-color: rgba(11, 95, 140, .45);
  box-shadow: 0 0 0 1px rgba(11, 95, 140, .12);
  background: var(--c-white);
}
.booking-route-option--featured {
  border-color: rgba(212, 168, 84, .35);
  background: linear-gradient(135deg, var(--c-white) 0%, var(--c-gold-soft) 100%);
}
.booking-route-badge {
  font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--c-gold-dark, #8a6a1f); background: rgba(212, 168, 84, .18);
  border-radius: 999px; padding: .12rem .45rem;
}

/* ─── HOMEPAGE DISCOUNT MODAL ─── */
.discount-modal {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.discount-modal.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.discount-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 31, 48, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.discount-modal-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  background: var(--c-primary);
  border: 1px solid rgba(212, 168, 84, .45);
  border-radius: 22px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 48px rgba(11, 31, 48, .35);
  text-align: center;
  transform: scale(.96) translateY(8px);
  transition: transform .28s ease;
}
.discount-modal.is-open .discount-modal-panel {
  transform: scale(1) translateY(0);
}
.discount-modal-close {
  position: absolute; top: .85rem; right: .85rem;
  width: 36px; height: 36px;
  border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .75);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr-fast);
}
.discount-modal-close:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}
.discount-modal-close:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}
.discount-modal-icon {
  width: 56px; height: 56px; margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.discount-modal-icon--success { background: var(--c-green); color: #fff; }
.discount-modal-title {
  font-size: 1.45rem; font-weight: 800; color: #fff;
  margin: 0 0 .35rem; line-height: 1.2;
}
.discount-modal-subtitle {
  font-size: 1rem; font-weight: 700; color: var(--c-gold-light);
  margin: 0 0 .75rem;
}
.discount-modal-desc {
  font-size: .875rem; color: rgba(255, 255, 255, .78);
  line-height: 1.6; margin: 0 0 1.25rem;
}
.discount-modal-desc strong { color: var(--c-gold-light); }
.discount-modal-input {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}
.discount-modal-input::placeholder { color: rgba(255, 255, 255, .45); }
.discount-modal-input:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 84, .25);
  background: rgba(255, 255, 255, .1);
}
.discount-modal-input.error {
  border-color: var(--c-error);
  background: rgba(220, 38, 38, .12);
}
.discount-modal-error { color: #fca5a5; text-align: left; }
.discount-modal-fine {
  font-size: .72rem; color: rgba(255, 255, 255, .5);
  margin: .85rem 0 .65rem;
}
.discount-modal-browse {
  display: inline-block;
  font-size: .82rem; font-weight: 600;
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.discount-modal-browse:hover { color: var(--c-gold-light); }
.discount-modal-success { padding-top: .25rem; }
.discount-modal-success .discount-modal-desc { margin-bottom: 1.35rem; }
@media (max-width: 479px) {
  .discount-modal-panel { padding: 1.75rem 1.25rem 1.5rem; border-radius: 20px; }
  .discount-modal-title { font-size: 1.25rem; }
}
