/* ═══════════════════════════════════
   MRCN Tours — Stylesheet
   ═══════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #d4b85a;
  --gold-dark: #b8963e;
  --dark: #0a0a0a;
  --dark-card: #141414;
  --dark-border: #2a2a2a;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --text: #e5e5e5;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font: inherit; }
input { font: inherit; }


/* ── Layout ── */
.container { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 4rem 1rem; }
.bg-dark-alt { background-color: #0d0d0d; }
.text-gold { color: var(--gold); }


/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--whatsapp);
  color: var(--whatsapp);
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  transition: background 0.2s;
  background: transparent;
}
.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.1); }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.875rem;
  font-size: 1.125rem;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--whatsapp-dark); }
.btn-submit:disabled { background: #1a5c30; opacity: 0.4; cursor: not-allowed; }

.input-field {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--dark-border);
  background: var(--dark);
  padding: 0.75rem 1rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-field::placeholder { color: #4b5563; }
.input-field:focus { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.input-field.input-green:focus { border-color: #22c55e; box-shadow: 0 0 0 1px #22c55e; }
.input-field.input-red:focus { border-color: #ef4444; box-shadow: 0 0 0 1px #ef4444; }

.card {
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.card:hover { border-color: rgba(201, 168, 76, 0.4); background: #1a1a1a; }


/* ── Section Titles ── */
.section-title { text-align: center; }
.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.section-title h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
}


/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--dark-border);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1152px;
  margin: 0 auto;
}
.logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.logo-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 0.5rem; }
.header-right .ig-link { padding: 0.5rem; color: var(--text-muted); transition: color 0.2s; }
.header-right .ig-link:hover { color: var(--gold); }
.header-right .rez-btn {
  border-radius: 9999px;
  background: var(--whatsapp);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s;
}
.header-right .rez-btn:hover { background: var(--whatsapp-dark); }

@media (max-width: 767px) {
  .header-right .rez-btn { display: none; }
  .nav-links { display: none !important; }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}


/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(26,21,16,0.75) 50%, rgba(10,10,10,0.9) 100%);
}
.hero-content { position: relative; max-width: 960px; margin: 0 auto; z-index: 1; }
.hero-logo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.2);
  margin: 0 auto 1.5rem;
}
.hero .tagline {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.hero-social {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.hero-social .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.hero-social .social-link:hover { color: var(--gold); }
.hero-social .divider { width: 1px; height: 1rem; background: var(--dark-border); }

@media (min-width: 640px) {
  .hero { padding: 8rem 1rem; }
  .hero-logo { width: 8rem; height: 8rem; }
  .hero-buttons { flex-direction: row; }
}


/* ═══════════════════════════════════
   SERVICES
   ═══════════════════════════════════ */
.services-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.services-grid .card h3 { font-size: 1.125rem; font-weight: 600; color: #fff; margin: 1rem 0 0.5rem; }
.services-grid .card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }


/* ═══════════════════════════════════
   VEHICLE SHOWCASE
   ═══════════════════════════════════ */
.vehicle-showcase {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}
.showcase-images { display: flex; flex-direction: column; gap: 0.75rem; }
.showcase-main {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.showcase-main img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s;
}
.showcase-main:hover img { transform: scale(1.03); }
.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.showcase-thumbs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid var(--dark-border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.3s;
}
.showcase-thumbs img:hover {
  border-color: var(--gold);
  transform: scale(1.05);
}

.showcase-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.showcase-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; color: #d1d5db; }
.check-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s;
}
.ig-cta:hover { color: var(--gold-light); }

@media (min-width: 768px) {
  .vehicle-showcase { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════
   GALLERY
   ═══════════════════════════════════ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.filter-btn {
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--dark-border);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--dark-border);
  transition: border-color 0.3s, transform 0.3s;
}
.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.05); }

.gallery-item-wide { grid-column: span 2; }
.gallery-item-wide img,
.gallery-item-wide video { aspect-ratio: 16/9; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 2rem;
  color: #fff;
  font-weight: 300;
}
.video-overlay .play-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding-left: 4px;
}
.gallery-video .gallery-overlay { opacity: 1; background: rgba(0,0,0,0.3); }
.gallery-video:hover .gallery-overlay { background: rgba(0,0,0,0.15); }

