/* ================================
   VELOCE RENT A CAR — LIGHT THEME
   ================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1B4FD8;
  --blue-dark:  #1340B8;
  --blue-light: #EBF0FD;
  --accent:     #F59E0B;
  --text:       #0f172a;
  --text-2:     #475569;
  --text-3:     #94a3b8;
  --bg:         #FFFFFF;
  --bg-2:       #F8F9FB;
  --bg-3:       #F1F4F9;
  --border:     #E2E8F0;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --font-h:     'Playfair Display', Georgia, serif;
  --font-b:     'Plus Jakarta Sans', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); font-weight: 400; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow-line { width: 18px; height: 2px; background: var(--blue); border-radius: 1px; flex-shrink: 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; color: var(--text); line-height: 1.15; }
h2 em { font-style: italic; color: var(--blue); }

/* ===== NAV ===== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center;
  padding: 0 2rem; height: 70px;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, height 0.3s, background 0.3s;
}
.nav.sticky {
  height: 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

/* Logo */
.nav-logo {
  text-decoration: none; display: flex; align-items: center; gap: 9px;
  margin-right: auto;
  padding-right: 2rem;
  border-right: 1px solid var(--border);
  height: 100%;
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--blue); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(27,79,216,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-logo:hover .nav-logo-icon { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(27,79,216,0.4); }
.logo-mark { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; font-style: italic; color: var(--blue); line-height: 1; }
.logo-text { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.22em; color: var(--text); text-transform: uppercase; }

/* Links */
.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none; padding: 0 1.5rem;
  border-right: 1px solid var(--border);
  height: 100%;
}
.nav-links li { height: 100%; display: flex; align-items: center; }
.nav-links a {
  display: flex; align-items: center; height: 100%;
  font-size: 0.82rem; font-weight: 500; color: var(--text-2);
  text-decoration: none; padding: 0 0.9rem;
  position: relative; transition: color 0.2s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 2px; background: var(--blue); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 0.7rem; padding-left: 1.5rem; }

.nav-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 600; color: var(--text-2);
  border: 1.5px solid var(--border); padding: 0.44rem 0.9rem; border-radius: 8px;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.nav-tel:hover { border-color: #93c5fd; color: var(--blue); background: var(--blue-light); }
.nav-tel svg { flex-shrink: 0; }

.nav-cta {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 0.5rem 1.15rem; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(27,79,216,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(27,79,216,0.4); }
.nav-cta svg { flex-shrink: 0; }

/* Burger */
.burger {
  display: none; background: none;
  border: 1.5px solid var(--border); border-radius: 8px;
  cursor: pointer; flex-direction: column; gap: 4px;
  padding: 8px 9px; transition: border-color 0.2s;
}
.burger:hover { border-color: #93c5fd; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--text); border-radius: 1px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: #fff; z-index: 190;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-2); }
.mobile-link { font-family: var(--font-h); font-size: 2.2rem; font-style: italic; color: var(--text); text-decoration: none; transition: color 0.2s; }
.mobile-link:hover { color: var(--blue); }

@media (max-width: 900px) {
  .nav { padding: 0 1.25rem; }
  .nav-links, .nav-tel { display: none; }
  .nav-logo { border-right: none; padding-right: 0; }
  .nav-right { padding-left: 0; }
  .burger { display: flex; }
  .nav-cta { font-size: 0.74rem; padding: 0.44rem 0.9rem; }
}
@media (max-width: 1100px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { padding: 0 1rem; }
  .nav-links a { padding: 0 0.7rem; }
  .nav-right { padding-left: 1rem; }
  .nav-logo { padding-right: 1.5rem; }
}

/* ===== HERO — SPLIT LAYOUT ===== */
.hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
}

/* LEFT — contenido sobre fondo blanco */
.hero-left {
  background: #fff;
  padding: 4rem 3rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-left::after {
  content: ''; position: absolute; top: 10%; right: 0; bottom: 10%;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem;
}
.hero-tag-line { width: 18px; height: 2px; background: var(--blue); border-radius: 1px; flex-shrink: 0; }

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700; line-height: 1.1; color: var(--text);
  margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: var(--blue); font-weight: 400; }

.hero-desc {
  font-size: 0.92rem; font-weight: 400; color: var(--text-2);
  line-height: 1.8; margin-bottom: 1.75rem; max-width: 340px;
}

.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.25rem; }

.btn-accent {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-size: 0.82rem; font-weight: 700; padding: 0.7rem 1.4rem;
  border-radius: 7px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-accent:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-accent svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--text-2); text-decoration: none;
  font-size: 0.82rem; font-weight: 600; padding: 0.7rem 1.4rem;
  border-radius: 7px; border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: #93c5fd; color: var(--blue); }

/* Stats dentro del hero */
.hero-stats {
  display: flex; gap: 0;
  padding-top: 1.75rem; border-top: 1px solid var(--border);
}
.hero-stat { flex: 1; }
.hero-stat + .hero-stat { padding-left: 1.25rem; border-left: 1px solid var(--border); }
.hero-stat:first-child { padding-right: 1.25rem; }
.hero-stat:nth-child(2) { padding-right: 1.25rem; }
.stat-num {
  display: block; font-family: var(--font-h);
  font-size: 1.7rem; font-weight: 700; color: var(--blue);
  line-height: 1; margin-bottom: 4px;
}
.stat-lbl {
  font-size: 0.68rem; font-weight: 600; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4;
}

/* RIGHT — imagen */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--bg-3);
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; display: block;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.03); }

