/* ============================================
   VISITA VALLARTA — DESIGN SYSTEM v2 (Concierge)
   Premium SaaS · navy + turquoise + orange
   ============================================ */

:root {
  /* Brand palette */
  --ink:        #0f172a;   /* navy primary */
  --ink-2:      #1e293b;   /* navy secondary */
  --ink-soft:   #475569;   /* body text */
  --mute:       #94a3b8;   /* muted */
  --line:       #e2e8f0;   /* borders */
  --line-2:     #f1f5f9;
  --bg:         #f8fafc;   /* page background */
  --surface:    #ffffff;
  --surface-2:  #fafbfc;

  --brand:      #22c1c3;   /* turquoise — primary brand */
  --brand-2:    #0891b2;   /* deeper teal */
  --brand-soft: #ccfbf1;

  --cta:        #f97316;   /* orange — CTAs */
  --cta-2:      #ea580c;
  --cta-soft:   #ffedd5;

  --transport:  #10b981;   /* green — transportation */
  --transport-2:#059669;
  --transport-soft:#d1fae5;

  --rental:     #8b5cf6;   /* purple — rentals */
  --rental-2:   #7c3aed;
  --rental-soft:#ede9fe;

  --tours:      #0ea5e9;   /* sky blue — tours */
  --tours-2:    #0284c7;
  --tours-soft: #e0f2fe;

  --warn:       #f59e0b;
  --star:       #fbbf24;
  --danger:     #ef4444;
  --success:    #10b981;

  /* Geometry */
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(15,23,42,.06);
  --shadow-sm:  0 2px 8px rgba(15,23,42,.08);
  --shadow:     0 12px 32px -12px rgba(15,23,42,.18);
  --shadow-lg:  0 24px 60px -20px rgba(15,23,42,.28);
  --shadow-cta: 0 14px 30px -10px rgba(249,115,22,.45);

  /* Typography */
  --font-display: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter:    1.5rem;
  --header-h:  72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--brand); color: #fff; }

/* Eyebrow / kicker */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: 0.85rem;
}
.eyebrow.light { color: rgba(255,255,255,.85); }
.eyebrow.dark  { color: var(--brand-2); }

em { font-style: italic; color: var(--brand-2); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--cta-2); box-shadow: 0 18px 38px -10px rgba(249,115,22,.55); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); background: var(--surface); }

.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(34,193,195,.5);
}
.btn-brand:hover { background: var(--brand-2); }

.btn-sm  { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-lg  { padding: 1.1rem 2rem; font-size: 1rem; }

/* ============================================
   NAV (HEADER)
   ============================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
#nav.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
}

/* When a page has a transparent hero, nav starts see-through with white text */
#nav.transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#nav.transparent .logo,
#nav.transparent .nav-links a,
#nav.transparent .nav-phone {
  color: #fff;
}
#nav.transparent .logo-mark {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
}
#nav.transparent.scrolled {
  background: rgba(255,255,255,.96);
}
#nav.transparent.scrolled .logo,
#nav.transparent.scrolled .nav-links a,
#nav.transparent.scrolled .nav-phone {
  color: var(--ink);
}
#nav.transparent.scrolled .logo-mark {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo strong { font-weight: 800; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 14px -4px rgba(34,193,195,.5);
  transition: background .3s ease, border .3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  position: relative;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width .25s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--brand-2); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--brand-2); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s ease;
}
.nav-phone:hover { color: var(--brand-2); }
.nav-phone svg { width: 16px; height: 16px; opacity: 0.75; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 18px -6px rgba(249,115,22,.5);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { background: var(--cta-2); transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(249,115,22,.6); }
.nav-cta-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  background: rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ============================================
   LAYOUT — sections
   ============================================ */
.section {
  padding: 6rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: 1rem;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ============================================
   HERO — homepage
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(15,23,42,.55) 0%, rgba(15,23,42,.78) 100%),
    url('https://images.unsplash.com/photo-1518602164578-cd0074062767?auto=format&fit=crop&w=2400&q=80') center/cover;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(34,193,195,.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(249,115,22,.18) 0%, transparent 55%);
}
.hero-content {
  max-width: 920px;
  width: 100%;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.6rem;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--cta);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(249,115,22,.6);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,.6); }
  50%     { box-shadow: 0 0 0 8px rgba(249,115,22,0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.3rem;
  color: #fff;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--brand), #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 2.2rem;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

/* HERO SEARCH BAR */
.search-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 0.5rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.4);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.search-field {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s ease;
}
.search-field:hover { background: var(--bg); }
.search-field label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.search-field input,
.search-field select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--ink-soft);
  width: 100%;
  padding: 0;
  cursor: pointer;
}
.search-field input::placeholder { color: var(--mute); }
.search-submit {
  background: var(--cta);
  border: none;
  color: #fff;
  border-radius: var(--radius-sm);
  width: 56px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  box-shadow: var(--shadow-cta);
}
.search-submit:hover { background: var(--cta-2); transform: scale(1.05); }
.search-submit svg { width: 22px; height: 22px; }

