/* =============================================================
   CAB Morocco – Main Stylesheet
   Colors: --navy #0B1F3A | --gold #E8A020 | --gold-dark #C07A10
   Fonts:  Plus Jakarta Sans (body) | Instrument Serif (display)
   No inline CSS anywhere – all styles here.
============================================================= */

/* ── 1. CSS Variables ── */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #162D52;
  --navy-light:  #1E3A6E;
  --gold:        #E8A020;
  --gold-dark:   #C07A10;
  --gold-light:  #F5C060;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --grey-100:    #F0F2F5;
  --grey-200:    #E2E6EA;
  --grey-300:    #C8CDD5;
  --grey-500:    #8A95A3;
  --text:        #1A2332;
  --text-mid:    #3D4F63;
  --text-muted:  #6B7E93;
  --whatsapp:    #25D366;
  --whatsapp-dk: #128C7E;
  --error:       #D93025;
  --success:     #1A7A4A;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --container:   1180px;
  --header-h:    70px;
  --font-body:   'Plus Jakarta Sans', sans-serif;
  --font-serif:  'Instrument Serif', serif;
  --transition:  0.22s ease;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── 3. Layout Utilities ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 110px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--off { background: var(--off-white); }
.section--grey { background: var(--grey-100); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── 4. Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

.section-label { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.18; margin-bottom: 16px; }
.section-desc  { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-desc { margin: 0 auto; }

.serif { font-family: var(--font-serif); font-style: italic; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-sm     { font-size: .9rem; }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }

/* ── 5. Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-family: var(--font-body);
  font-weight: 700; font-size: .95rem; line-height: 1; cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent; text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

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

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

.btn-outline { background: transparent; color: var(--navy); border-color: var(--grey-300); }
.btn-outline:hover { border-color: var(--navy); }
.btn-outline--white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline--white:hover { border-color: var(--white); }

.btn-whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: var(--whatsapp-dk); border-color: var(--whatsapp-dk); }

.btn-sm  { padding: 10px 20px; font-size: .875rem; }
.btn-lg  { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── 6. Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); background: var(--white);
  box-shadow: 0 1px 0 var(--grey-200), 0 2px 12px rgba(0,0,0,.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.header--transparent { background: transparent; box-shadow: none; }
.header--transparent .nav-link,
.header--transparent .header-phone,
.header--transparent .lang-current { color: var(--white); }
.header--transparent .hamburger-bar { background: var(--white); }
.header--scrolled { background: var(--white) !important; box-shadow: 0 2px 16px rgba(0,0,0,.09) !important; }
.header--scrolled .nav-link,
.header--scrolled .header-phone,
.header--scrolled .lang-current { color: var(--navy) !important; }
.header--scrolled .hamburger-bar { background: var(--navy) !important; }

.header-inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); }

.logo { flex-shrink: 0; }
.logo img { height: 36px; width: auto; }

/* Desktop nav */
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; padding: 8px 12px; border-radius: 8px;
  font-size: .9rem; font-weight: 600; color: var(--text); transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link--active { color: var(--navy); background: var(--grey-100); }
.nav-dropdown-toggle { background: none; border: none; padding: 8px 12px; }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  min-width: 220px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--grey-200);
  padding: 8px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown,
.nav-item--has-dropdown.open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: block; padding: 10px 14px; border-radius: 8px; font-size: .9rem; font-weight: 500;
  color: var(--text-mid); transition: background var(--transition), color var(--transition);
}
.nav-dropdown-link:hover { background: var(--off-white); color: var(--navy); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--navy); transition: color var(--transition); }
.header-phone:hover { color: var(--gold-dark); }
.header-phone-text { display: none; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 5px; padding: 7px 11px; border-radius: 8px;
  font-size: .85rem; font-weight: 700; color: var(--navy); transition: background var(--transition);
}
.lang-current:hover { background: var(--grey-100); }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 180px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200); padding: 6px; opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 100;
}
.lang-switcher.open .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown { opacity: 1; visibility: visible; }
.lang-dropdown li a {
  display: block; padding: 9px 12px; border-radius: 6px; font-size: .875rem; font-weight: 500;
  color: var(--text-mid); transition: background var(--transition);
}
.lang-dropdown li a:hover { background: var(--off-white); color: var(--navy); }
.lang-dropdown [aria-selected="true"] a { color: var(--gold-dark); font-weight: 700; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.hamburger:hover { background: var(--grey-100); }
.hamburger-bar { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger.open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. Mobile Nav ── */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 92vw); z-index: 1100;
  background: var(--white); transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { padding: 20px; display: flex; flex-direction: column; gap: 24px; min-height: 100%; }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-close { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; color: var(--text-mid); transition: background var(--transition); }
.mobile-nav-close:hover { background: var(--grey-100); }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-link { display: block; padding: 13px 0; font-size: 1rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--grey-200); transition: color var(--transition); }
.mobile-nav-link:hover { color: var(--gold-dark); }
.mobile-nav-divider { border-bottom: 2px solid var(--grey-200); margin: 4px 0; }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 10px; }
.mobile-lang-switcher { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; margin-top: auto; }
.mobile-lang-pill { padding: 6px 12px; border-radius: 20px; font-size: .8rem; font-weight: 700; color: var(--text-mid); border: 1px solid var(--grey-200); transition: all var(--transition); }
.mobile-lang-pill:hover { border-color: var(--navy); color: var(--navy); }
.mobile-lang-pill--active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Overlay */
.mobile-overlay { position: fixed; inset: 0; background: rgba(11,31,58,.55); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; backdrop-filter: blur(3px); }
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ── 8. WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ── 9. Hero Section ── */
.hero {
  position: relative; min-height: 620px; display: flex; align-items: center;
  background: var(--navy); color: var(--white); padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/assets/images/hero-marrakech.webp');
  background-size: cover; background-position: center;
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,31,58,.85) 0%, rgba(11,31,58,.6) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(232,160,32,.15); border: 1px solid rgba(232,160,32,.4); border-radius: 20px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.12; color: var(--white); margin-bottom: 18px; }
.hero-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 2px; }

