/* MyDominicanTrip · Home page — full design system applied */
@import url('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); }