.search-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.search-tag {
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.search-tag:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }

/* ============================================
   SERVICE CARDS (3 main categories)
   ============================================ */
.services {
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .sc-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .sc-img { transform: scale(1.08); }
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 30%, rgba(15,23,42,.85) 100%);
  z-index: -1;
}
.service-card .sc-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.8rem 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.service-card .sc-badge {
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card h3 {
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.service-card .sc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.service-card .sc-arrow svg {
  width: 18px; height: 18px;
  transition: transform .25s ease;
}
.service-card:hover .sc-arrow svg { transform: translateX(4px); }

/* category tinted accents on top edge */
.service-card.cat-tours::after,
.service-card.cat-transport::after,
.service-card.cat-rentals::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 1;
}
.service-card.cat-tours::after     { background: var(--tours); }
.service-card.cat-transport::after { background: var(--transport); }
.service-card.cat-rentals::after   { background: var(--rental); }

/* ============================================
   GENERIC CARDS GRID (legacy + home categories)
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card-wrap {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  border-radius: var(--radius);
  outline: none;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.card-wrap:focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; }
.card-wrap:hover .card { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-wrap:hover .emoji { transform: scale(1.12) rotate(-4deg); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.card-img {
  height: 160px;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 60%);
}
.emoji {
  font-size: 3.6rem;
  filter: drop-shadow(0 6px 14px rgba(15,23,42,.25));
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ============================================
   TOUR CARDS (filtered featured grid)
   ============================================ */
.filter-bar-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}
.filter-bar-pill button {
  padding: 0.55rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-bar-pill button:hover { border-color: var(--brand); color: var(--brand-2); }
.filter-bar-pill button.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tour-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.tour-card .tc-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.tour-card .tc-price {
  position: absolute;
  bottom: 0.85rem; left: 0.85rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-xs);
}
.tour-card .tc-price small { font-weight: 500; color: var(--ink-soft); margin-right: 0.2rem; }
.tour-card .tc-cat {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  padding: 0.3rem 0.75rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tour-card.cat-adventure .tc-cat { background: var(--transport); }
.tour-card.cat-water     .tc-cat { background: var(--tours); }
.tour-card.cat-cultural  .tc-cat { background: var(--rental); }
.tour-card.cat-beach     .tc-cat { background: var(--cta); }
.tour-card.cat-nightlife .tc-cat { background: var(--ink); }

.tour-card .tc-body {
  padding: 1.2rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}
.tour-card h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--ink);
}
.tour-card .tc-desc {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}
.tour-card .tc-meta {
  display: flex;
  gap: 0.9rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.tour-card .tc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.tour-card .tc-meta svg { width: 14px; height: 14px; opacity: 0.7; }
.tour-card .tc-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.85rem;
}
.tour-card .tc-rating .stars { color: var(--star); }
.tour-card .tc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}
.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.83rem;
  cursor: pointer;
  transition: background .2s ease;
}
.btn-add:hover { background: var(--cta); }
.btn-add svg { width: 14px; height: 14px; }
.btn-add.added { background: var(--success); }

/* ============================================
   DIFFERENTIATORS (Concierge Difference)
   ============================================ */
.diff-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.diff-card {
  text-align: center;
  padding: 1.8rem 1.4rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.diff-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.diff-card .diff-ic {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-2);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}
.diff-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.diff-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ============================================
   STATS (social proof)
   ============================================ */