/* ── 10. Booking Form ── */
.booking-widget {
  background: var(--white); border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-lg); max-width: 820px;
}
.booking-widget--hero { margin-top: 40px; }
.booking-steps { display: flex; gap: 0; border-bottom: 2px solid var(--grey-200); margin-bottom: 28px; }
.booking-step-tab { flex: 1; text-align: center; padding: 12px 8px; font-size: .85rem; font-weight: 700; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: color var(--transition), border-color var(--transition); }
.booking-step-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.booking-step-content { display: none; }
.booking-step-content.active { display: block; }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .82rem; font-weight: 700; color: var(--text-mid); letter-spacing: .03em; text-transform: uppercase; }
.form-control {
  width: 100%; padding: 12px 16px; border-radius: var(--radius); border: 1.5px solid var(--grey-300);
  font-size: .95rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,160,32,.15); }
.form-control--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' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7E93' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-control.error { border-color: var(--error); }
.form-error-msg { font-size: .8rem; color: var(--error); margin-top: 4px; display: none; }
.form-control.error + .form-error-msg { display: block; }
.booking-submit { width: 100%; margin-top: 20px; }
.return-toggle { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: var(--text-mid); cursor: pointer; }
.return-toggle input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }

/* Multi-step booking */
.booking-progress { display: flex; align-items: center; gap: 0; margin-bottom: 32px; }
.booking-progress-step { flex: 1; display: flex; align-items: center; }
.step-circle { width: 32px; height: 32px; border-radius: 50%; background: var(--grey-200); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; flex-shrink: 0; transition: all var(--transition); }
.step-circle.done { background: var(--gold); color: var(--navy); }
.step-circle.active { background: var(--navy); color: var(--white); }
.step-label { font-size: .78rem; font-weight: 600; color: var(--text-muted); margin-left: 8px; white-space: nowrap; }
.step-label.active { color: var(--navy); }
.step-line { flex: 1; height: 2px; background: var(--grey-200); margin: 0 8px; }
.step-line.done { background: var(--gold); }

/* Vehicle cards */
.vehicle-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.vehicle-card {
  border: 2px solid var(--grey-200); border-radius: var(--radius-lg); padding: 24px 20px;
  text-align: center; cursor: pointer; transition: all var(--transition);
}
.vehicle-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.vehicle-card.selected { border-color: var(--gold); background: rgba(232,160,32,.06); box-shadow: 0 0 0 3px rgba(232,160,32,.2); }
.vehicle-card-img { width: 120px; height: 70px; object-fit: contain; margin: 0 auto 16px; }
.vehicle-card-name { font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.vehicle-card-pax { font-size: .85rem; color: var(--text-muted); margin-bottom: 12px; }
.vehicle-card-price { font-size: 1.4rem; font-weight: 800; color: var(--gold-dark); }
.vehicle-card-price span { font-size: .8rem; font-weight: 600; color: var(--text-muted); }

/* Payment options */
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.payment-option {
  border: 2px solid var(--grey-200); border-radius: var(--radius-lg); padding: 20px;
  cursor: pointer; transition: all var(--transition); display: flex; align-items: flex-start; gap: 14px;
}
.payment-option:hover { border-color: var(--navy); }
.payment-option.selected { border-color: var(--navy); background: rgba(11,31,58,.03); }
.payment-option-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--grey-300); flex-shrink: 0; margin-top: 2px; transition: all var(--transition); position: relative; }
.payment-option.selected .payment-option-radio { border-color: var(--navy); }
.payment-option.selected .payment-option-radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--navy); }
.payment-option-title { font-weight: 700; margin-bottom: 4px; }
.payment-option-desc { font-size: .85rem; color: var(--text-muted); }
.paypal-fee-note { font-size: .78rem; color: var(--gold-dark); font-weight: 600; margin-top: 6px; display: none; }
.paypal-fee-note.visible { display: block; }

