/* ===== tour-detail.css (inline) — fonts loaded non-blocking via <link preload> above ===== */
/* MyDominicanTrip · Home page — full design system applied */

/* --- inlined: colors_and_type.css --- */

/* =========================================================================
   MyDominicanTrip — Brand tokens
   Colors + typography for web, email, mobile booking, social.
   Anchored to the official logo palette (Dominican flag: red + navy).
   ========================================================================= */

/* ---------- Google Fonts ---------- */


:root {
  /* ============== BRAND CORE (from the logo — do not invent others) =========
     Patriotic red + navy = Dominican Republic flag.
     Aguamarina, verde, amarillo, arena are caribbean accents.
  ============================================================================ */

  --mdt-red:        #DC2626;   /* "My" / "Trip" / primary CTA */
  --mdt-navy:       #1A2A52;   /* "Dominican" / headings / body */
  --mdt-aqua:       #3EC1D3;   /* Caribbean sea */
  --mdt-green:      #2D5016;   /* Palm trees */
  --mdt-yellow:     #FFD60A;   /* Sun */
  --mdt-sand:       #F4D9B0;   /* Beach */
  --mdt-white:      #FFFFFF;

  /* ============== RED SCALE — primary CTA & accent ============== */
  --red-50:  #FEF2F2;
  --red-100: #FEE2E2;
  --red-200: #FECACA;
  --red-300: #FCA5A5;
  --red-400: #F87171;
  --red-500: #DC2626;   /* brand */
  --red-600: #C81E1E;
  --red-700: #A31818;
  --red-800: #7F1313;
  --red-900: #5C0E0E;

  /* ============== NAVY SCALE — headings, footer, deep surfaces ============== */
  --navy-50:  #EEF1F8;
  --navy-100: #D8DEEC;
  --navy-200: #B1BDD9;
  --navy-300: #8A9CC5;
  --navy-400: #5E72A0;
  --navy-500: #34487A;
  --navy-600: #233863;
  --navy-700: #1A2A52;   /* brand */
  --navy-800: #131F3D;
  --navy-900: #0C152A;

  /* ============== AQUA SCALE — Caribbean accents, info, imagery overlays === */
  --aqua-50:  #ECFAFC;
  --aqua-100: #CFF3F7;
  --aqua-200: #A2E5ED;
  --aqua-300: #6FD4E2;
  --aqua-400: #3EC1D3;   /* brand */
  --aqua-500: #1FA8BB;
  --aqua-600: #138899;
  --aqua-700: #0F6A78;
  --aqua-800: #0B4F59;
  --aqua-900: #073640;

  /* ============== GREEN SCALE — tropical / success ============== */
  --green-50:  #EDF3E5;
  --green-100: #D2E1B9;
  --green-200: #ACC988;
  --green-300: #84AE56;
  --green-400: #5E8E33;
  --green-500: #437021;
  --green-600: #2D5016;   /* brand */
  --green-700: #233F11;
  --green-800: #182C0C;
  --green-900: #0E1A07;

  /* ============== YELLOW / SUN SCALE — warnings, highlights ============== */
  --yellow-50:  #FFF9D6;
  --yellow-100: #FFF1A8;
  --yellow-200: #FFE76A;
  --yellow-300: #FFDC2E;
  --yellow-400: #FFD60A;   /* brand */
  --yellow-500: #E6BD00;
  --yellow-600: #B89700;
  --yellow-700: #8A7100;
  --yellow-800: #5C4B00;
  --yellow-900: #2E2500;

  /* ============== SAND SCALE — warm neutral, beach imagery, callouts ===== */
  --sand-50:  #FDF7EB;
  --sand-100: #FBEFD7;
  --sand-200: #F8E5BD;
  --sand-300: #F4D9B0;   /* brand */
  --sand-400: #ECC58A;
  --sand-500: #D9A95E;
  --sand-600: #B58838;
  --sand-700: #8B6726;
  --sand-800: #5E4519;
  --sand-900: #33260D;

  /* ============== GRAY / NEUTRAL — UI scaffolding ============== */
  --gray-0:   #FFFFFF;
  --gray-50:  #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;

  /* ============== SEMANTIC TOKENS ============== */
  --color-success:        var(--green-500);
  --color-success-bg:     var(--green-50);
  --color-warning:        var(--yellow-500);
  --color-warning-bg:     var(--yellow-50);
  --color-error:          var(--red-500);
  --color-error-bg:       var(--red-50);
  --color-info:           var(--aqua-500);
  --color-info-bg:        var(--aqua-50);

  /* ============== SURFACE / FOREGROUND ROLES (use these in components) === */
  --bg:                   var(--gray-0);
  --bg-soft:              var(--gray-50);
  --bg-muted:             var(--gray-100);
  --bg-deep:              var(--navy-700);    /* footers, hero panels */
  --bg-deep-2:            var(--navy-800);
  --bg-sand:              var(--sand-50);

  --fg-1:                 var(--navy-700);    /* headings */
  --fg-2:                 var(--gray-800);    /* body */
  --fg-3:                 var(--gray-600);    /* secondary */
  --fg-4:                 var(--gray-500);    /* muted, captions */
  --fg-on-dark:           #FFFFFF;
  --fg-on-dark-soft:      rgba(255,255,255,0.78);

  --border:               var(--gray-200);
  --border-strong:        var(--gray-300);
  --border-on-dark:       rgba(255,255,255,0.16);

  --link:                 var(--red-500);
  --link-hover:           var(--red-600);

  /* ============== ELEVATION / SHADOWS ============== */
  --shadow-xs:  0 1px 2px rgba(26,42,82,0.06);
  --shadow-sm:  0 2px 6px rgba(26,42,82,0.08);
  --shadow-md:  0 8px 20px rgba(26,42,82,0.10);
  --shadow-lg:  0 20px 40px rgba(26,42,82,0.14);
  --shadow-xl:  0 30px 60px rgba(26,42,82,0.20);
  --shadow-red: 0 8px 18px rgba(220,38,38,0.28);

  /* ============== RADII ============== */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-pill: 9999px;

  /* ============== SPACING (4-pt scale) ============== */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-7:  32px;
  --s-8:  40px;
  --s-9:  48px;
  --s-10: 64px;
  --s-11: 80px;
  --s-12: 96px;
  --s-13: 128px;

  /* ============== TYPOGRAPHY ============== */
  /* Display script — reserved for the logo wordmark itself.
     Pacifico is the closest free match to the custom hand-lettering. */
  --font-display: 'Pacifico', 'Yellowtail', 'Lobster', cursive;

  /* Heading — Montserrat 800. Tight tracking, balanced wrap. */
  --font-heading: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Accent — Playfair Display Italic. Used only for the *one word* in a
     headline that does the emotional work: "Caribe Auténtico",
     "en República Dominicana", "sin complicaciones". Editorial premium. */
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Body — Inter. Performant, neutral, designed for screens. */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Mono — for prices, dates, confirmation codes. */
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Type scale — mobile-first (60%+ traffic). Use clamp for fluid behavior. */
  --fs-display-1: clamp(48px, 7vw, 96px);     /* hero word */
  --fs-display-2: clamp(40px, 6vw, 72px);
  --fs-h1:        clamp(34px, 5vw, 56px);
  --fs-h2:        clamp(28px, 4vw, 44px);
  --fs-h3:        clamp(22px, 2.6vw, 32px);
  --fs-h4:        20px;
  --fs-h5:        18px;
  --fs-body-lg:   18px;
  --fs-body:      16px;
  --fs-body-sm:   14px;
  --fs-caption:   13px;
  --fs-overline:  12px;

  --lh-tight:  1.08;
  --lh-snug:   1.2;
  --lh-normal: 1.5;
  --lh-loose:  1.7;

  --tracking-tight:   -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.08em;
  --tracking-overline:0.16em;

  /* ============== MOTION ============== */
  --ease:        cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:      120ms;
  --t-base:      200ms;
  --t-slow:      360ms;
}

/* ============== SEMANTIC TYPE STYLES ==============
   Apply via class OR copy declarations into your component CSS. */
.display-script {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--mdt-red);
}