.gallery-item.hidden-item {
  display: none;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}


/* ═══════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  z-index: 10;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: #000; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.875rem;
}


/* ═══════════════════════════════════
   FEATURES
   ═══════════════════════════════════ */
.features-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.feature-card {
  display: flex;
  gap: 1rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(201, 168, 76, 0.4); }
.feature-icon { font-size: 1.875rem; flex-shrink: 0; }
.feature-card h4 { font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); }

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }


/* ═══════════════════════════════════
   RESERVATION
   ═══════════════════════════════════ */
.reservation-grid { display: grid; gap: 2rem; margin-top: 3rem; }

@media (min-width: 1024px) {
  .reservation-grid { grid-template-columns: 3fr 2fr; }
}

/* Map Controls */
.map-controls { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.map-btn {
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--dark-border);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
}
.map-btn:hover { border-color: #6b7280; }
.map-btn.active-start { background: rgba(22, 163, 74, 0.2); border-color: #22c55e; color: #4ade80; }
.map-btn.active-end { background: rgba(220, 38, 38, 0.2); border-color: #ef4444; color: #f87171; }
.map-btn.gold-outline { border-color: var(--gold); color: var(--gold); }
.map-btn.gold-outline:hover { background: rgba(201, 168, 76, 0.1); }
.map-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Location Inputs */
.location-inputs { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 0.5rem; }
.location-inputs label { display: block; font-size: 0.75rem; font-weight: 500; margin-bottom: 0.25rem; }
.label-green { color: #4ade80; }
.label-red { color: #f87171; }
.input-row { display: flex; gap: 0.5rem; position: relative; }
.input-row .input-field { flex: 1; }
.search-btn {
  border-radius: 0.5rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.search-btn:hover { border-color: #22c55e; color: #4ade80; }
.search-btn.end-search:hover { border-color: #ef4444; color: #f87171; }
.search-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Autocomplete Dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  max-height: 200px;
  overflow-y: auto;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.autocomplete-item {
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  color: #d1d5db;
  cursor: pointer;
  border-bottom: 1px solid var(--dark-border);
  transition: background 0.15s;
  line-height: 1.4;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: #1a1a1a; color: var(--gold); }

.map-hint { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.5rem; }

@media (min-width: 640px) {
  .location-inputs { grid-template-columns: 1fr 1fr; }
}

/* Map */
.map-wrapper {
  border-radius: 0.75rem;
  border: 1px solid var(--dark-border);
  overflow: hidden;
  height: 420px;
}

/* Distance Cards */
.distance-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
.distance-cards.hidden { display: none; }
.distance-card {
  border-radius: 0.5rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  padding: 1rem;
  text-align: center;
}
.distance-label { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.25rem; }
.distance-value { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.distance-unit { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }

/* Form Card */
.form-card {
  border-radius: 1rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.form-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--gold); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group > label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 0.375rem;
}

.datetime-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }

select.input-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

@media (min-width: 1024px) {
  .form-card { position: sticky; top: 5rem; }
}

/* Passenger Counter */
.passenger-counter { display: flex; align-items: center; gap: 0.75rem; }
.counter-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--dark-border);
  background: var(--dark);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  transition: border-color 0.2s;
}
.counter-btn:hover { border-color: var(--gold); }
.counter-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.counter-value { font-size: 1.25rem; font-weight: 700; color: #fff; width: 2rem; text-align: center; }
.counter-hint { font-size: 0.75rem; color: var(--text-dim); margin-left: 0.25rem; }

/* Passenger List */
.passengers-list {
  max-height: 16rem;
  overflow-y: auto;
  padding-right: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.passenger-item {
  border-radius: 0.5rem;
  border: 1px solid var(--dark-border);
  background: var(--dark);
  padding: 0.75rem;
}
.passenger-item .p-label { font-size: 0.75rem; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; }
.passenger-item input { margin-bottom: 0.5rem; }
.passenger-item .tc-error { font-size: 0.75rem; color: #f87171; margin-top: 0.25rem; }
.tc-invalid { border-color: #991b1b !important; }

/* Location Summary */
.location-summary { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.loc-box {
  border-radius: 0.5rem;
  border: 1px solid var(--dark-border);
  background: var(--dark);
  padding: 0.75rem;
}
.loc-label { font-size: 0.75rem; font-weight: 500; margin-bottom: 0.25rem; }
.loc-label.green { color: #4ade80; }
.loc-label.red { color: #f87171; }
.loc-label.gold { color: var(--gold); }
.loc-text {
  font-size: 0.875rem;
  color: #d1d5db;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.loc-placeholder { color: #4b5563; }


/* ═══════════════════════════════════
   MODAL
   ═══════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-content {
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1rem;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.modal-content h3 { font-size: 1.125rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.modal-content .info-row { font-size: 0.875rem; color: #d1d5db; margin-bottom: 0.5rem; }
.modal-content .info-label { color: var(--text-dim); }
.modal-content .total { font-size: 1.125rem; font-weight: 700; color: var(--gold); margin-top: 0.5rem; }
.modal-buttons { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.modal-buttons button {
  flex: 1;
  border-radius: 0.5rem;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.cancel-btn { border: 1px solid var(--dark-border); background: transparent; color: var(--text-muted); }
.cancel-btn:hover { background: #1a1a1a; }
.confirm-btn { background: var(--whatsapp); color: #fff; font-weight: 700; }
.confirm-btn:hover { background: var(--whatsapp-dark); }


/* ═══════════════════════════════════
   ERROR BAR
   ═══════════════════════════════════ */
.error-bar {
  display: none;
  max-width: 768px;
  margin: 1.5rem auto 0;
  border-radius: 0.5rem;
  background: rgba(127, 29, 29, 0.3);
  border: 1px solid #991b1b;
  padding: 0.75rem 1rem;
  color: #fca5a5;
  font-size: 0.875rem;
}
.error-bar.visible { display: block; }


/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--dark-border);
  background: #0d0d0d;
  padding: 3rem 1rem;
  margin-top: 3rem;
}
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-desc { margin-top: 0.75rem; font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }
.footer-col h4 { font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.contact-link { display: flex; align-items: center; gap: 0.5rem; }
.contact-link.wa:hover { color: var(--whatsapp); }
.contact-link.ig:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #4b5563;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ═══════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════ */
.lang-switcher { position: relative; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--dark-border);
  border-radius: 0.5rem;
  padding: 0.375rem 0.5rem;
  font-size: 1.125rem;
  cursor: pointer;
  line-height: 1;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 0.5rem;
  overflow: hidden;
  z-index: 50;
  min-width: 140px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.lang-dropdown.open { display: block; }
.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: transparent;
  border: none;
  color: #d1d5db;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.lang-dropdown button:hover { background: #1a1a1a; color: var(--gold); }

/* ═══════════════════════════════════
   HAMBURGER MENU
   ═══════════════════════════════════ */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.2s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--dark-border);
  z-index: 39;
  padding: 1rem;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--dark-border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ═══════════════════════════════════
   CALL BUTTON
   ═══════════════════════════════════ */
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  transition: background 0.2s;
  background: transparent;
}
.btn-call:hover { background: rgba(59, 130, 246, 0.1); }

.submit-buttons {
  display: flex;
  gap: 0.75rem;
}
.submit-buttons .btn-submit { flex: 1; }

.btn-call-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-call-form:hover { background: #2563eb; }

/* ═══════════════════════════════════
   RTL SUPPORT
   ═══════════════════════════════════ */
[dir="rtl"] .header-inner { direction: rtl; }
[dir="rtl"] .lang-dropdown { left: 0; right: auto; }
[dir="rtl"] .lang-dropdown button { text-align: right; }
[dir="rtl"] .feature-card { direction: rtl; }
[dir="rtl"] .check-list li { direction: rtl; }
[dir="rtl"] .loc-box { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }


/* ═══════════════════════════════════
   LEAFLET OVERRIDES
   ═══════════════════════════════════ */
.leaflet-container { background: #f0f0f0; z-index: 0; border-radius: 0.75rem; }
.leaflet-pane,
.leaflet-control-container { z-index: 0 !important; }