/* Order summary box */
.order-summary { background: var(--off-white); border-radius: var(--radius-lg); padding: 24px; margin-top: 24px; }
.order-summary-title { font-weight: 800; margin-bottom: 16px; }
.order-summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--grey-200); font-size: .9rem; }
.order-summary-row:last-child { border-bottom: none; }
.order-summary-total { font-size: 1.2rem; font-weight: 800; color: var(--navy); }

/* ── 11. Trust Bar ── */
.trust-bar { background: var(--navy); color: var(--white); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 600; }
.trust-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ── 12. Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--grey-200); transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; gap: 16px;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(232,160,32,.1); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); }
.service-title { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.service-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.service-link { font-size: .875rem; font-weight: 700; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* ── 13. Route / Pricing Table ── */
.pricing-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-table th { background: var(--navy); color: var(--white); padding: 14px 20px; text-align: left; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pricing-table td { padding: 13px 20px; border-bottom: 1px solid var(--grey-200); font-size: .9rem; vertical-align: middle; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--off-white); }
.pricing-table td:first-child { font-weight: 600; color: var(--navy); }
.price-cell { font-weight: 700; color: var(--gold-dark); white-space: nowrap; }
.pricing-table .btn { padding: 8px 18px; font-size: .82rem; }

/* ── 14. Destination Cards ── */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 3/4; display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover .dest-card-img { transform: scale(1.05); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,.85) 0%, transparent 55%); }
.dest-card-content { position: relative; z-index: 1; margin-top: auto; padding: 20px; color: var(--white); }
.dest-card-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.dest-card-from { font-size: .82rem; color: rgba(255,255,255,.8); }
.dest-card-price { font-size: .95rem; font-weight: 800; color: var(--gold); margin-top: 8px; }

/* ── 15. Why Choose Us ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-item { text-align: center; }
.feature-icon-wrap { width: 68px; height: 68px; border-radius: 50%; background: rgba(232,160,32,.12); display: flex; align-items: center; justify-content: center; color: var(--gold); margin: 0 auto 18px; }
.feature-title { font-weight: 800; margin-bottom: 10px; color: var(--white); }
.feature-desc { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.65; }

/* ── 16. Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--grey-200); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: .95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grey-200); object-fit: cover; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-meta { font-size: .8rem; color: var(--text-muted); }

/* ── 17. FAQ Accordion ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-200); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; text-align: left; font-size: 1rem; font-weight: 700; color: var(--navy);
  cursor: pointer; transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--grey-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--transition), transform var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: .95rem; color: var(--text-mid); line-height: 1.75; }

/* ── 18. Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-200); background: var(--white); transition: box-shadow var(--transition), transform var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-tag { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dark); margin-bottom: 8px; }
.blog-card-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.blog-card-title a:hover { color: var(--gold-dark); }
.blog-card-meta { font-size: .8rem; color: var(--text-muted); }
.blog-card-excerpt { font-size: .875rem; color: var(--text-mid); line-height: 1.65; margin-top: 10px; }

/* Article layout */
.article-header { max-width: 760px; margin: 0 auto; text-align: center; padding: 60px 0 40px; }
.article-body { max-width: 760px; margin: 0 auto; padding-bottom: 80px; }
.article-body h2 { margin: 40px 0 16px; }
.article-body h3 { margin: 28px 0 12px; }
.article-body p { margin-bottom: 18px; line-height: 1.8; color: var(--text-mid); }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { margin-bottom: 8px; line-height: 1.7; color: var(--text-mid); }
.article-body img { border-radius: var(--radius-lg); margin: 28px 0; width: 100%; }
.article-body a { color: var(--gold-dark); text-decoration: underline; }