.h1, h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-1);
  text-wrap: balance;
}
.h1-accent, h1 em, h2 em, h3 em {
  /* italic accent word inside an h1/h2/h3 — "Caribe Auténtico", etc. */
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.h2, h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-h2);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-1);
  text-wrap: balance;
}

.h3, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  color: var(--fg-1);
}

.h4, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h4);
  line-height: var(--lh-snug);
  color: var(--fg-1);
}

.body, p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--fg-2);
  text-wrap: pretty;
}

.body-lg { font-size: var(--fs-body-lg); }
.body-sm { font-size: var(--fs-body-sm); color: var(--fg-3); }

.caption {
  font-size: var(--fs-caption);
  color: var(--fg-4);
  line-height: var(--lh-normal);
}

.overline {
  font-family: var(--font-heading);
  font-size: var(--fs-overline);
  font-weight: 700;
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  color: var(--mdt-red);          /* signature overline color — see screenshots */
}

.eyebrow-navy { color: var(--mdt-navy); }

.link {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--t-fast) var(--ease);
}
.link:hover { color: var(--link-hover); }

/* ============== UTILITY ============== */
.text-navy  { color: var(--mdt-navy); }
.text-red   { color: var(--mdt-red); }
.text-aqua  { color: var(--mdt-aqua); }
.text-white { color: #fff; }
.bg-navy    { background: var(--mdt-navy); }
.bg-red     { background: var(--mdt-red); }
.bg-sand    { background: var(--bg-sand); }
.bg-soft    { background: var(--bg-soft); }

/* --- end colors_and_type.css --- */


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #fff; color: var(--fg-2); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .container { padding: 0 48px; } }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding var(--t-base) var(--ease);
}
.nav.scrolled { padding: 0; }
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 88px; gap: 48px;
}
.nav.scrolled .nav-inner { height: 68px; }
.nav-logo { height: 52px; cursor: pointer; transition: height var(--t-base) var(--ease); }
.nav.scrolled .nav-logo { height: 42px; }
.nav-links {
  display: none; gap: 30px; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 14px; color: var(--mdt-navy);
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-cta {
  background: var(--mdt-red); color: #fff;
  border: none; padding: 11px 22px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(220,38,38,0.28);
  transition: all var(--t-base) var(--ease);
}
.nav-cta:hover { background: var(--red-600); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(220,38,38,0.36); }
.nav-link { cursor: pointer; transition: color var(--t-base) var(--ease); position: relative; padding: 6px 0; text-decoration: none; color: var(--mdt-navy); white-space: nowrap; }
.nav-link:hover { color: var(--mdt-red); }
.nav-link.active { color: var(--mdt-red); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--mdt-red);
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 4px; padding: 8px;
  cursor: pointer; background: transparent; border: none;
}
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--mdt-navy); }
@media (min-width: 900px) { .nav-hamburger { display: none; } }
.nav-mobile-cta {
  background: var(--mdt-red); color: #fff;
  padding: 9px 16px; border-radius: 9999px; border: none;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
}
@media (min-width: 900px) { .nav-mobile-cta { display: none; } }
@media (max-width: 899px) {
  .nav-inner { height: 64px; gap: 12px; }
  .nav-logo { height: 38px; }
  .nav-cta { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  min-height: 720px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,42,82,0.7) 0%, rgba(26,42,82,0.35) 60%, rgba(26,42,82,0.55) 100%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  padding: 90px 0 100px;
  color: #fff;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero h1 { margin-left: auto; margin-right: auto; }
.hero-sub { margin-left: auto; margin-right: auto; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; padding-bottom: 6px; border-bottom: 1.5px solid var(--mdt-red);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(40px, 6.5vw, 88px); line-height: 1; letter-spacing: -0.03em;
  color: #fff; text-wrap: balance; max-width: 18ch;
}
.hero h1 em {
  display: inline-block; font-family: var(--font-accent);
  font-style: italic; font-weight: 600; letter-spacing: -0.015em;
  color: #fff;
}
.hero-sub {
  margin-top: 22px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55;
  color: rgba(255,255,255,0.9); max-width: 520px;
}

.hero-search {
  margin: 40px auto 0;
  background: rgba(255,255,255,0.98);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  max-width: 800px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  text-align: left;
}
@media (max-width: 700px) { .hero-search { grid-template-columns: 1fr; } }
.hs-field {
  padding: 18px 22px;
  border-right: 1px solid var(--border);
}
@media (max-width: 700px) {
  .hs-field { border-right: none; border-bottom: 1px solid var(--border); }
  .hs-field:last-of-type { border-bottom: 1px solid var(--border); }
}
.hs-field .lbl {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-4);
}
.hs-field .input-wrap {
  display: flex; align-items: center; gap: 10px; margin-top: 6px;
}
.hs-field .input-wrap svg { color: var(--mdt-navy); flex-shrink: 0; }
.hs-field input, .hs-field select {
  border: none; outline: none; background: transparent;
  font: inherit; font-family: var(--font-body); font-size: 16px;
  color: var(--mdt-navy); width: 100%;
  appearance: none;
}
.hs-submit {
  background: var(--mdt-red); color: #fff;
  border: none; padding: 0 36px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-base) var(--ease);
  display: flex; align-items: center; gap: 10px; justify-content: center;
}
.hs-submit:hover { background: var(--mdt-navy); }
@media (max-width: 700px) { .hs-submit { padding: 18px; } }


/* ============ HERO SERVICES (4 quick-pick buttons) ============ */
.hero-services {
  margin: 22px auto 0;
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 800px;
  width: 100%;
}
.hero-service {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  padding: 20px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: #fff; text-decoration: none;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.hero-service:hover {
  background: #fff;
  color: var(--mdt-navy);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}
.hero-service svg {
  color: #fff; transition: color var(--t-base) var(--ease);
}
.hero-service:hover svg { color: var(--mdt-red); }
@media (max-width: 700px) {
  .hero-services { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
@media (max-width: 700px) { .section { padding: 64px 0; } }
.section.soft { background: var(--gray-50); }
.section.deep { background: var(--mdt-navy); color: #fff; }

.section-head { margin-bottom: 56px; }
.section-head.with-action {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.section-head .overline {
  display: inline-block;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mdt-red);
  margin-bottom: 14px;
}
.section.deep .section-head .overline { color: var(--red-300); }
.section-head h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(30px, 4vw, 52px); line-height: 1.05;
  letter-spacing: -0.025em; color: var(--mdt-navy); text-wrap: balance;
}
.section.deep .section-head h2 { color: #fff; }
.section-head h2 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 600;
  letter-spacing: -0.01em;
}
.section-head .lead {
  margin-top: 14px; color: var(--fg-3); font-size: 17px; line-height: 1.55; max-width: 520px;
}
.section.deep .section-head .lead { color: rgba(255,255,255,0.75); }
.section-head .action {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--mdt-red);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px; border-bottom: 1.5px solid var(--mdt-red);
  cursor: pointer;
}

/* ============ TOUR GRID ============ */
.tour-grid { display: grid; gap: 40px 28px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tour-grid { grid-template-columns: repeat(4, 1fr); } }

.tour {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(26,42,82,0.04), 0 8px 22px rgba(26,42,82,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out);
}
.tour:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(26,42,82,0.06), 0 18px 36px rgba(26,42,82,0.12); }
.tour-img {
  position: relative; height: 220px; overflow: hidden;
  background: var(--gray-100) center/cover no-repeat;
}
.tour-img > div {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 800ms var(--ease-out);
}
.tour:hover .tour-img > div { transform: scale(1.05); }
.tour-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--mdt-red); color: #fff;
  padding: 6px 14px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.tour-badge.red { background: var(--mdt-red); color: #fff; }
.tour-body { padding: 18px 20px 16px; }
.tour-eyebrow { display: none; }
.tour-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 18px; color: var(--mdt-navy);
  line-height: 1.25; letter-spacing: -0.005em;
}
.tour-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; font-size: 14px; color: var(--fg-3);
  font-family: var(--font-body);
}
.tour-meta .l { display: inline-flex; align-items: center; gap: 6px; }
.tour-meta .r {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--mdt-red); font-weight: 700;
}
.tour-meta .r svg { color: var(--mdt-red); }
.tour-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.price-label {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-4);
}
.price-amount {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 24px; color: var(--mdt-navy); line-height: 1; margin-top: 2px;
  font-style: normal; letter-spacing: 0;
}
.tour-cta {
  background: var(--mdt-red); color: #fff;
  border: none; padding: 11px 22px;
  border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  cursor: pointer; box-shadow: 0 6px 14px rgba(220,38,38,0.28);
  transition: background var(--t-base) var(--ease);
}
.tour-cta:hover { background: var(--red-600); }

