:root {
  --ink: #17212b;
  --muted: #64707d;
  --brand: #f6c445;
  --brand-dark: #d49a00;
  --surface: #f5f7fa;
  --deep: #111827;
}

* {
  box-sizing: border-box;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
}

.topbar {
  background: var(--deep);
  color: #fff;
  font-size: 0.92rem;
  padding: 0.55rem 0;
}

.navbar-brand {
  color: var(--ink);
  letter-spacing: 0;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
}

.brand-lockup strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-lockup small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
  width: 72px;
}

.brand-mark img {
  display: block;
  height: auto;
  max-width: 100%;
}

.hero {
  background:
    linear-gradient(95deg, rgba(10, 16, 24, 0.95), rgba(10, 16, 24, 0.68)),
    url("https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
  min-height: 720px;
  padding: 6rem 0 4rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  max-width: 760px;
}

.lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
}

.hero-points span {
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  gap: 0.65rem;
}

.hero-points i {
  color: var(--brand);
}

.eyebrow {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.booking-panel,
.simple-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  color: var(--ink);
  padding: 1.5rem;
}

.booking-panel h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.form-intro {
  color: var(--muted);
  margin-bottom: 1rem;
}

.form-control,
.form-select {
  border-color: #d8dee5;
  border-radius: 6px;
  min-height: 46px;
}

.btn {
  border-radius: 6px;
  font-weight: 700;
}

.btn-warning {
  background: var(--brand);
  border-color: var(--brand);
  color: #151515;
}

.btn-warning:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #111;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--surface);
}

.section-dark {
  background: var(--deep);
  color: #fff;
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 760px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 18px;
  overflow: hidden;
  padding: 1.1rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.12);
  transform: translateY(-3px);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 1rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-image {
  border-radius: 14px;
  overflow: hidden;
}

.service-image img {
  display: block;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.about-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-list div,
.stat-box {
  background: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 8px;
  padding: 1rem;
}

.about-list div {
  align-items: flex-start;
  display: flex;
  gap: 0.85rem;
}

.about-list i {
  color: var(--brand-dark);
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

.image-panel {
  background: #dfe7f0;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.14);
  overflow: hidden;
  padding: 10px;
}

.image-panel img {
  display: block;
  height: 520px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

.map-panel {
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.14);
  overflow: hidden;
}

.map-panel iframe {
  border: 0;
  display: block;
  height: 320px;
  width: 100%;
}

.stat-box strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}

.stat-box span {
  color: var(--muted);
}

blockquote {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  height: 100%;
  margin: 0;
  padding: 1.3rem;
}

blockquote cite {
  color: var(--brand);
  display: block;
  font-style: normal;
  font-weight: 800;
  margin-top: 1rem;
}

.accordion-button {
  font-weight: 800;
}

.footer {
  background: #0b1017;
  color: #fff;
  padding: 2rem 0;
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.admin-body {
  background: var(--surface);
}

.login-panel {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.12);
  max-width: 440px;
  padding: 1.5rem;
}

.login-panel h1,
.admin-title {
  font-size: 2rem;
  font-weight: 800;
}

.admin-tabs {
  background: #fff;
  border: 1px solid #dee2e6;
  border-top: 0;
  padding: 1rem;
}

.empty-state {
  color: var(--muted);
  padding: 2rem;
  text-align: center;
}

.whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  color: #fff;
  display: flex;
  font-weight: 900;
  height: 64px;
  justify-content: center;
  position: fixed;
  right: 22px;
  font-size: 2rem;
  width: 64px;
  z-index: 20;
}

.driver-page {
  background:
    radial-gradient(circle at top left, rgba(246, 196, 69, 0.18), transparent 28%),
    linear-gradient(180deg, #fff9ea, #ffffff 24%);
}

.driver-title {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.driver-copy {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.driver-form-card,
.driver-cta-card {
  border-top: 4px solid var(--brand);
}

.driver-cta-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .booking-panel,
  .simple-form {
    padding: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .image-panel img {
    height: 360px;
  }

  .service-image img {
    height: 200px;
  }

  .whatsapp {
    bottom: 18px;
    height: 58px;
    right: 18px;
    width: 58px;
  }
}