/* ── 19. CTA Band ── */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 72px 0; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: url('/assets/svg/pattern.svg') center/auto repeat; opacity: .04; }
.cta-band-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-band-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-band-desc { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── 20. Page Hero (inner pages) ── */
.page-hero { background: var(--navy); color: var(--white); padding: 100px 0 56px; margin-top: var(--header-h); }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,.4); }
.page-hero-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.page-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 580px; line-height: 1.7; }

/* ── 21. Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(232,160,32,.1); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); flex-shrink: 0; }
.contact-info-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: .95rem; font-weight: 600; color: var(--navy); }

/* ── 22. Route Page ── */
.route-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.route-highlight { background: var(--off-white); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.route-highlight-num { font-size: 1.6rem; font-weight: 800; color: var(--gold-dark); }
.route-highlight-label { font-size: .85rem; color: var(--text-mid); margin-top: 4px; }

/* ── 23. Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: background var(--transition), color var(--transition); }
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-heading { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-link:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; }
.footer-contact-list svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-legal-nav { display: flex; align-items: center; gap: 12px; }
.footer-legal-link { font-size: .8rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-legal-link:hover { color: var(--gold); }

/* ── 24. Legal pages ── */
.legal-content { max-width: 780px; margin: 0 auto; padding: 60px 0 80px; }
.legal-content h2 { margin: 40px 0 14px; }
.legal-content p { margin-bottom: 16px; color: var(--text-mid); line-height: 1.8; }
.legal-content ul { margin: 0 0 18px 22px; }
.legal-content li { margin-bottom: 8px; color: var(--text-mid); line-height: 1.7; }

/* ── 25. Misc helpers ── */
.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: .75rem; font-weight: 700; }
.badge-gold { background: rgba(232,160,32,.15); color: var(--gold-dark); }
.badge-navy { background: rgba(11,31,58,.08); color: var(--navy); }
.divider { height: 1px; background: var(--grey-200); border: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Lazy-load fade-in */
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s ease; }
img.loaded { opacity: 1; }

/* ── 26. Responsive ── */