/* ============ FEATURES ============ */
.features {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(4, 1fr); gap: 48px; } }

.feature { }
.feature-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-sand);
  margin-bottom: 22px;
  color: var(--mdt-navy);
}
.feature h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 22px; color: var(--mdt-navy); letter-spacing: -0.01em; line-height: 1.15;
}
.feature h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.feature p { margin-top: 10px; color: var(--fg-3); font-size: 15px; line-height: 1.55; }

/* ============ DESTINATIONS GRID ============ */
.dest-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .dest-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .dest-card.feature {
    grid-row: span 2;
  }
}
.dest-card {
  position: relative; overflow: hidden;
  background: var(--gray-200) center/cover no-repeat;
  min-height: 200px; cursor: pointer;
  transition: transform var(--t-slow) var(--ease-out);
}
.dest-card:hover { transform: translateY(-3px); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.75));
}
.dest-overlay {
  position: absolute; left: 22px; bottom: 22px; right: 22px; color: #fff; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.dest-overlay .count {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.dest-overlay .name {
  font-family: var(--font-heading); font-size: 26px; font-weight: 800;
  letter-spacing: -0.01em; margin-top: 4px;
}
.dest-overlay .arrow {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all var(--t-base) var(--ease);
}
.dest-card:hover .dest-overlay .arrow { background: var(--mdt-red); border-color: var(--mdt-red); }
.dest-card.feature .dest-overlay .name { font-size: 36px; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  position: relative;
}
.testimonial-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: 0 0 12px;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  padding: 32px 30px;
  min-width: 320px;
}
@media (max-width: 900px) { .testimonial { flex: 0 0 88%; } }
.testimonial .stars {
  display: flex; gap: 3px; color: var(--yellow-400); margin-bottom: 18px;
}
.testimonial blockquote {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.35; color: #fff;
  text-wrap: balance;
}
.testimonial blockquote::before { content: '"'; color: var(--mdt-red); font-size: 38px; line-height: 0; vertical-align: -4px; margin-right: 4px; }
.testimonial blockquote::after { content: '"'; color: var(--mdt-red); font-size: 38px; line-height: 0; vertical-align: -16px; margin-left: 2px; }
.testimonial .author {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; gap: 14px;
}
.testimonial .avatar {
  width: 44px; height: 44px; background: var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; color: var(--mdt-navy);
}
.testimonial .author-name {
  font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: #fff;
}
.testimonial .author-meta {
  font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px;
}
.testimonial-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 36px;
}
.testimonial-dot {
  height: 3px; width: 24px; background: rgba(255,255,255,0.25);
  cursor: pointer; transition: all var(--t-base) var(--ease);
}
.testimonial-dot.active { background: var(--mdt-red); width: 40px; }

/* ============ BLOG ============ */
.blog-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post { cursor: pointer; transition: transform var(--t-slow) var(--ease-out); }
.post:hover { transform: translateY(-3px); }
.post-img {
  position: relative; aspect-ratio: 5/3; overflow: hidden;
  background: var(--gray-100) center/cover no-repeat;
}
.post-img > div {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 800ms var(--ease-out);
}
.post:hover .post-img > div { transform: scale(1.05); }
.post-body { padding: 22px 0 0; }
.post-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-4);
}
.post-meta .cat { color: var(--mdt-red); }
.post-meta .sep { color: var(--gray-300); }
.post h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 22px; color: var(--mdt-navy);
  line-height: 1.2; letter-spacing: -0.01em;
  margin-top: 12px;
}
.post p {
  margin-top: 10px; color: var(--fg-3); font-size: 15px; line-height: 1.5;
}
.post .read-more {
  margin-top: 16px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--mdt-red);
  display: inline-flex; align-items: center; gap: 6px;
  padding-bottom: 4px; border-bottom: 1.5px solid var(--mdt-red);
}