/* Chip precio sobre imagen */
.hero-chip {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--blue); color: #fff;
  border-radius: 8px; padding: 0.4rem 0.9rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(27,79,216,0.4);
}

/* Badge disponibilidad */
.hero-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 12px; padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.65rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
}
.badge-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.22);
  flex-shrink: 0;
}
.badge-text strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.badge-text span { font-size: 0.7rem; color: var(--text-3); }

/* HERO RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 48% 52%; }
  .hero-left { padding: 2.5rem 2rem; }
  .hero-title { font-size: 2.1rem; }
}
@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vw auto;
    margin-top: 60px;
    min-height: unset;
  }
  .hero-right { grid-row: 1; min-height: 55vw; }
  .hero-left { grid-row: 2; padding: 2rem 1.25rem; }
  .hero-left::after { display: none; }
  .hero-title { font-size: 1.85rem; }
  .hero-desc { max-width: 100%; }
  .hero-stats { gap: 0; }
  .hero-stat:first-child { padding-right: 0.75rem; }
  .hero-stat:nth-child(2) { padding-right: 0.75rem; }
  .hero-stat + .hero-stat { padding-left: 0.75rem; }
  .stat-num { font-size: 1.35rem; }
  .hero-chip { top: 0.85rem; left: 0.85rem; font-size: 0.65rem; padding: 0.32rem 0.7rem; }
  .hero-badge { bottom: 0.85rem; right: 0.85rem; padding: 0.6rem 0.75rem; }
  .badge-text strong { font-size: 0.72rem; }
  .badge-text span { font-size: 0.62rem; }
}

/* ===== MARQUEE ===== */
.marquee-band {
  overflow: hidden; background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 35s linear infinite; }
.marquee-track span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); padding-right: 2rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== FILTERS ===== */
.filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter {
  font-size: 0.8rem; font-weight: 500; padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--border); background: var(--bg); color: var(--text-2);
  border-radius: 50px; cursor: pointer; transition: all 0.2s;
}
.filter:hover { border-color: var(--blue); color: var(--blue); }
.filter.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ===== FLEET ===== */
.fleet { background: var(--bg); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }

.car-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
}
.car-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #c7d4f8; }
.car-card.selected { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,79,216,0.12), var(--shadow-md); }