.stats {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(34,193,195,.18) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(249,115,22,.12) 0%, transparent 45%);
  pointer-events: none;
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.stat-item {
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--brand), #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ============================================
   TRANSPORTATION QUOTE (preview card)
   ============================================ */
.transport-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.transport-list { display: grid; gap: 0.8rem; }
.transport-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.transport-item:hover { border-color: var(--transport); transform: translateX(2px); }
.transport-item .ti-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--transport-soft);
  color: var(--transport-2);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.transport-item h4 { font-size: 1rem; margin-bottom: 0.15rem; color: var(--ink); }
.transport-item p { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.4; }
.transport-item .ti-price { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.transport-item .ti-price small { color: var(--ink-soft); font-weight: 500; font-size: 0.78rem; }

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.quote-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.quote-form {
  display: grid;
  gap: 0.9rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.quote-result {
  margin-top: 0.5rem;
  padding: 1.1rem 1.3rem;
  background: var(--transport-soft);
  border: 1px solid var(--transport);
  border-radius: var(--radius);
  display: none;
}
.quote-result.is-visible { display: block; }
.quote-result strong { color: var(--transport-2); font-size: 1.5rem; display: block; margin-bottom: 0.2rem; }
.quote-result p { color: var(--ink-soft); font-size: 0.85rem; }

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews {
  background: var(--bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars {
  color: var(--star);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.review-text {
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.96rem;
  flex: 1;
}
.review-foot {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-author { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.review-source { font-size: 0.78rem; color: var(--ink-soft); }

/* ============================================
   LEAD FORM (Plan Your Trip)
   ============================================ */
.lead-section {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 50%, #2a1f4d 100%);
  color: #fff;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(34,193,195,.2) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(249,115,22,.18) 0%, transparent 50%);
}
.lead-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.lead-text .eyebrow { color: rgba(255,255,255,.7); }
.lead-text h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.lead-text h2 .accent {
  background: linear-gradient(120deg, var(--brand), #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-text p {
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.lead-perks {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.lead-perks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,.88);
}
.lead-perks li::before {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.lead-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.5);
}
.lead-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.lead-form .lead-form-sub {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.lead-form .field-row { margin-bottom: 0; }
.lead-form .btn { width: 100%; margin-top: 0.5rem; padding: 1.05rem 1.5rem; font-size: 1rem; }
.lead-form .lead-trust {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 4.5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo strong { color: #fff; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.3rem;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: 0.92rem;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer-col a:hover { color: var(--brand); }

.footer-trust {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.footer-trust .badge {
  padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  color: rgba(255,255,255,.8);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}
.foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.foot-links a { color: rgba(255,255,255,.55); transition: color .2s ease; }
.foot-links a:hover { color: var(--brand); }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.float-wa {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  z-index: -1;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.5);  opacity: 0; }
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 18px 36px -8px rgba(37,211,102,.7); }
.float-wa svg { width: 28px; height: 28px; }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1),
              transform .8s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE HERO (internal pages — refreshed look)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: calc(var(--header-h) + 3rem) 1.5rem 3rem;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
}
.page-hero.theme-tours     { background: linear-gradient(135deg, #082f49 0%, var(--tours) 60%, var(--brand) 100%); }
.page-hero.theme-playas    { background: linear-gradient(135deg, var(--ink) 0%, #134e4a 50%, var(--brand) 100%); }
.page-hero.theme-activs    { background: linear-gradient(135deg, #064e3b 0%, var(--transport) 100%); }
.page-hero.theme-conoce    { background: linear-gradient(135deg, #2e1065 0%, var(--rental) 100%); }
.page-hero.theme-sabor     { background: linear-gradient(135deg, #7c2d12 0%, var(--cta) 100%); }
.page-hero.theme-transport { background: linear-gradient(135deg, #064e3b 0%, var(--transport) 100%); }
.page-hero.theme-rentals   { background: linear-gradient(135deg, #2e1065 0%, var(--rental) 100%); }
.page-hero.theme-blog      { background: linear-gradient(135deg, var(--ink) 0%, var(--brand-2) 100%); }
.page-hero.theme-biz       { background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%); }
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12) 0%, transparent 45%);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0.4rem 0 0.8rem;
  color: #fff;
  letter-spacing: -0.025em;
}
.page-hero p {
  max-width: 600px;
  font-size: 1.02rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.page-hero .eyebrow { color: rgba(255,255,255,.85); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform .2s ease, color .2s ease;
}
.back-link:hover { color: #fff; transform: translateX(-3px); }

/* ============================================
   LIST PAGES (Tours, Activities, Beaches index)
   ============================================ */
.list-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.list-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  opacity: 0;
  transform: translateY(15px);
  animation: listIn .55s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes listIn { to { opacity: 1; transform: translateY(0); } }
.list-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--brand);
}
.list-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: var(--brand-soft);
  flex-shrink: 0;
}
.theme-playas    .list-icon { background: var(--tours-soft); }
.theme-tours     .list-icon { background: var(--tours-soft); }
.theme-activs    .list-icon { background: var(--transport-soft); }
.theme-conoce    .list-icon { background: var(--rental-soft); }
.theme-sabor     .list-icon { background: var(--cta-soft); }
.theme-transport .list-icon { background: var(--transport-soft); }
.theme-rentals   .list-icon { background: var(--rental-soft); }

.list-section {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.list-section:first-child { margin-top: 0; }
.list-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--ink);
  white-space: nowrap;
}
.list-section .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}
.list-section .count {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 700;
}
.list-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.list-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}
.list-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--brand-2);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .list-item { grid-template-columns: 48px 1fr; padding: 1rem 1.2rem; gap: 1rem; }
  .list-icon { width: 44px; height: 44px; font-size: 1.4rem; border-radius: 12px; }
  .list-tag  { grid-column: 1 / -1; justify-self: start; margin-top: 0.2rem; }
  .list-body h3 { font-size: 1rem; }
  .list-body p  { font-size: 0.85rem; }
}

/* ============================================
   BEACH DETAIL PAGE
   ============================================ */
.beach-hero {
  position: relative;
  min-height: 65vh;
  padding: calc(var(--header-h) + 3rem) 1.5rem 3rem;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.beach-hero .bg-img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  animation: slowZoom 22s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.beach-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,23,42,.15) 0%, rgba(15,23,42,.4) 50%, rgba(15,23,42,.85) 100%);
}
.beach-hero-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.beach-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin: 0.6rem 0 0.7rem;
  color: #fff;
  line-height: 1.05;
}
.beach-hero p.intro {
  max-width: 620px;
  font-size: 1rem;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
}
.beach-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 500;
}

.beach-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  gap: 1.4rem;
}
.beach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.beach-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.beach-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}
.beach-card h2 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.beach-card h2 .ic {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 14px -4px rgba(34,193,195,.5);
}
.beach-card p { color: var(--ink-soft); line-height: 1.65; font-size: 0.95rem; }

.beach-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.beach-map iframe { display: block; width: 100%; height: 420px; border: 0; }

.beach-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.btn-map {
  padding: 0.85rem 1.5rem;
  background: var(--cta);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-cta);
  transition: background .2s ease, transform .2s ease;
}
.btn-map:hover { background: var(--cta-2); transform: translateY(-2px); }
.btn-back {
  padding: 0.85rem 1.5rem;
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid var(--line);
  transition: border-color .2s ease, transform .2s ease;
}
.btn-back:hover { border-color: var(--ink); transform: translateY(-2px); }

@media (max-width: 640px) {
  .beach-hero { min-height: 55vh; padding: calc(var(--header-h) + 2rem) 1.2rem 2rem; }
  .beach-wrap { padding: 3rem 1.2rem 4rem; }
  .beach-card { padding: 1.4rem 1.5rem; }
  .beach-map iframe { height: 320px; }
}

/* ============================================
   BLOG (index + post)
   ============================================ */
.blog-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.7rem;
}
.blog-post {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.blog-post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-post .thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  position: relative;
}
.blog-post .thumb .emoji { font-size: 3.6rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.3)); }
.blog-post .category {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-post .body { padding: 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.blog-post h3 { font-size: 1.18rem; line-height: 1.3; margin-bottom: 0.55rem; color: var(--ink); }
.blog-post p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; flex: 1; margin-bottom: 1rem; }
.blog-post .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.blog-post .meta .read-more { color: var(--brand-2); font-weight: 600; }

.blog-post-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.ad-banner {
  background: linear-gradient(135deg, var(--brand-soft), #cffafe);
  border: 2px dashed var(--brand);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--ink-soft);
  transition: transform .25s ease;
}
.ad-banner:hover { transform: translateY(-3px); }
.ad-banner .ad-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.ad-banner .ad-icon { font-size: 2.6rem; margin-bottom: 0.5rem; }
.ad-banner h4 { font-size: 1.1rem; color: var(--ink); margin-bottom: 0.45rem; line-height: 1.3; }
.ad-banner p { font-size: 0.85rem; margin-bottom: 0.9rem; line-height: 1.5; }
.ad-banner .btn-small {
  padding: 0.55rem 1.1rem;
  background: var(--cta);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-cta);
}
.ad-compact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  text-align: left;
  box-shadow: var(--shadow-xs);
}
.ad-compact .ad-label { text-align: left; }
.ad-compact h4 { font-size: 0.98rem; margin-bottom: 0.25rem; }
.ad-compact p { font-size: 0.8rem; margin-bottom: 0.65rem; }