/* ============ CTA SECTION ============ */
.cta-section {
  position: relative; overflow: hidden;
  padding: 120px 0;
  background: #131F3D;
}
@media (max-width: 700px) { .cta-section { padding: 80px 0; } }
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1473496169904-658ba7c44d8a?w=1920&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(19,31,61,0.82) 0%, rgba(26,42,82,0.7) 50%, rgba(35,56,99,0.82) 100%),
    radial-gradient(circle at top right, rgba(220,38,38,0.32), transparent 50%),
    radial-gradient(circle at bottom left, rgba(62,193,211,0.18), transparent 55%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; color: #fff; }
.cta-section .overline { color: var(--red-300); }
.cta-section h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px); line-height: 1.02;
  letter-spacing: -0.025em; color: #fff;
  margin: 16px auto 0; max-width: 16ch; text-wrap: balance;
}
.cta-section h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.cta-section .lead {
  margin: 22px auto 0; max-width: 560px; font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.cta-section .hero-search { margin: 48px auto 0; }

/* ============ FOOTER ============ */
/* ============ FOOTER · SOCIAL + PAYMENTS (white SVG icons) ============ */



.shaart-link {
  color: rgba(255,255,255,0.85) !important;
  border-bottom: 1px dotted rgba(255,255,255,0.4);
  transition: color var(--t-base) var(--ease);
  font-weight: 600;
}
.shaart-link:hover { color: var(--mdt-red) !important; border-bottom-color: var(--mdt-red); }


.footer { background: var(--navy-800); color: #fff; padding: 96px 0 32px; }
.footer-top {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 900px) {
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
}
.footer-brand img { height: 60px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.65); margin-bottom: 22px; max-width: 280px; }
.footer-newsletter {
  display: flex; gap: 0; max-width: 320px;
  border: 1px solid rgba(255,255,255,0.2);
}
.footer-newsletter input {
  flex: 1; padding: 12px 14px; background: transparent; border: none; outline: none;
  font: inherit; color: #fff; font-size: 14px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  background: var(--mdt-red); color: #fff;
  padding: 0 18px; border: none;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.footer-newsletter button:hover { background: var(--mdt-navy); }

.footer-col h4 {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: #F87171;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.78); font-size: 14px;
  transition: color var(--t-base) var(--ease);
}
.footer-col a:hover { color: var(--mdt-aqua); }
.footer-col .wa { display: inline-flex; align-items: center; gap: 8px; }
.footer-col .wa svg { color: #25D366; }

.footer-secure {
  font-size: 12px; color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
}
.footer-secure svg { color: var(--green-300); }

.footer-bottom {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom .tagline { font-family: var(--font-accent); font-style: italic; color: rgba(255,255,255,0.7); }

@media (max-width: 899px) {
  .footer { padding: 64px 0 28px; text-align: center; }
  .footer-top { gap: 36px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { max-width: 360px; margin-left: auto; margin-right: auto; }
  .footer-newsletter { margin-left: auto; margin-right: auto; }
  .footer-brand .footer-flags { margin-left: auto; margin-right: auto; justify-content: center; }
  .footer-col ul { padding: 0; list-style: none; }
  .footer-social { justify-content: center; }
  .footer-payments-grid { max-width: 280px; margin-left: auto; margin-right: auto; }
  .footer-secure { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
}

/* ============ MOBILE STICKY BAR ============ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; gap: 10px; align-items: center;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
  z-index: 60;
}
.mobile-bar .wa-btn {
  background: #25D366; color: #fff; padding: 12px;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
}
.mobile-bar .reserve-btn {
  flex: 1; background: var(--mdt-red); color: #fff;
  padding: 14px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  border: none;
}
@media (min-width: 900px) { .mobile-bar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 72px; } }

/* ============ MOBILE NAV DRAWER ============ */
.drawer {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(12,21,42,0.6);
  display: none;
}
.drawer.open { display: block; }
.drawer-panel {
  background: #fff; height: 100%; width: 100%; max-width: 360px;
  display: flex; flex-direction: column;
  animation: slideIn 360ms var(--ease-out);
}
@keyframes slideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; border-bottom: 1px solid var(--border);
}
.drawer-close { font-size: 24px; color: var(--mdt-navy); }
.drawer-links {
  flex: 1; padding: 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.drawer-links a {
  padding: 14px 0;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mdt-navy);
  border-bottom: 1px solid var(--border);
}
.drawer-links a.active { color: var(--mdt-red); }
.drawer-cta {
  background: var(--mdt-red); color: #fff;
  padding: 16px; margin: 22px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; text-align: center;
}

/* === Footer: social + flags + payments === */
.footer-social {
  display: grid; gap: 8px;
  grid-template-columns: repeat(4, 36px);
  margin-bottom: 24px;
}
.social-ic {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
  transition: all var(--t-base) var(--ease);
  border-radius: 8px;
}
.social-ic:hover {
  background: var(--mdt-red); border-color: var(--mdt-red);
  transform: translateY(-2px);
}
.social-ic svg { display: block; }

.footer-flags {
  display: grid; gap: 6px;
  grid-template-columns: repeat(5, 1fr);
  max-width: 200px;
}
.flag {
  display: block; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.flag:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.5); }
.flag svg { display: block; width: 100%; height: 100%; }

.footer-payments-grid {
  display: grid; gap: 6px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 260px;
  margin-top: 4px;
}
.pay-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 5px;
  padding: 6px 5px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 13 / 7;
  transition: all 200ms cubic-bezier(0.2,0.7,0.2,1);
}
.pay-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.pay-card svg { display: block; width: 100%; height: 100%; }

.footer-brand .footer-flags { margin-top: 18px; max-width: 200px; }
.footer-brand .footer-flags + h4 { display: none; } /* hide duplicated Idiomas heading if any */


/* ============ TRANSFERS BANNER (home section) ============ */

/* Hero composition variants */
body[data-hero-style="left"] .hero-inner {
  align-items: flex-start !important;
  text-align: left !important;
}
body[data-hero-style="left"] .hero-search,
body[data-hero-style="left"] .hero-services {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body[data-hero-style="split"] .hero-bg::after {
  background: linear-gradient(90deg, rgba(26,42,82,0.85) 0%, rgba(26,42,82,0.5) 50%, rgba(26,42,82,0.15) 100%) !important;
}
body[data-hero-style="split"] .hero-inner {
  align-items: flex-start !important;
  text-align: left !important;
  max-width: 620px;
}
body[data-hero-style="split"] .hero-search,
body[data-hero-style="split"] .hero-services {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.transfers-banner-wrap { padding: 0; margin: 0 0 96px; }
@media (max-width: 700px) { .transfers-banner-wrap { margin: 0 0 64px; } }
.transfers-banner {
  position: relative; overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #131F3D 0%, #1A2A52 50%, #233863 100%);
  color: #fff;
  min-height: 480px;
}
.transfers-banner-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80&auto=format&fit=crop') center/cover;
  opacity: 0.45;
}
.transfers-banner::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(19,31,61,0.95) 0%, rgba(26,42,82,0.7) 50%, rgba(35,56,99,0.5) 100%),
    radial-gradient(circle at top right, rgba(220,38,38,0.32), transparent 50%);
}
.transfers-banner-content {
  position: relative; z-index: 1;
  padding: 64px 56px;
  max-width: 620px;
}
@media (max-width: 700px) { .transfers-banner-content { padding: 48px 32px; } }
.transfers-banner h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 54px); line-height: 1.02;
  letter-spacing: -0.025em; color: #fff; text-wrap: balance;
  margin-top: 14px;
}
.transfers-banner h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.transfers-banner p {
  margin-top: 18px; font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.85); max-width: 480px;
}
.transfers-banner-cta {
  margin-top: 28px;
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.btn-primary-pill {
  background: var(--mdt-red); color: #fff;
  padding: 13px 24px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(220,38,38,0.32);
  transition: all 200ms var(--ease);
}
.btn-primary-pill:hover { background: var(--red-600); transform: translateY(-1px); }
.btn-link-light {
  color: #fff; text-decoration: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  padding-bottom: 3px; border-bottom: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color var(--t-base) var(--ease);
}
.btn-link-light:hover { border-bottom-color: #fff; }
.transfers-banner-stats {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18);
  display: grid; grid-template-columns: repeat(4, auto); gap: 32px;
  max-width: 480px;
}
@media (max-width: 600px) { .transfers-banner-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; } }
.transfers-banner-stats > div { display: flex; flex-direction: column; }
.transfers-banner-stats strong {
  font-family: var(--font-heading); font-weight: 800; font-size: 24px;
  color: #fff; line-height: 1;
}
.transfers-banner-stats span {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-top: 4px;
}

/* ============ CAR RENTAL (home section) ============ */
.vehicle-grid-home {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .vehicle-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vehicle-grid-home { grid-template-columns: repeat(4, 1fr); } }
.vehicle-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26,42,82,0.04), 0 8px 22px rgba(26,42,82,0.06);
  transition: transform var(--t-slow) var(--ease-out);
}
.vehicle-card:hover { transform: translateY(-4px); }
.vehicle-card-img {
  height: 160px;
  background-size: cover; background-position: center;
  position: relative;
}
.vehicle-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--mdt-red); color: #fff;
  padding: 5px 12px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.vehicle-card-body { padding: 16px 18px 16px; }
.vehicle-cat {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mdt-red);
}
.vehicle-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 17px;
  color: var(--mdt-navy); margin-top: 4px; letter-spacing: -0.005em;
}
.vehicle-specs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
  font-size: 12px; color: var(--fg-3);
}
.vehicle-specs span { display: inline-flex; align-items: center; gap: 4px; }
.vehicle-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.vehicle-pricelabel {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-4);
}
.vehicle-price {
  font-family: var(--font-heading); font-weight: 800; font-size: 20px;
  color: var(--mdt-navy); line-height: 1;
}
.vehicle-price small { font-weight: 600; font-size: 11px; color: var(--fg-3); }
.car-rental-perks {
  margin-top: 40px;
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 22px 28px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  font-size: 14px; color: var(--mdt-navy);
  font-family: var(--font-heading); font-weight: 600;
}
.car-rental-perks > div { display: inline-flex; align-items: center; gap: 10px; }
.car-rental-perks svg { color: var(--mdt-red); }

/* ============ ALOJAMIENTOS (home section) ============ */
.listing-grid-home {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .listing-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .listing-grid-home { grid-template-columns: repeat(4, 1fr); } }
.listing-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26,42,82,0.04), 0 8px 22px rgba(26,42,82,0.06);
  cursor: pointer;
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out);
}
.listing-card:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(26,42,82,0.06), 0 18px 36px rgba(26,42,82,0.12); }
.listing-card-img {
  height: 200px; position: relative;
  background-size: cover; background-position: center;
}
.listing-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--mdt-red); color: #fff;
  padding: 5px 12px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.listing-fav {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3); border: none; cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.listing-fav:hover { color: var(--mdt-red); transform: scale(1.1); }
.listing-card-body { padding: 14px 16px 16px; }
.listing-card-loc {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--fg-3);
}
.listing-card-loc span { display: inline-flex; align-items: center; gap: 5px; }
.listing-card-loc .r { color: var(--mdt-red); font-weight: 700; }
.listing-card-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 16px; color: var(--mdt-navy);
  line-height: 1.25; letter-spacing: -0.005em; margin-top: 6px;
}
.listing-card-specs {
  font-size: 13px; color: var(--fg-3); margin-top: 6px; line-height: 1.4;
}
.listing-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.listing-card-price {
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  color: var(--mdt-navy); line-height: 1;
}
.listing-card-price small { font-weight: 600; font-size: 12px; color: var(--fg-3); }