/* ≤1100px */
@media (max-width: 1100px) {
  .header-phone-text { display: inline; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ≤900px */
@media (max-width: 900px) {
  .site-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .header-book-btn { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .vehicle-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 20px; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-form-grid--3 { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
}

/* ≤600px */
@media (max-width: 600px) {
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .route-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .trust-bar-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pricing-table { font-size: .82rem; }
  .pricing-table th, .pricing-table td { padding: 10px 12px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .booking-widget { padding: 20px; }
}

/* ── Print ── */
@media print {
  .site-header, .site-footer, .whatsapp-float, .mobile-nav, .mobile-overlay { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .hero, .cta-band { background: #fff !important; color: #000 !important; padding: 20pt 0 !important; }
}

/* ============================================================
   ADDITIONAL COMPONENT STYLES
   ============================================================ */

/* ── Route facts strip ── */
.route-facts { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); gap: 12px; margin: 32px 0; }
.fact { background: var(--off-white); border-radius: var(--radius); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.fact-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
.fact-value { font-size: 1rem; font-weight: 700; color: var(--navy); }

/* ── Hero price strip ── */
.hero-price-strip { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin: 16px 0 24px; font-size: .95rem; color: rgba(255,255,255,.85); }
.hero-price-strip strong { color: var(--gold); font-size: 1.15rem; }

/* ── Process steps (airport) ── */
.process-steps { list-style: none; counter-reset: steps; display: flex; flex-direction: column; gap: 28px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.process-step h3 { margin-bottom: 4px; }

/* ── Info grid (airport info) ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 12px; margin-top: 24px; }
.info-item { display: flex; flex-direction: column; gap: 3px; padding: 12px 16px; background: var(--off-white); border-radius: var(--radius); }
.info-item strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
.info-item span { font-size: .93rem; color: var(--text); }

/* ── Vehicle detail cards ── */
.vehicle-detail { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.vehicle-pax { font-size: .88rem; color: var(--gold-dark); font-weight: 700; margin: 6px 0 2px; }
.vehicle-models { font-size: .85rem; color: var(--text-muted); margin-bottom: 12px; }
.vehicle-features { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.vehicle-features li { background: var(--off-white); border-radius: 20px; padding: 4px 12px; font-size: .82rem; color: var(--text-mid); }

/* ── Routes grid ── */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; }
.route-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: block; transition: border-color .2s, box-shadow .2s; }
.route-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(11,31,58,.08); }
.route-cities { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.route-meta { display: flex; justify-content: space-between; font-size: .83rem; color: var(--text-muted); }

/* ── Packages grid ── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 20px; }
.package-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.package-card--featured { border-color: var(--gold); background: #fffbf2; }
.package-duration { font-size: .85rem; color: var(--gold-dark); font-weight: 700; }
.package-card .badge { position: absolute; top: -10px; right: 16px; background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 10px; border-radius: 20px; }

/* ── Itinerary steps ── */
.itinerary-steps { display: flex; flex-direction: column; gap: 0; }
.itinerary-step { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.itinerary-step:last-child { border-bottom: none; }
.step-day { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); padding-top: 4px; }
.itinerary-step h3 { margin-bottom: 8px; font-size: 1rem; }

/* ── Two-column text layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }

/* ── Price note ── */
.price-note { font-size: .82rem; color: var(--text-muted); margin-top: 12px; }

/* ── Payment grid ── */
.payment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 640px) { .payment-grid { grid-template-columns: 1fr; } }
.payment-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.badge--green { background: #d1fae5; color: #065f46; font-size: .78rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; display: inline-block; width: fit-content; }
.badge--amber { background: #fef3c7; color: #92400e; font-size: .78rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; display: inline-block; width: fit-content; }

/* ── Destinations grid ── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; }
.dest-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; display: block; transition: border-color .2s, box-shadow .2s; text-decoration: none; }
.dest-card:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(11,31,58,.09); }
.dest-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.dest-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.dest-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.5; }

/* ── Fleet grid (simple) ── */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 20px; }
.fleet-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.fleet-pax { font-size: .85rem; color: var(--gold-dark); font-weight: 700; margin: 6px 0 10px; }

/* ── Highlights list ── */
.highlights-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; padding-left: 0; list-style: none; }
.highlights-list li { padding: 10px 14px; background: var(--off-white); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; font-size: .93rem; }

/* ── Legal content ── */
.legal-content h2 { font-size: 1.15rem; margin: 32px 0 10px; color: var(--navy); }
.legal-content p, .legal-content ul { margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 6px; }

/* ── Container narrow ── */
.container--narrow { max-width: 780px; }

/* ── Article styles ── */
.article-hero { background: var(--off-white); padding: 48px 0 40px; border-bottom: 1px solid var(--border); }
.article-meta { font-size: .85rem; color: var(--text-muted); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 12px 0 20px; }
.article-intro { font-size: 1.1rem; line-height: 1.7; color: var(--text-mid); }
.article-body { padding: 48px 20px; margin: 0 auto; }
.article-body h2 { font-size: 1.35rem; margin: 40px 0 14px; color: var(--navy); }
.article-body h3 { font-size: 1.05rem; margin: 28px 0 10px; color: var(--navy); }
.article-body p { margin-bottom: 16px; line-height: 1.8; color: var(--text); }
.article-body ul, .article-body ol { margin: 0 0 16px 20px; line-height: 1.8; }
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-related { padding: 32px 20px; margin: 0 auto; border-top: 1px solid var(--border); }
.article-related h2 { font-size: 1.1rem; margin-bottom: 14px; }
.article-related ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.article-related li a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-cta { padding: 40px 20px; margin: 0 auto; }
.cta-box { background: var(--navy); color: white; padding: 36px; border-radius: var(--radius-lg); text-align: center; }
.cta-box h2 { color: white; font-size: 1.4rem; margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,.8); margin-bottom: 20px; }

/* ── CTA Banner section ── */
.cta-banner { background: var(--navy); color: white; padding: 72px 0; text-align: center; }
.cta-banner h2 { color: white; font-size: 1.9rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Page hero ── */
.page-hero { background: var(--navy); color: white; padding: 56px 0 48px; }
.page-hero h1 { color: white; font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 14px; }
.page-hero .hero-sub { color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.65; max-width: 640px; margin-bottom: 24px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 20px; }
.breadcrumb li { font-size: .82rem; color: rgba(255,255,255,.55); }
.breadcrumb li:not(:last-child)::after { content: ' /'; margin-left: 4px; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }

/* ── Thank you page ── */
.ty-icon { font-size: 3.5rem; margin: 0 auto 20px; }
.text-center { text-align: center; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 32px; }
.link { color: var(--gold-dark); text-decoration: underline; }

/* ── Table responsive wrapper ── */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 20px 0; border-radius: var(--radius); border: 1px solid var(--border); }
.price-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.price-table thead { background: var(--navy); color: white; }
.price-table th { padding: 13px 16px; text-align: left; font-weight: 600; white-space: nowrap; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: #f9fafb; }