.car-img-wrap {
  width: 100%; height: 180px; overflow: hidden;
  background: var(--bg-3); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.car-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.car-card:hover .car-img-wrap img { transform: scale(1.04); }
.car-img-placeholder { font-size: 4.5rem; user-select: none; }
.car-badge-wrap { position: absolute; top: 10px; left: 10px; }
.car-badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; background: var(--blue); color: #fff;
}
.car-badge.gold { background: #F59E0B; }

.car-body { padding: 1.1rem 1.25rem; }
.car-name { font-family: var(--font-h); font-size: 1.25rem; font-weight: 400; color: var(--text); margin-bottom: 3px; }
.car-meta { font-size: 0.75rem; color: var(--text-3); margin-bottom: 0.75rem; }
.car-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 1rem; }
.ctag { font-size: 0.68rem; font-weight: 500; padding: 2px 7px; background: var(--bg-3); border: 1px solid var(--border); color: var(--text-2); border-radius: 4px; }
.car-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 0.9rem; border-top: 1px solid var(--border); }
.car-price { font-family: var(--font-h); font-size: 1.65rem; font-weight: 600; color: var(--blue); }
.car-price span { font-size: 0.75rem; font-family: var(--font-b); font-weight: 400; color: var(--text-3); }
.car-btn {
  font-size: 0.75rem; font-weight: 600; padding: 0.45rem 1rem;
  border: 1.5px solid var(--blue); color: var(--blue);
  background: transparent; border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.car-btn:hover, .car-card.selected .car-btn { background: var(--blue); color: #fff; }

/* ===== SERVICES ===== */
.services { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.svc-card {
  background: var(--bg); padding: 2rem 1.75rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.svc-card h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.6rem; }
.svc-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem; transition: box-shadow 0.25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.testi-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.testi-person { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 0.88rem; font-weight: 600; }
.testi-person span { font-size: 0.75rem; color: var(--text-3); }

/* ===== BOOKING ===== */
.booking { background: var(--bg-2); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.booking-left h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; margin-bottom: 1rem; }
.booking-desc { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.75rem; }
.booking-perks { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.booking-perks li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: var(--text-2); }
.perk-check {
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}

.form-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-lg);
}
.form-step { padding-bottom: 1.75rem; margin-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.step-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.5rem; }
.step-num { color: var(--blue); }

.vs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.vs-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.75rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; background: var(--bg);
}
.vs-item:hover { border-color: var(--blue); background: var(--blue-light); }
.vs-item.sel { border-color: var(--blue); background: var(--blue-light); }
.vs-thumb { width: 40px; height: 30px; border-radius: 4px; overflow: hidden; background: var(--bg-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vs-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vs-thumb-ph { font-size: 1.2rem; }
.vs-name { font-size: 0.8rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.vs-price { font-size: 0.72rem; color: var(--blue); font-weight: 500; }

.selected-banner {
  background: var(--blue-light); border: 1.5px solid #b8ccf8;
  border-radius: var(--radius-sm); padding: 0.9rem 1rem;
  display: flex; align-items: center; gap: 0.9rem; margin-top: 0.5rem;
}
.sel-car-img { width: 60px; height: 42px; border-radius: 6px; object-fit: cover; background: var(--bg-3); }
.sel-info { flex: 1; }
.sel-info strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.sel-info span { font-size: 0.75rem; color: var(--text-2); }
.sel-right { text-align: right; }
.sel-price { font-family: var(--font-h); font-size: 1.3rem; color: var(--blue); font-weight: 600; }
.sel-price small { font-size: 0.7rem; color: var(--text-3); font-family: var(--font-b); }
.sel-change { background: none; border: none; font-size: 0.72rem; color: var(--blue); cursor: pointer; text-decoration: underline; margin-top: 2px; display: block; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); }
.field input, .field select {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: var(--font-b); color: var(--text);
  background: var(--bg); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,79,216,0.1); }
.field input::placeholder { color: var(--text-3); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.5; }

.price-box {
  background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; margin-bottom: 1.25rem;
}
.pb-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-2); padding: 0.3rem 0; }
.pb-total { border-top: 1px solid var(--border); padding-top: 0.65rem; margin-top: 0.4rem; font-weight: 600; font-size: 1rem; color: var(--text); }
.pb-total span:last-child { color: var(--blue); font-family: var(--font-h); font-size: 1.25rem; }

.btn-submit {
  width: 100%; padding: 0.95rem 1.5rem; background: #16a34a; color: #fff;
  border: none; border-radius: 8px; font-size: 0.88rem; font-weight: 700;
  font-family: var(--font-b); cursor: pointer; letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  transition: background 0.2s, transform 0.2s; margin-bottom: 0.75rem;
}
.btn-submit:hover { background: #15803d; transform: translateY(-2px); }
.form-note { font-size: 0.75rem; color: var(--text-3); text-align: center; line-height: 1.5; }

@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .row-2, .vs-grid { grid-template-columns: 1fr; } .form-card { padding: 1.25rem; } }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.cl-item { display: flex; align-items: flex-start; gap: 0.85rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.cl-item:last-child { border-bottom: none; padding-bottom: 0; }
.cl-item svg { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.cl-item span { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-3); margin-bottom: 2px; }
.cl-item strong { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.map-card { background: var(--bg-3); border: 1.5px solid var(--border); border-radius: var(--radius); aspect-ratio: 4/3; overflow: hidden; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ===== FOOTER ===== */
.footer { background: var(--text); padding: 3rem 0; }
.footer-inner { text-align: center; }
.footer .logo-mark { color: #60a5fa; }
.footer .logo-text { color: #fff; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin: 0.5rem 0 1.75rem; font-style: italic; }
.footer-nav { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.footer-nav a { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ===== MODAL ===== */
.modal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px); z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg); border-radius: var(--radius); padding: 2.5rem;
  text-align: center; max-width: 380px; width: 90%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(10px); transition: transform 0.3s var(--ease);
}
.modal-bg.open .modal { transform: scale(1) translateY(0); }
.modal-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: #d1fae5; color: #059669; font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.modal h3 { font-family: var(--font-h); font-size: 1.6rem; font-weight: 400; margin-bottom: 0.75rem; }
.modal p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.5rem; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.map-card iframe { width: 100%; height: 100%; min-height: 300px; border: none; display: block; }