/* Shared CTA pill (used in vehicle + listing) */
.vehicle-foot .tour-cta, .listing-card-foot .tour-cta {
  background: var(--mdt-red); color: #fff;
  text-decoration: none;
  padding: 8px 16px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  cursor: pointer; box-shadow: 0 5px 12px rgba(220,38,38,0.28);
  transition: background 200ms;
}
.vehicle-foot .tour-cta:hover, .listing-card-foot .tour-cta:hover { background: var(--red-600); }
/* ===== pages.css ===== */

/* Shared styles for inner pages (alojamientos, car-rental, transfers).
   Extends home.css — link both. */

/* ============ LISTING CARDS (Airbnb-style for alojamientos, similar pattern for vehicles) ============ */
.listing-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .listing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .listing-grid { grid-template-columns: repeat(4, 1fr); } }

.listing {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 1px 2px rgba(26,42,82,0.04), 0 8px 22px rgba(26,42,82,0.06);
  overflow: hidden; cursor: pointer;
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out);
}
.listing:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(26,42,82,0.06), 0 18px 36px rgba(26,42,82,0.12); }
.listing-img {
  position: relative; height: 220px; overflow: hidden;
  background: var(--gray-100) center/cover no-repeat;
}
.listing-img > div {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 800ms var(--ease-out);
}
.listing:hover .listing-img > div { transform: scale(1.05); }
.listing-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--mdt-red); color: #fff;
  padding: 6px 14px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.listing-fav {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3); cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.listing-fav:hover { color: var(--mdt-red); transform: scale(1.08); }
.listing-body { padding: 16px 18px 16px; }
.listing-loc {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-3);
}
.listing-loc .place { display: inline-flex; align-items: center; gap: 5px; }
.listing-loc .rating { display: inline-flex; align-items: center; gap: 4px; color: var(--mdt-red); font-weight: 700; }
.listing-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 16px; color: var(--mdt-navy);
  line-height: 1.25; letter-spacing: -0.005em;
  margin-top: 6px;
}
.listing-specs {
  font-size: 13px; color: var(--fg-3); margin-top: 6px;
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
}
.listing-specs .dot { color: var(--gray-300); }
.listing-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.listing-price {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 20px; color: var(--mdt-navy); line-height: 1;
}
.listing-price small { font-weight: 600; font-size: 12px; color: var(--fg-3); letter-spacing: 0; }
.listing-cta {
  background: var(--mdt-red); color: #fff;
  border: none; padding: 9px 16px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  cursor: pointer; box-shadow: 0 5px 12px rgba(220,38,38,0.28);
  transition: background var(--t-base) var(--ease);
}
.listing-cta:hover { background: var(--red-600); }

/* ============ FILTER BAR ============ */
.filter-bar {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 8px; display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  box-shadow: 0 2px 8px rgba(26,42,82,0.06);
  margin-bottom: 40px;
}
.filter-chip {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 13px; color: var(--mdt-navy);
  padding: 9px 16px; border-radius: 9999px;
  cursor: pointer; transition: all var(--t-base) var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: none;
}
.filter-chip:hover { background: var(--gray-100); }
.filter-chip.active { background: var(--mdt-red); color: #fff; }
.filter-chip.active svg { color: #fff; }
.filter-chip svg { color: var(--fg-3); }

/* ============ FEATURES (4-col reusable) ============ */
.features-4 {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features-4 { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.feat { }
.feat-icon {
  width: 52px; height: 52px;
  background: var(--bg-sand); color: var(--mdt-navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 20px; color: var(--mdt-navy);
  letter-spacing: -0.01em; line-height: 1.2;
}
.feat h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.feat p { margin-top: 8px; color: var(--fg-3); font-size: 14px; line-height: 1.55; }

/* ============ FAQ (SEO-friendly accordion) ============ */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
  transition: border-color var(--t-base) var(--ease);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item[open] { border: 1.5px solid var(--mdt-red); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: 700; font-size: 17px;
  color: var(--mdt-navy);
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--mdt-red); font-size: 24px; font-weight: 400;
  line-height: 1; flex-shrink: 0;
  transition: transform var(--t-base) var(--ease);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-a {
  padding: 0 26px 24px; color: var(--fg-3); line-height: 1.65; font-size: 15px;
}
.faq-item .faq-a p + p { margin-top: 12px; }

/* ============ TRANSFER QUOTE FORM ============ */
.quote-form {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 10px rgba(26,42,82,0.06), 0 24px 50px rgba(26,42,82,0.08);
}
@media (max-width: 700px) { .quote-form { padding: 22px; } }
.quote-form-head {
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.quote-form-head h3 {
  font-family: var(--font-heading); font-weight: 800; font-size: 24px;
  color: var(--mdt-navy); letter-spacing: -0.01em;
}
.quote-form-head h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.quote-form-head p { margin-top: 6px; color: var(--fg-3); font-size: 14px; line-height: 1.55; }

.qf-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .qf-grid { grid-template-columns: 1fr 1fr; } }

.qf-field { display: flex; flex-direction: column; }
.qf-field .lbl {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-4);
  margin-bottom: 6px;
}
.qf-field .input {
  width: 100%; padding: 10px 0 8px;
  border: none; border-bottom: 1.5px solid var(--border);
  font: inherit; font-family: var(--font-body); font-size: 16px;
  color: var(--mdt-navy); background: transparent;
  transition: border-color var(--t-base) var(--ease);
}
.qf-field .input:focus { outline: none; border-bottom: 1.5px solid var(--mdt-red); }
.qf-field.full { grid-column: 1 / -1; }
.qf-submit-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
}
.qf-submit {
  background: var(--mdt-red); color: #fff;
  border: none; padding: 14px 32px; border-radius: 4px;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--t-base) var(--ease);
}
.qf-submit:hover { background: var(--mdt-navy); }
.qf-meta { font-size: 13px; color: var(--fg-4); }

/* ============ VEHICLE TYPE CARD (Transfers + Car Rental) ============ */
.vehicle-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vehicle-grid { grid-template-columns: repeat(4, 1fr); } }
.vehicle {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26,42,82,0.04), 0 8px 22px rgba(26,42,82,0.06);
  transition: transform var(--t-slow) var(--ease-out);
  cursor: pointer;
}
.vehicle:hover { transform: translateY(-4px); }
.vehicle-img {
  height: 160px;
  background: var(--gray-100) center/cover no-repeat;
  position: relative;
}
.vehicle-body { padding: 18px 20px 20px; }
.vehicle-cap {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mdt-red);
}
.vehicle-name {
  font-family: var(--font-heading); font-weight: 800; font-size: 19px;
  color: var(--mdt-navy); margin-top: 6px; letter-spacing: -0.005em;
}
.vehicle-specs {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px;
  font-size: 13px; color: var(--fg-3);
}
.vehicle-specs span { display: inline-flex; align-items: center; gap: 5px; }
.vehicle-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.vehicle-price {
  font-family: var(--font-heading); font-weight: 800; font-size: 22px;
  color: var(--mdt-navy); line-height: 1;
}
.vehicle-price small { font-weight: 600; font-size: 12px; color: var(--fg-3); }
.vehicle-cta {
  background: var(--mdt-red); color: #fff; border: none;
  padding: 9px 18px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  cursor: pointer; box-shadow: 0 5px 12px rgba(220,38,38,0.28);
}
.vehicle-cta:hover { background: var(--red-600); }

/* ============ ROUTES v2 — vehicle-card-style + Route Search ============ */
.route-card-v2 { text-decoration: none; color: inherit; display: block; }
.route-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--mdt-red); color: #fff;
  padding: 5px 12px; border-radius: 9999px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}

