/* ===========================
   TAXI VELIZ MD — style.css
   =========================== */

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

:root {
  --yel: #FFD600;
  --blk: #111111;
  --dk: #1a1a1a;
  --wh: #ffffff;
  --gray-bg: #f5f5f5;
  --text: #111;
  --text-muted: #555;
  --border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ---- UTILITIES ---- */
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.narrow    { max-width: 600px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.yel { color: var(--yel); }

/* ---- SITE HEADER (sticky wrapper) ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ---- TOPBAR ---- */
.topbar {
  background: #0a0a0a;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar span { color: #aaa; font-size: 12px; }
.topbar strong { color: var(--yel); }
.topbar-links { display: flex; gap: 8px; }
.topbar-links a {
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.topbar-links a.call { background: var(--yel); color: #111; }
.topbar-links a.wa   { background: #25d366; color: #fff; }

/* ---- NAV ---- */
nav {
  background: #111;
  border-top: 1px solid #222;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; padding: 4px 0; }
.nav-logo-img {
  height: 110px;
  width: 110px;
  object-fit: cover;
  object-position: center 75%;
  display: block;
  mix-blend-mode: lighten;
  border-radius: 50%;
}
.nav-name { color: var(--yel); font-size: 1rem; font-weight: 700; letter-spacing: 1px; }
.nav-sub  { color: #7dd3fc; font-size: 10px; letter-spacing: 2px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: #ccc;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--yel); background: rgba(255,214,0,0.08); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: #111;
  background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1400&q=80');
  background-size: cover;
  background-position: center 60%;
  padding: 80px 20px 70px;
  text-align: center;
  border-bottom: 4px solid var(--yel);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,214,0,0.12);
  border: 1px solid rgba(255,214,0,0.3);
  color: var(--yel);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--yel);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero p {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 30px;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-green, .btn-yel {
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-green { background: #25d366; color: #fff; }
.btn-green:hover { background: #1ebe5a; }
.btn-yel  { background: var(--yel); color: #111; }
.btn-yel:hover { background: #e6c800; }

/* ---- STATS ---- */
.stats-bar {
  background: var(--yel);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat { text-align: center; padding: 18px 10px; border-right: 1px solid rgba(0,0,0,0.1); }
.stat:last-child { border-right: none; }
.stat-num   { font-size: 1.5rem; font-weight: 800; color: #111; }
.stat-label { font-size: 11px; color: #444; font-weight: 500; margin-top: 2px; }

/* ---- SECTIONS ---- */
.section      { padding: 60px 20px; }
.section.dark { background: #111; }
.section.gray { background: var(--gray-bg); }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--yel);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title      { font-size: 1.7rem; font-weight: 700; margin-bottom: 10px; }
.section-title.light { color: #fff; }
.section-sub        { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; margin-bottom: 36px; }
.section-sub.light  { color: #94a3b8; }
.section-sub.centered { margin: 0 auto 36px; text-align: center; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.svc-card:hover { border-color: var(--yel); transform: translateY(-2px); }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--yel);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-name  { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.svc-desc  { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ---- WHY CARDS ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,214,0,0.15);
  border-radius: 14px;
  padding: 22px;
}
.why-icon {
  width: 42px; height: 42px;
  background: rgba(255,214,0,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-icon svg { width: 20px; height: 20px; }
.why-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.why-text  { font-size: 13px; color: #94a3b8; line-height: 1.5; }

/* ---- STEPS ---- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.step-card { text-align: center; padding: 20px 12px; }
.step-circle {
  width: 54px; height: 54px;
  background: var(--yel);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
}
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.step-text  { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.stars       { color: var(--yel); font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.reviewer    { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--yel);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #111;
  flex-shrink: 0;
}
.rev-name { font-size: 13px; font-weight: 700; }
.rev-sub  { font-size: 11px; color: var(--text-muted); }

/* ---- CONTACT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-block {
  background: rgba(255,214,0,0.07);
  border: 1px solid rgba(255,214,0,0.2);
  border-radius: 12px;
  padding: 16px 18px;
}
.contact-label { font-size: 11px; color: var(--yel); font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
.contact-val   { font-size: 1rem; font-weight: 700; color: #fff; }
.contact-sub   { font-size: 12px; color: #94a3b8; margin-top: 2px; }

.cta-big {
  background: var(--yel);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.cta-big p { font-size: 11px; font-weight: 700; color: #666; letter-spacing: 1px; margin-bottom: 6px; }
.phone-big {
  font-size: 1.9rem;
  font-weight: 800;
  color: #111;
  display: block;
  margin-bottom: 16px;
}
.btn-wa-big {
  background: #111;
  color: var(--yel);
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  transition: background 0.2s;
}
.btn-wa-big:hover { background: #333; }

/* ---- FORMS ---- */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}
.form-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.form-card > p { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.frow { margin-bottom: 13px; }
.frow label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.frow input,
.frow select,
.frow textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.frow input:focus,
.frow select:focus,
.frow textarea:focus { border-color: var(--yel); }
.frow textarea { min-height: 85px; resize: vertical; }

.btn-submit {
  width: 100%;
  background: #111;
  color: var(--yel);
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-submit:hover { background: #333; }

.success-msg {
  display: none;
  background: #d1fae5;
  color: #065f46;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
}

/* ---- FOOTER ---- */
footer {
  background: #0a0a0a;
  padding: 50px 20px 20px;
  border-top: 3px solid var(--yel);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}
.footer-brand .f-name { font-size: 1.2rem; font-weight: 800; color: var(--yel); }
.footer-brand .f-sub  { font-size: 11px; color: #7dd3fc; letter-spacing: 2px; }
.footer-brand p       { font-size: 12px; color: #666; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--yel); letter-spacing: 1px; margin-bottom: 12px; }
.footer-col a  { display: block; color: #888; font-size: 13px; text-decoration: none; padding: 3px 0; }
.footer-col a:hover { color: var(--yel); }
.footer-col p  { color: #666; font-size: 13px; padding: 3px 0; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 18px;
  text-align: center;
  color: #555;
  font-size: 12px;
}

/* ---- LOCATION PICKER ---- */
.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  max-width: 600px;
  margin: 24px auto 0;
  text-align: center;
}
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 16px 0;
  background: #eee;
  overflow: hidden;
}
.btn-gps {
  background: var(--yel);
  color: #111;
  border: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-gps:hover { background: #e6c800; }
.btn-gps:disabled { opacity: 0.6; cursor: not-allowed; }
.gps-status {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  min-height: 20px;
}
.gps-status.error { color: #dc2626; }
.gps-status.success { color: #16a34a; }
.location-result {
  background: rgba(255,214,0,0.07);
  border: 1px solid rgba(255,214,0,0.25);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 14px;
}
.location-coords {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.location-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.btn-send-location {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #25d366;
  color: #fff;
  transition: background 0.2s;
}
.btn-send-location:hover { background: #1da851; }

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
  .hero { padding: 50px 16px 50px; }
  .hero h1 { font-size: 1.9rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #111; padding: 10px 20px 16px; gap: 2px; border-top: 1px solid #222; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  nav { position: relative; }
  .nav-logo-img { height: 70px; }
  .topbar { justify-content: center; flex-direction: column; text-align: center; gap: 6px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 40px 16px; }
  .section-title { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { justify-content: center; }
  .stat-num { font-size: 1.2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-links { flex-direction: column; align-items: center; }
  .form-card { padding: 18px; }
  .location-card { padding: 18px; }
  .map-container { height: 250px; }
}