.blog-article { max-width: 780px; min-width: 0; }
.blog-meta-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.blog-meta-bar .badge {
  padding: 0.32rem 0.85rem;
  background: var(--brand-soft);
  border-radius: var(--radius-pill);
  color: var(--brand-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}
.blog-article h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.blog-subtitle {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.8rem;
  font-style: italic;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}
.blog-article h2 {
  font-size: 1.55rem;
  margin: 2.2rem 0 0.9rem;
  color: var(--ink);
  line-height: 1.25;
}
.blog-article h3 {
  font-size: 1.2rem;
  margin: 1.7rem 0 0.65rem;
  color: var(--ink);
}
.blog-article p { font-size: 1.02rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1.1rem; }
.blog-article ul, .blog-article ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.blog-article li { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 0.4rem; }
.blog-article strong { color: var(--ink); font-weight: 600; }
.blog-article blockquote {
  border-left: 4px solid var(--brand);
  padding: 1rem 1.4rem;
  background: var(--brand-soft);
  border-radius: 0 10px 10px 0;
  margin: 1.4rem 0;
  color: var(--ink);
  font-style: italic;
}
.blog-article a {
  color: var(--brand-2);
  text-decoration: underline;
  text-decoration-color: rgba(34,193,195,.4);
  text-underline-offset: 3px;
}
.blog-article a:hover { text-decoration-color: var(--brand-2); }

.blog-cta-end {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--brand-soft), #cffafe);
  border-radius: var(--radius);
  text-align: center;
  border: 2px dashed var(--brand);
}
.blog-cta-end h3 { font-size: 1.4rem; margin-bottom: 0.55rem; color: var(--ink); }
.blog-cta-end p { color: var(--ink-soft); margin-bottom: 1.1rem; }