.route-search-wrap { margin-top: 48px; }
.route-search {
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,42,82,0.06), 0 24px 50px rgba(26,42,82,0.08);
  overflow: hidden;
}
.rs-tabs {
  display: flex; gap: 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.rs-tab {
  flex: 0 0 auto;
  padding: 16px 28px;
  background: transparent; border: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  color: var(--fg-3); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 2px solid transparent;
  transition: all var(--t-base) var(--ease);
}
.rs-tab:hover { color: var(--mdt-navy); }
.rs-tab.active { background: #fff; color: var(--mdt-red); border-bottom-color: var(--mdt-red); }

.rs-body { padding: 26px 28px; }
.rs-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .rs-grid {
    grid-template-columns: 1.4fr 1.4fr 0.7fr;
    grid-template-rows: auto auto;
  }
  .rs-field-lg { grid-row: 1; }
  .rs-grid > .rs-field:nth-child(3) { grid-row: 1; grid-column: 3; }
  .rs-grid > .rs-field:nth-child(4) { grid-column: 1; }
  .rs-grid > .rs-field:nth-child(5) { grid-column: 2; }
  .rs-grid > .rs-add-return { grid-column: 2; grid-row: 2; }
  .rs-grid > .rs-submit { grid-column: 3; grid-row: 2; }
}
@media (min-width: 1000px) {
  .rs-grid {
    grid-template-columns: 1.6fr 1.6fr 0.7fr 0.7fr 0.9fr;
    grid-template-rows: auto;
  }
  .rs-field-lg { grid-row: 1 !important; }
  .rs-grid > .rs-field:nth-child(3) { grid-row: 1 !important; grid-column: auto !important; }
  .rs-grid > .rs-field:nth-child(4) { grid-row: 1 !important; grid-column: auto !important; }
  .rs-grid > .rs-field:nth-child(5) { grid-row: 1 !important; grid-column: auto !important; }
  .rs-grid > .rs-add-return { grid-column: 1 / 3 !important; grid-row: 2 !important; }
  .rs-grid > .rs-submit { grid-column: 3 / 6 !important; grid-row: 2 !important; }
}

.rs-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.rs-lbl {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-4);
}
.rs-input {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--gray-50); border: 1px solid var(--border); border-radius: 10px;
  transition: all var(--t-base) var(--ease);
}
.rs-input:focus-within { border-color: var(--mdt-red); background: #fff; box-shadow: 0 0 0 4px rgba(220,38,38,0.10); }
.rs-input svg { color: var(--mdt-red); flex-shrink: 0; }
.rs-input input, .rs-input select {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  font: inherit; font-family: var(--font-body); font-size: 15px;
  color: var(--mdt-navy);
  appearance: none;
}
.rs-input input::placeholder { color: var(--fg-4); }

.rs-add-return {
  background: var(--gray-100);
  border: 1px dashed var(--gray-300); border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  color: var(--mdt-navy); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--t-base) var(--ease);
}
.rs-add-return:hover { background: #fff; border-color: var(--mdt-red); color: var(--mdt-red); border-style: solid; }

.rs-submit {
  background: var(--mdt-red); color: #fff; border: none;
  padding: 14px 24px; border-radius: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 18px rgba(220,38,38,0.28);
  transition: all var(--t-base) var(--ease);
}
.rs-submit:hover { background: var(--red-600); transform: translateY(-1px); }

/* ============ SEO SECTION (Transfers — service + people) ============ */
.seo-layout {
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) { .seo-layout { grid-template-columns: 1.5fr 1fr; gap: 72px; align-items: start; } }

.seo-text .overline {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mdt-red);
}
.seo-text h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.025em;
  color: var(--mdt-navy); text-wrap: balance;
}
.seo-text h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.seo-lead {
  margin-top: 22px; color: var(--fg-1); font-size: 19px; line-height: 1.55;
  font-weight: 500;
}
.seo-body {
  margin-top: 18px; color: var(--fg-2); font-size: 16px; line-height: 1.7;
}
.seo-body strong { color: var(--mdt-navy); font-weight: 700; }

.seo-quote {
  margin-top: 36px;
  background: var(--mdt-navy); color: #fff;
  padding: 32px 36px; border-radius: 14px;
  position: relative; overflow: hidden;
}
.seo-quote::before {
  content: ''; position: absolute; right: -50px; bottom: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(220,38,38,0.35), transparent 70%);
}
.seo-quote svg { color: var(--mdt-red); margin-bottom: 14px; opacity: 0.85; }
.seo-quote blockquote {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.4; color: #fff;
  position: relative; text-wrap: balance;
}
.seo-quote cite {
  display: block; margin-top: 18px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-style: normal; color: rgba(255,255,255,0.7);
  position: relative;
}

.seo-pillars {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.seo-pillar {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 22px 24px;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.seo-pillar:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26,42,82,0.08); }
.seo-pillar-num {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 30px; color: var(--mdt-red); letter-spacing: -0.02em; line-height: 1;
}
.seo-pillar-lbl {
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  color: var(--mdt-navy); margin-top: 10px; letter-spacing: -0.005em;
}
.seo-pillar-desc {
  margin-top: 6px; font-size: 13px; color: var(--fg-3); line-height: 1.5;
}

.seo-coverage {
  margin-top: 80px;
  background: var(--bg-sand); border-radius: 16px;
  padding: 48px 48px;
}
@media (max-width: 700px) { .seo-coverage { padding: 36px 28px; } }
.seo-coverage-head { text-align: center; margin-bottom: 36px; }
.seo-coverage-head .overline {
  display: inline-block;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mdt-red);
  margin-bottom: 10px;
}
.seo-coverage-head h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--mdt-navy);
}
.seo-coverage-head h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.seo-coverage-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .seo-coverage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .seo-coverage-grid { grid-template-columns: repeat(3, 1fr); } }
.seo-coverage-grid > div {
  padding: 18px 22px;
  background: rgba(255,255,255,0.65);
  border-radius: 10px;
}
.seo-coverage-grid strong {
  display: block;
  font-family: var(--font-heading); font-weight: 800; font-size: 16px;
  color: var(--mdt-navy); letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.seo-coverage-grid span {
  font-size: 13.5px; color: var(--fg-3); line-height: 1.5;
}

/* ============ INNER HERO (smaller than home hero) ============ */
.inner-hero {
  position: relative; overflow: hidden;
  min-height: 460px;
  display: flex; align-items: center;
}
.inner-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.inner-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,42,82,0.7) 0%, rgba(26,42,82,0.35) 60%, rgba(26,42,82,0.55) 100%);
}
.inner-hero-inner {
  position: relative; z-index: 1; width: 100%;
  padding: 80px 0; color: #fff;
}
.inner-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; padding-bottom: 6px; border-bottom: 1.5px solid var(--mdt-red);
  margin-bottom: 22px;
}
.inner-hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px); line-height: 1.02;
  letter-spacing: -0.025em; color: #fff; text-wrap: balance;
  max-width: 16ch;
}
.inner-hero h1 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 600;
}
.inner-hero p {
  margin-top: 18px; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55;
  color: rgba(255,255,255,0.88); max-width: 540px;
}


/* ============ STORY SECTION (Alojamientos) ============ */
.story-layout {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .story-layout { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
}
.story-text .overline {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mdt-red);
}
.story-text h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.025em;
  color: var(--mdt-navy); text-wrap: balance;
}
.story-text h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 600; }
.story-lead {
  margin-top: 18px; color: var(--fg-2); font-size: 18px; line-height: 1.6;
  max-width: 56ch;
}
.story-points {
  margin-top: 36px;
  display: grid; gap: 28px;
}
.story-point {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start;
}
.story-num {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 28px; letter-spacing: -0.02em;
  color: var(--mdt-red); line-height: 1;
  padding-top: 4px;
}
.story-point h3 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 18px; color: var(--mdt-navy); letter-spacing: -0.005em;
  line-height: 1.25;
}
.story-point p {
  margin-top: 6px; color: var(--fg-3); font-size: 15px; line-height: 1.55;
}

.story-img-stack {
  display: grid; gap: 18px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.story-img-1, .story-img-2 {
  border-radius: 12px; overflow: hidden;
  background-size: cover; background-position: center;
}
.story-img-1 { grid-column: 1 / -1; aspect-ratio: 4/3; }
.story-img-2 { aspect-ratio: 1/1; }
.story-quote {
  background: var(--mdt-navy); color: #fff;
  padding: 22px 24px; border-radius: 12px;
  display: flex; flex-direction: column; justify-content: center;
  aspect-ratio: 1/1;
}
.story-quote p {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: 16px; line-height: 1.4; color: #fff;
}
.story-quote p::before { content: '"'; color: var(--mdt-red); font-size: 32px; line-height: 0; vertical-align: -2px; margin-right: 2px; }
.story-quote span {
  display: block; margin-top: 14px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65);
}

