/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --yellow:        #FFD100;
  --yellow-dark:   #E6BC00;
  --yellow-light:  #FFF0A0;
  --black:         #111111;
  --grey-900:      #1A1A1A;
  --grey-800:      #2B2B2B;
  --grey-600:      #4A4A4A;
  --grey-200:      #E8E8E8;
  --white:         #FFFFFF;
  --wa-green:      #25D366;
  --wa-green-dark: #1EB254;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);
  --shadow-btn: 0 4px 14px rgba(0,0,0,0.22);

  --font: 'Inter', system-ui, sans-serif;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--grey-200);
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { text-decoration: none; color: inherit; }

/* ============================================================
   Shared button styles
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-btn); }
.btn:active { transform: translateY(0);    box-shadow: none; }

.btn--lg { padding: 15px 32px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* Dark button (used in hero) */
.btn--dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.btn--dark:hover { background: var(--grey-800); }

/* Outline light (used in navbar) */
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  padding: 8px 20px;
  font-size: 0.9rem;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* WhatsApp button */
.btn--whatsapp {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn--whatsapp:hover { background: var(--wa-green-dark); border-color: var(--wa-green-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: var(--grey-900);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.navbar__logo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--yellow);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  font-size: 1.2rem;
  transition: background 0.15s, transform 0.15s;
}
.navbar__whatsapp:hover {
  background: var(--wa-green-dark);
  transform: scale(1.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 80px 80px 80px;
  background: var(--yellow);
  overflow: hidden;
  min-height: calc(100vh - 64px - 72px - 80px); /* viewport minus navbar, benefits, etc */
}

/* Subtle diagonal stripe texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(0,0,0,0.025) 28px,
    rgba(0,0,0,0.025) 30px
  );
  pointer-events: none;
}

/* Bottom-right dark wave decoration */
.hero::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--grey-800);
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero__subtitle strong {
  color: var(--black);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Large decorative taxi icon */
.hero__graphic {
  position: relative;
  z-index: 1;
  font-size: clamp(100px, 18vw, 220px);
  line-height: 1;
  color: rgba(0,0,0,0.08);
  user-select: none;
  flex-shrink: 0;
  filter: drop-shadow(4px 8px 0 rgba(0,0,0,0.06));
}

/* ============================================================
   BENEFITS STRIP
   ============================================================ */
.benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--black);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  padding: 18px 32px;
  font-weight: 600;
  font-size: 0.9rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.benefit:last-child { border-right: none; }
.benefit:hover { background: rgba(255,255,255,0.05); }

.benefit i {
  color: var(--yellow);
  font-size: 1.1rem;
}

/* ============================================================
   CONTACTS SECTION
   ============================================================ */
.contacts {
  background: var(--white);
  text-align: center;
  padding: 80px 40px;
}

.contacts__title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.contacts__sub {
  color: var(--grey-600);
  font-size: 1rem;
  margin-bottom: 40px;
}

.contacts__loading {
  color: var(--grey-600);
  font-size: 0.95rem;
}

/* Card grid */
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

/* Individual card */
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Avatar circle with initials */
.contact-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.contact-card__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  width: 100%;
}

.contact-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

.contact-card__role {
  font-size: 0.85rem;
  color: var(--grey-600);
  font-weight: 600;
  margin: 0;
}

.contact-card__city {
  font-size: 0.82rem;
  color: var(--grey-600);
  margin: 2px 0 0;
}

.contact-card__city i {
  color: var(--yellow-dark);
}

.contact-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  transition: color 0.15s;
}
.contact-card__phone:hover { color: var(--grey-600); }
.contact-card__phone i { color: var(--yellow-dark); }

.contact-card__wa {
  align-self: stretch;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--grey-900);
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  font-size: 0.8rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar__brand { font-size: 1rem; }

  .hero {
    flex-direction: column;
    padding: 48px 24px 56px;
    text-align: center;
    align-items: flex-start;
    gap: 32px;
    min-height: unset;
  }

  .hero__cta { justify-content: center; width: 100%; }

  .hero__graphic {
    display: none; /* hide on small screens */
  }

  .benefits { flex-direction: column; }
  .benefit  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); justify-content: center; }
  .benefit:last-child { border-bottom: none; }

  .contacts { padding: 56px 24px; }

  .footer {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 16px 24px;
  }
}