@media (max-width: 900px) {
  .blog-post-page { grid-template-columns: 1fr; gap: 2rem; }
  .blog-sidebar { position: static; order: 2; flex-direction: row; flex-wrap: wrap; }
  .blog-sidebar > * { flex: 1; min-width: 240px; }
  .blog-article { order: 1; max-width: 100%; }
}
@media (max-width: 520px) {
  .blog-sidebar { flex-direction: column; }
  .blog-sidebar > * { min-width: 0; }
}

/* ============================================
   NEGOCIOS / DIRECTORY (filterable)
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0 auto 2.5rem;
  max-width: 1000px;
  padding: 0 1rem;
}
.filter-pill {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-1px); }
.filter-pill.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.biz-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.biz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}
.biz-card.hidden { display: none; }
.biz-head {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.95rem;
}
.biz-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--brand-soft);
  flex-shrink: 0;
}
.biz-card h3 { font-size: 1.12rem; line-height: 1.25; color: var(--ink); }
.biz-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--brand-2);
  font-weight: 700;
  margin-top: 0.2rem;
}
.biz-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.95rem;
  flex: 1;
}
.biz-foot {
  display: flex;
  gap: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.biz-foot a {
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--bg);
  transition: background .2s ease, color .2s ease;
}
.biz-foot a:hover { background: var(--brand); color: #fff; }
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
}

/* ============================================
   FAQ / DIRECTORY
   ============================================ */