/* ============ WHY RENT IN RD (Car Rental SEO) ============ */
.why-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 26px;
  transition: transform 200ms cubic-bezier(0.2,0.7,0.2,1), box-shadow 200ms;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26,42,82,0.08); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--bg-sand); color: var(--mdt-navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; border-radius: 8px;
}
.why-card h3 {
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  color: var(--mdt-navy); letter-spacing: -0.005em;
}
.why-card p { margin-top: 8px; color: var(--fg-3); font-size: 14px; line-height: 1.55; }

.rd-driving-tips {
  margin-top: 48px;
  background: var(--mdt-navy); color: #fff;
  padding: 36px 40px; border-radius: 14px;
}
@media (max-width: 700px) { .rd-driving-tips { padding: 28px 24px; } }
.tips-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 22px;
}
.tips-head svg { color: var(--red-300); }
.tips-head h3 {
  font-family: var(--font-heading); font-weight: 800; font-size: 22px;
  color: #fff; letter-spacing: -0.01em;
}
.tips-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .tips-grid { grid-template-columns: 1fr 1fr; gap: 22px 36px; } }
.tips-grid > div { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.55; }
.tips-grid strong { color: #fff; font-family: var(--font-heading); font-weight: 700; }
/* ===== detail.css ===== */

/* =========================================================================
   MyDominicanTrip — Detail page styles
   Shared layout for tour-detail, alojamiento-detail, car-detail, transfer-detail.
   Extends home.css + pages.css.
   ========================================================================= */

/* ============ BREADCRUMB / HEAD ============ */
.dt-head {
  background: #fff;
  padding: 22px 0 0;
}
.dt-bread {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--fg-3);
  margin-bottom: 14px;
}
.dt-bread a { color: var(--fg-3); text-decoration: none; }
.dt-bread a:hover { color: var(--mdt-red); }
.dt-bread svg { color: var(--gray-400); }

.dt-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--mdt-navy);
  text-wrap: balance;
  margin: 0;
}
.dt-title em {
  font-family: var(--font-accent); font-style: italic; font-weight: 600;
  letter-spacing: -0.01em;
}
.dt-subline {
  margin-top: 10px; display: flex; flex-wrap: wrap;
  gap: 16px; align-items: center;
  font-size: 14px; color: var(--fg-3);
}
.dt-stars { display: inline-flex; align-items: center; gap: 4px; color: var(--mdt-red); }
.dt-stars .count { color: var(--fg-3); margin-left: 6px; font-weight: 500; }
.dt-pin { display: inline-flex; align-items: center; gap: 5px; color: var(--mdt-red); font-weight: 600; }
.dt-pin svg { color: var(--mdt-red); }

.dt-actions {
  margin-left: auto;
  display: flex; gap: 10px;
}
.dt-actions button {
  background: #fff; border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  color: var(--fg-2); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--t-base) var(--ease);
}
.dt-actions button:hover { border-color: var(--mdt-navy); color: var(--mdt-navy); }
.dt-actions button.faved { color: var(--mdt-red); border-color: var(--mdt-red); }
.dt-actions button.faved svg { fill: currentColor; }

/* ============ GALLERY ============ */
.dt-gallery {
  margin-top: 22px;
  display: grid; gap: 8px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  border-radius: var(--r-lg); overflow: hidden;
  position: relative;
}
.dt-gallery .g {
  background: var(--gray-100) center/cover no-repeat;
  position: relative;
  cursor: pointer;
  transition: opacity var(--t-base) var(--ease);
}
.dt-gallery .g:hover { opacity: 0.92; }
.dt-gallery .g.main { grid-row: span 2; }
.dt-gallery .all-photos {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: #fff; color: var(--mdt-navy);
  border: 1px solid var(--mdt-navy);
  padding: 9px 18px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.dt-gallery .all-photos:hover { background: var(--mdt-navy); color: #fff; }

@media (max-width: 800px) {
  .dt-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 100px 100px; }
  .dt-gallery .g.main { grid-column: span 2; grid-row: span 1; }
}

/* ============ FACT STRIP ============ */
.dt-facts {
  margin-top: 22px;
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  padding: 16px 22px;
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.dt-fact { display: flex; align-items: center; gap: 12px; }
.dt-fact-ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mdt-navy); flex-shrink: 0;
}
.dt-fact-lbl {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 2px;
}
.dt-fact-val {
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  color: var(--mdt-navy); line-height: 1.2;
}

/* ============ TWO-COLUMN LAYOUT ============ */
.dt-layout {
  margin-top: 36px; padding-bottom: 64px;
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .dt-layout { grid-template-columns: minmax(0, 1fr) 380px; gap: 56px; align-items: start; }
}

/* ============ MAIN COL SECTIONS ============ */
.dt-sec { margin-bottom: 36px; }
.dt-sec h2 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 24px; color: var(--mdt-navy); margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.dt-sec h2 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 600;
}
.dt-sec p { color: var(--fg-2); font-size: 16px; line-height: 1.65; }

/* Highlights */
.dt-highlights {
  display: grid; gap: 10px 24px;
  grid-template-columns: 1fr 1fr;
  list-style: none; padding: 0;
}
@media (max-width: 600px) { .dt-highlights { grid-template-columns: 1fr; } }
.dt-highlights li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--fg-2);
  padding: 4px 0;
}
.dt-highlights li svg { color: var(--mdt-red); flex-shrink: 0; margin-top: 2px; }

/* Amenidades grid */
.dt-amen-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.dt-amen {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px; color: var(--mdt-navy); font-weight: 500;
}
.dt-amen svg { color: var(--mdt-navy); flex-shrink: 0; }
.dt-amen.unavail { color: var(--fg-4); text-decoration: line-through; }
.dt-amen.unavail svg { color: var(--gray-400); }

/* Itinerary */
.dt-itinerary { position: relative; padding-left: 0; }
.dt-step {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 16px; padding: 14px 0;
  position: relative;
}
.dt-step:not(:last-child)::before {
  content: ''; position: absolute;
  left: 21px; top: 44px; bottom: -4px; width: 2px;
  background: var(--gray-200);
}
.dt-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--mdt-navy);
  color: var(--mdt-navy);
  font-family: var(--font-heading); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; position: relative;
}
.dt-step.done .dt-step-num { background: var(--mdt-red); border-color: var(--mdt-red); color: #fff; }
.dt-step-content {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
}
.dt-step-time {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--mdt-red);
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 4px;
}
.dt-step-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  color: var(--mdt-navy);
  margin-bottom: 4px;
}
.dt-step-desc {
  font-size: 13.5px; color: var(--fg-3); line-height: 1.55;
}

/* Includes / Excludes */
.dt-incex {
  display: grid; gap: 28px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) { .dt-incex { grid-template-columns: 1fr; } }
.dt-incex h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  color: var(--mdt-navy); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.dt-incex ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.dt-incex li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: var(--fg-2);
}
.dt-incex .inc svg { color: var(--color-success); flex-shrink: 0; margin-top: 3px; }
.dt-incex .exc svg { color: var(--gray-400); flex-shrink: 0; margin-top: 3px; }

/* Map placeholder */
.dt-map {
  height: 280px; border-radius: var(--r-md); overflow: hidden;
  background: linear-gradient(135deg, #DDEEF5 0%, #C5E0EE 50%, #B5D5E5 100%);
  position: relative; border: 1px solid var(--border);
}
.dt-map-line {
  position: absolute; left: 14%; right: 14%; top: 50%;
  height: 3px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--mdt-red) 0 8px, transparent 8px 16px);
  z-index: 1;
}
.dt-map-pin {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: #fff; padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 12px;
  color: var(--mdt-navy); box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  display: inline-flex; align-items: center; gap: 6px;
}
.dt-map-pin.o { left: 18px; }
.dt-map-pin.d { right: 18px; color: var(--mdt-red); }
.dt-map-pin svg { color: var(--mdt-red); }

