* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

.page {
  min-height: 100vh;
  width: min(980px, 92%);
  margin: 0 auto;
  padding: 40px 0;
}

.hero {
  text-align: center;
  margin-bottom: 28px;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  color: #fde047;
  font-weight: 700;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 72px);
  letter-spacing: -2px;
}

.hero p {
  max-width: 650px;
  margin: 14px auto 24px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.5;
}

.mode-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid #334155;
  background: #111827;
  color: #e5e7eb;
  padding: 13px 22px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
}

.tab.active {
  background: #facc15;
  color: #111827;
  border-color: #facc15;
}

.card {
  background: #111827;
  border: 1px solid #334155;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #f8fafc;
  font-weight: 700;
}

input, select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid #334155;
  background: #020617;
  color: #f8fafc;
  font-size: 16px;
}

input::placeholder {
  color: #64748b;
}

.hidden {
  display: none;
}

.map-actions {
  display: grid;
  gap: 10px;
}

.map-actions button {
  border: 0;
  border-radius: 16px;
  padding: 15px;
  background: #facc15;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.area-status {
  margin: 0;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.area-status.ok {
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.35);
}

.area-status.bad {
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.35);
}

.fare-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.fare-box div {
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 16px;
  background: #020617;
}

.fare-box span {
  display: block;
  color: #94a3b8;
  margin-bottom: 8px;
}

.fare-box strong {
  display: block;
  font-size: 22px;
}

.fare-box .total {
  background: rgba(250, 204, 21, 0.12);
  border-color: #facc15;
}

.notice {
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.12);
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.submit {
  border: 0;
  border-radius: 16px;
  padding: 17px;
  background: #22c55e;
  color: #052e16;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.submit:disabled {
  background: #475569;
  color: #94a3b8;
  cursor: not-allowed;
}

footer {
  text-align: center;
  color: #94a3b8;
  margin-top: 26px;
}

@media (max-width: 900px) {
  .fare-box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .grid,
  .fare-box {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }
}

/* ====================================
   USE MY LOCATION BUTTON
==================================== */

#myLocationBtn {
  margin-top: 10px;
  border: 1px solid #334155;
  background: #1e293b;
  color: #f8fafc;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.25s ease;
}

#myLocationBtn:hover {
  background: #334155;
  transform: translateY(-2px);
}

/* ====================================
   INPUT EFFECTS
==================================== */

input:focus,
select:focus {
  outline: none;
  border-color: #facc15;
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.15);
}

/* ====================================
   BUTTON HOVER EFFECTS
==================================== */

.map-actions button:hover,
.submit:hover:not(:disabled),
.tab:hover {
  transform: translateY(-2px);
  transition: 0.25s ease;
}

/* ====================================
   WHATSAPP FLOATING BUTTON
==================================== */

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 32px;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 25px rgba(0,0,0,.35);

  z-index: 9999;

  transition: all .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ====================================
   HERO IMPROVEMENTS
==================================== */

.hero h1 {
  background: linear-gradient(
    90deg,
    #facc15,
    #fde047,
    #facc15
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card {
  backdrop-filter: blur(10px);
}

/* ====================================
   TOTAL PRICE PULSE
==================================== */

.fare-box .total strong {
  font-size: 28px;
  color: #fde047;
}

.service-area {
  background: #111827;
  border: 1px solid #334155;
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.service-area h2 {
  margin: 0 0 12px;
  color: #facc15;
  font-size: 28px;
}

.service-area p {
  margin: 8px auto;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 760px;
}