.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.faq-intro { text-align: center; margin-bottom: 2.5rem; color: var(--ink-soft); font-size: 1.02rem; }
.directory-section { margin-bottom: 2.8rem; }
.directory-section h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.directory-list { list-style: none; display: grid; gap: 0.7rem; }
.directory-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--brand);
  transition: transform .2s ease, border-color .2s ease;
}
.directory-item:hover { transform: translateX(3px); border-left-color: var(--cta); }
.directory-item .d-ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: var(--brand-soft);
}
.directory-item h4 { font-size: 0.98rem; color: var(--ink); margin-bottom: 0.15rem; }
.directory-item p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.4; }
.directory-item .d-phone {
  font-size: 0.85rem;
  color: var(--brand-2);
  font-weight: 600;
  white-space: nowrap;
}
.directory-cta {
  margin-top: 2.5rem;
  padding: 2.2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-soft), #cffafe);
  border-radius: var(--radius);
  border: 2px dashed var(--brand);
}
.directory-cta h3 { font-size: 1.4rem; margin-bottom: 0.55rem; color: var(--ink); }
.directory-cta p { color: var(--ink-soft); margin-bottom: 1.1rem; }

@media (max-width: 640px) {
  .directory-item { grid-template-columns: 38px 1fr; gap: 0.8rem; padding: 0.9rem 1.1rem; }
  .directory-item .d-phone { grid-column: 1 / -1; justify-self: start; margin-top: 0.3rem; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .lead-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .transport-block { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 860px) {
  #nav { padding: 0.85rem 1.2rem; }
  .nav-links, .nav-phone { display: none !important; }
  .hamburger { display: flex !important; }

  .hero { min-height: 88vh; padding-top: calc(var(--header-h) + 2rem); }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .search-bar {
    grid-template-columns: 1fr;
    padding: 0.75rem;
    gap: 0.4rem;
  }
  .search-submit { width: 100%; height: 50px; }

  .section { padding: 4rem 1.2rem; }
  .stats { padding: 3.5rem 1.5rem; }
  .lead-section { padding: 4rem 1.2rem; }
  .lead-form { padding: 1.7rem; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   GLOBAL MOTION (scroll-triggered)
   ============================================ */
@keyframes vvFadeUp {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes vvFadeDown {
  from { opacity: 0; transform: translate3d(0, -16px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes vvSlideRight {
  from { opacity: 0; transform: translate3d(-24px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Page-load entrance for internal pages */
.page-hero > div { animation: vvFadeUp .8s cubic-bezier(.2,.8,.2,1) .15s both; }
.beach-hero-inner { animation: vvFadeUp .9s cubic-bezier(.2,.8,.2,1) .25s both; }
.blog-post-page .blog-article { animation: vvFadeUp .8s cubic-bezier(.2,.8,.2,1) .3s both; }
.blog-post-page .blog-sidebar > * { animation: vvSlideRight .7s cubic-bezier(.2,.8,.2,1) both; }
.blog-post-page .blog-sidebar > *:nth-child(1) { animation-delay: .35s; }
.blog-post-page .blog-sidebar > *:nth-child(2) { animation-delay: .5s; }
.blog-post-page .blog-sidebar > *:nth-child(3) { animation-delay: .65s; }

.filter-bar { animation: vvFadeDown .65s cubic-bezier(.2,.8,.2,1) .2s both; }
.filter-pill { animation: vvFadeUp .5s cubic-bezier(.2,.8,.2,1) both; }
.filter-pill:nth-child(1)  { animation-delay: .25s; }
.filter-pill:nth-child(2)  { animation-delay: .30s; }
.filter-pill:nth-child(3)  { animation-delay: .35s; }
.filter-pill:nth-child(4)  { animation-delay: .40s; }
.filter-pill:nth-child(5)  { animation-delay: .45s; }
.filter-pill:nth-child(6)  { animation-delay: .50s; }
.filter-pill:nth-child(7)  { animation-delay: .55s; }
.filter-pill:nth-child(8)  { animation-delay: .60s; }

.back-link { animation: vvSlideRight .65s cubic-bezier(.2,.8,.2,1) .25s both; }

#nav .logo { animation: vvFadeDown .65s cubic-bezier(.2,.8,.2,1) .1s both; }
#nav .nav-links li { animation: vvFadeDown .55s cubic-bezier(.2,.8,.2,1) both; }
#nav .nav-links li:nth-child(1) { animation-delay: .15s; }
#nav .nav-links li:nth-child(2) { animation-delay: .20s; }
#nav .nav-links li:nth-child(3) { animation-delay: .25s; }
#nav .nav-links li:nth-child(4) { animation-delay: .30s; }
#nav .nav-links li:nth-child(5) { animation-delay: .35s; }
#nav .nav-links li:nth-child(6) { animation-delay: .40s; }
#nav .nav-links li:nth-child(7) { animation-delay: .45s; }
#nav .nav-cta { animation: vvFadeDown .65s cubic-bezier(.2,.8,.2,1) .5s both; }

@supports (animation-timeline: view()) {
  .blog-grid .blog-post,
  .biz-grid .biz-card,
  .directory-section,
  .beach-card,
  .reviews-grid .review-card,
  .diff-grid .diff-card,
  .tours-grid .tour-card,
  .services-grid .service-card,
  .stats-inner .stat-item {
    animation: vvFadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
  .blog-article h2 {
    animation: vvSlideRight linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 15%;
  }
  .section-head, .list-section {
    animation: vvFadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
  }
  footer {
    animation: vvFadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   MOBILE NAVIGATION (hamburger + slide menu)
   ============================================ */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px; height: 44px;
  z-index: 250;
  position: relative;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 3px 0;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease, background-color .3s ease;
  transform-origin: center;
}
#nav.transparent:not(.scrolled) .hamburger span { background: #fff; }
.hamburger:hover span { background: var(--brand-2); }
.hamburger.active span { background: var(--ink) !important; }
.hamburger.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

body.menu-open #nav {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: transparent !important;
  z-index: 240 !important;
}
body.menu-open #nav .logo,
body.menu-open #nav .nav-links,
body.menu-open #nav .nav-right {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity .2s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
body.menu-open { overflow: hidden; touch-action: none; }
body.menu-open .mobile-menu { visibility: visible; pointer-events: auto; }
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s ease;
}
body.menu-open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 88%;
  max-width: 380px;
  background: #fff;
  box-shadow: -24px 0 60px -20px rgba(0,0,0,.4);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
body.menu-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand-2) 100%);
  color: #fff;
  position: sticky; top: 0; z-index: 10;
}
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}
.mobile-menu-logo {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}
.mobile-menu-close {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu-close:hover { background: rgba(255,255,255,.32); transform: rotate(90deg); }
.mobile-menu-nav { padding: 1rem 0.9rem 0.5rem; flex: 0 0 auto; }
.mobile-menu-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-menu-links li {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .45s cubic-bezier(.2,.8,.2,1), transform .45s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 50ms + 160ms);
}
body.menu-open .mobile-menu-links li { opacity: 1; transform: translateX(0); }
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mobile-menu-link:hover {
  background: var(--brand-soft);
  color: var(--brand-2);
  transform: translateX(3px);
}
.mobile-menu-link.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 20px -8px rgba(34,193,195,.5);
}
.mobile-menu-link.active .mml-arrow { color: #fff; opacity: 1; }
.mml-ic {
  font-size: 1.4rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}
.mml-txt { flex: 1; }
.mml-arrow {
  opacity: 0;
  font-size: 1rem;
  color: var(--brand-2);
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}
.mobile-menu-link:hover .mml-arrow { opacity: 1; transform: translateX(0); }

.mobile-menu-extras {
  margin-top: auto;
  padding: 1rem 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease .55s, transform .5s cubic-bezier(.2,.8,.2,1) .55s;
}
body.menu-open .mobile-menu-extras { opacity: 1; transform: translateY(0); }
.mobile-menu-extra {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.mobile-menu-extra:hover { color: var(--brand-2); background: var(--bg); }
.mobile-menu-extra .mml-ic { font-size: 1.15rem; width: 26px; }

.mobile-menu-cta {
  margin: 0.6rem 0.9rem 0;
  padding: 0.9rem 1.2rem;
  background: var(--cta);
  color: #fff !important;
  border-radius: var(--radius-pill);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-cta);
}
.mobile-menu-cta:hover { background: var(--cta-2); }

.mobile-menu-foot {
  padding: 1rem 1.4rem 1.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}
.mobile-menu-foot p { margin: 0; }
.mobile-menu-foot strong { color: var(--ink); }

/* ============================================
   PHASE 2 — TRANSPORTATION PAGE
   ============================================ */
.provider-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.provider-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.4rem;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 1.8rem;
}
.provider-stats > div { text-align: center; }
.provider-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--transport-2);
  letter-spacing: -0.02em;
}
.provider-stats span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.provider-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.provider-badges {
  display: grid;
  gap: 0.85rem;
}
.pb {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease;
}
.pb:hover { border-color: var(--transport); }
.pb-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--transport-soft);
  color: var(--transport-2);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.pb strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}
.pb span {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .provider-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .provider-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Routes grid (Transportation) */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.route-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  color: inherit;
}
.route-card:hover {
  transform: translateY(-3px);
  border-color: var(--transport);
  box-shadow: var(--shadow-sm);
}
.route-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--transport-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.route-body h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.route-body p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.route-price {
  font-weight: 700;
  color: var(--transport-2);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ============================================
   PHASE 2 — RENTALS PAGE
   ============================================ */
.rentals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.rental-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.rental-card.hidden { display: none; }
.rental-card .rc-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
}
.rental-card .rc-cat {
  position: absolute;
  bottom: 0.85rem; left: 0.85rem;
  padding: 0.35rem 0.85rem;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
}
.rental-card .rc-badge {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  padding: 0.32rem 0.85rem;
  background: var(--cta);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-cta);
}
.rental-card .rc-badge.featured { background: linear-gradient(135deg, var(--cta), var(--cta-2)); }
.rental-card .rc-body {
  padding: 1.3rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rental-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--ink);
}
.rental-card .rc-desc {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}
.rental-card .rc-meta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.rental-card .rc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.rental-card .rc-price strong {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.rental-card .rc-price small {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.78rem;
  margin-left: 0.2rem;
}

/* ============================================
   PHASE 2 — MY-TRIP PAGE
   ============================================ */
.trip-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.trip-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--brand-soft), #cffafe);
  border-radius: var(--radius);
  border: 1px solid var(--brand);
}
.trip-stat { text-align: center; }
.trip-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trip-stat span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.trip-section { margin-bottom: 2.5rem; }
.trip-section[hidden] { display: none; }
.trip-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.trip-section-head h2 { font-size: 1.4rem; }
.btn-text {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: background .2s ease, color .2s ease;
}
.btn-text:hover { background: var(--bg); color: var(--danger); }