/* Reviews */
.dt-reviews-head {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.dt-reviews-score {
  font-family: var(--font-heading); font-weight: 800; font-size: 44px;
  color: var(--mdt-navy); line-height: 1;
}
.dt-reviews-stars { color: var(--mdt-red); display: flex; gap: 2px; }
.dt-reviews-count { color: var(--fg-3); font-size: 14px; }

.dt-reviews-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.dt-review {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px;
}
.dt-review-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.dt-review-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--mdt-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.dt-review-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--mdt-navy); }
.dt-review-date { font-size: 12px; color: var(--fg-4); }
.dt-review-stars { color: var(--mdt-red); margin-bottom: 8px; display: flex; gap: 2px; }
.dt-review p { font-size: 14px; line-height: 1.55; color: var(--fg-2); }

/* ============ BOOKING SIDEBAR ============ */
.dt-book {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 8px rgba(26,42,82,0.06), 0 24px 50px rgba(26,42,82,0.08);
  overflow: hidden;
}
@media (min-width: 1000px) {
  .dt-book { position: sticky; top: 100px; }
}
.dt-book-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; justify-content: space-between;
}
.dt-book-price {
  font-family: var(--font-heading); font-weight: 800; font-size: 32px;
  color: var(--mdt-navy); line-height: 1;
}
.dt-book-price small {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  color: var(--fg-3); margin-left: 4px;
}
.dt-book-price-was {
  display: block;
  font-family: var(--font-body); font-size: 13px;
  color: var(--fg-4); text-decoration: line-through;
  margin-bottom: 2px;
}
.dt-book-rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  color: var(--mdt-navy);
}
.dt-book-rating svg { color: var(--mdt-red); }
.dt-book-rating small { color: var(--fg-4); font-weight: 500; }

.dt-book-body { padding: 18px 24px 4px; }

.dt-field {
  margin-bottom: 14px;
}
.dt-field-label {
  display: block;
  font-family: var(--font-heading); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3);
  margin-bottom: 6px;
}
.dt-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 14.5px; color: var(--mdt-navy);
  background: #fff;
  transition: border-color var(--t-base) var(--ease);
}
.dt-input:focus { outline: none; border-color: var(--mdt-red); }
.dt-input.icon { padding-left: 38px; }

.dt-field.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 14px;
}
.dt-field.split > div { display: flex; flex-direction: column; }

.dt-input-wrap {
  position: relative;
}
.dt-input-wrap svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--fg-4); pointer-events: none;
}

select.dt-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A2A52' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

/* Stepper (adults/kids/etc) */
.dt-step-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.dt-step-row:last-child { border-bottom: none; }
.dt-step-info {
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  color: var(--mdt-navy);
}
.dt-step-info small {
  display: block;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  color: var(--fg-4); margin-top: 2px;
}
.dt-stepper {
  display: inline-flex; align-items: center; gap: 4px;
}
.dt-stepper button {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  background: #fff; color: var(--mdt-navy);
  font-size: 18px; line-height: 1; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base) var(--ease);
}
.dt-stepper button:hover:not(:disabled) { border-color: var(--mdt-navy); }
.dt-stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.dt-stepper .val {
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  color: var(--mdt-navy);
  min-width: 28px; text-align: center;
}

/* Pill toggle (trip mode, with/without driver, etc.) */
.dt-pill-toggle {
  display: flex; gap: 4px; padding: 4px;
  background: var(--gray-100); border-radius: 999px;
  margin-bottom: 14px;
}
.dt-pill-toggle button {
  flex: 1; padding: 8px;
  background: transparent; border: none; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 600; font-size: 12.5px;
  color: var(--fg-3); cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.dt-pill-toggle button.active {
  background: #fff; color: var(--mdt-navy);
  box-shadow: 0 1px 3px rgba(26,42,82,0.1);
}

/* Add-on row (extras with checkbox + price) */
.dt-addon {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-200);
}
.dt-addon:last-child { border-bottom: none; }
.dt-addon input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--mdt-red);
  flex-shrink: 0;
}
.dt-addon-info { flex: 1; }
.dt-addon-name {
  font-family: var(--font-heading); font-weight: 600; font-size: 13.5px;
  color: var(--mdt-navy);
}
.dt-addon-desc { font-size: 11.5px; color: var(--fg-4); margin-top: 1px; }
.dt-addon-price {
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  color: var(--mdt-navy);
}

/* Totals breakdown */
.dt-book-foot {
  padding: 0 24px 22px;
}
.dt-totals { padding: 14px 0; border-top: 1px solid var(--gray-100); }
.dt-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 0;
  font-size: 13.5px; color: var(--fg-2);
}
.dt-total-row.grand {
  margin-top: 8px; padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  color: var(--mdt-navy);
}
.dt-total-row.grand .amt { font-size: 22px; }
.dt-cta {
  width: 100%; padding: 14px;
  background: var(--mdt-red); color: #fff; border: none; border-radius: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; box-shadow: 0 8px 18px rgba(220,38,38,0.28);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--t-base) var(--ease);
}
.dt-cta:hover { background: var(--red-600); }
.dt-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px;
  font-size: 11.5px; color: var(--fg-4);
}
.dt-trust svg { color: var(--color-success); }

/* Vehicle picker rows inside booking card */
.dt-veh-pick {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 -24px;
}
.dt-veh-pick .row {
  display: grid; grid-template-columns: 1fr auto 22px;
  gap: 10px; align-items: center;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t-base) var(--ease);
}
.dt-veh-pick .row:last-child { border-bottom: none; }
.dt-veh-pick .row:hover { background: var(--gray-50); }
.dt-veh-pick .row.selected { background: var(--red-50); }
.dt-veh-pick .row .name {
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  color: var(--mdt-navy);
}
.dt-veh-pick .row .specs {
  font-size: 11.5px; color: var(--fg-4); margin-top: 2px;
}
.dt-veh-pick .row .price {
  font-family: var(--font-heading); font-weight: 800; font-size: 15.5px;
  color: var(--mdt-navy);
}
.dt-veh-pick .row .price small { font-weight: 500; font-size: 10.5px; color: var(--fg-4); display: block; }
.dt-veh-pick .row .radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
}
.dt-veh-pick .row.selected .radio {
  background: var(--mdt-red); border-color: var(--mdt-red); color: #fff;
}

/* Calendar mini (visual placeholder) */
.dt-cal {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 14px;
  margin-top: 8px;
}
.dt-cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.dt-cal-month {
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  color: var(--mdt-navy);
}
.dt-cal-nav {
  display: flex; gap: 4px;
}
.dt-cal-nav button {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gray-100); border: none;
  color: var(--mdt-navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.dt-cal-nav button:hover { background: var(--gray-200); }
.dt-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
}
.dt-cal-dow {
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--fg-4);
  text-align: center; padding: 4px 0;
}
.dt-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 500; color: var(--fg-2);
  border-radius: 6px; cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.dt-cal-day:hover { background: var(--gray-100); }
.dt-cal-day.muted { color: var(--gray-300); }
.dt-cal-day.disabled { color: var(--gray-300); text-decoration: line-through; cursor: not-allowed; }
.dt-cal-day.selected { background: var(--mdt-red); color: #fff; font-weight: 700; }
.dt-cal-day.range { background: var(--red-50); color: var(--mdt-red); }

/* Side trust block under sidebar */
.dt-side-trust {
  margin-top: 16px;
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px;
  display: grid; gap: 10px;
}
.dt-side-trust div {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px; color: var(--fg-2); line-height: 1.45;
}
.dt-side-trust svg { color: var(--mdt-red); flex-shrink: 0; margin-top: 2px; }
.dt-side-trust strong { display: block; font-family: var(--font-heading); color: var(--mdt-navy); font-weight: 700; }

/* ===== Breadcrumb (M30 shared) ===== */
.ts-breadcrumb { padding: 16px 0; }
.ts-breadcrumb ol { list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:8px; font-size:13px; color:#6B7280; align-items:center; }
.ts-breadcrumb li { display:inline-flex; }
.ts-breadcrumb a { color:#1A2A52; text-decoration:none; }
.ts-breadcrumb a:hover { color:#DC2626; text-decoration:underline; }
.ts-breadcrumb [aria-current="page"] { color:#1A2A52; font-weight:600; }
.ts-breadcrumb .sep { color:#D1D5DB; }