.trip-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.trip-item {
  display: grid;
  grid-template-columns: 56px 1fr auto auto auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.trip-item:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.ti-emoji {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.ti-body h4 { font-size: 1rem; color: var(--ink); margin-bottom: 0.15rem; }
.ti-body p { font-size: 0.8rem; color: var(--ink-soft); }
.ti-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  background: var(--bg);
  border-radius: var(--radius-pill);
}
.ti-qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
}
.ti-qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.ti-qty-btn:hover { background: var(--brand); color: #fff; }
.ti-sub {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  min-width: 70px;
  text-align: right;
}
.ti-remove {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.ti-remove:hover { background: #fee2e2; border-color: var(--danger); color: var(--danger); }

@media (max-width: 720px) {
  .trip-item {
    grid-template-columns: 48px 1fr auto;
    grid-template-areas:
      "emoji body remove"
      "qty   qty  sub";
    gap: 0.8rem 1rem;
  }
  .ti-emoji  { grid-area: emoji; }
  .ti-body   { grid-area: body; }
  .ti-qty    { grid-area: qty; justify-self: start; }
  .ti-sub    { grid-area: sub; }
  .ti-remove { grid-area: remove; }
}

.trip-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--surface);
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
}
.trip-empty[hidden] { display: none; }
.trip-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 16px rgba(15,23,42,.15));
}
.trip-empty h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.trip-empty p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
