/* SGC Drop Taxi - Coming Soon
   Mobile-first, responsive, accessible and lightweight.
*/

:root {
  --navy: #020817;
  --navy-2: #061533;
  --blue: #087cff;
  --blue-light: #36a3ff;
  --gold: #ffd21a;
  --gold-deep: #f4a900;
  --white: #ffffff;
  --muted: #b7c5dc;
  --glass: rgba(255,255,255,.065);
  --border: rgba(255,255,255,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 15%, rgba(0, 91, 255, .28), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(0, 153, 255, .12), transparent 30%),
    linear-gradient(145deg, #01050f 0%, var(--navy-2) 48%, #01040c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .15;
  pointer-events: none;
}

.glow-one {
  background: #006eff;
  top: -100px;
  left: -120px;
}

.glow-two {
  background: #ffd000;
  right: -160px;
  bottom: 5%;
}

.coming-soon {
  width: 100%;
  padding: 24px 16px;
}

.hero {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.brand-wrap {
  width: min(390px, 90vw);
  margin: 0 auto 4px;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 34px rgba(0, 111, 255, .22));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,210,26,.35);
  border-radius: 999px;
  background: rgba(255,210,26,.08);
  color: #ffe46b;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 1.7s infinite;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 9vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 strong {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255,210,26,.16);
}

.intro {
  max-width: 700px;
  margin: 22px auto 34px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: left;
}

.service-card {
  position: relative;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,210,26,.45);
  background: rgba(255,255,255,.09);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #171000;
  font-size: .78rem;
  font-weight: 950;
  box-shadow: 0 8px 25px rgba(255, 193, 7, .16);
}

.service-card h2 {
  margin: 0 0 7px;
  font-size: 1rem;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: #91a4c0;
  font-size: .84rem;
}

.contact-box {
  display: grid;
  gap: 20px;
  margin: 28px auto 20px;
  padding: 20px;
  max-width: 850px;
  border: 1px solid rgba(0, 145, 255, .25);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,104,255,.12), rgba(255,255,255,.045));
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,124,255,.15);
  color: var(--blue-light);
  font-size: 1.15rem;
}

.contact-item small {
  display: block;
  margin-bottom: 6px;
  color: #7f95b5;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.contact-item a {
  display: block;
  width: fit-content;
  margin: 2px 0;
  color: #fff;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
}

.contact-item a:hover {
  color: var(--gold);
}

.divider {
  height: 1px;
  background: var(--border);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  max-width: 850px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 850;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, #ffe75b, var(--gold));
  box-shadow: 0 10px 28px rgba(255, 204, 0, .18);
}

.btn-whatsapp {
  color: white;
  background: #128c7e;
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
}

footer {
  padding: 36px 0 8px;
  color: #6f829e;
  font-size: .75rem;
}

.footer-line {
  width: 100%;
  max-width: 440px;
  height: 1px;
  margin: 0 auto 17px;
  background: linear-gradient(90deg, transparent, rgba(255,210,26,.65), transparent);
}

footer p {
  margin: 6px 0;
}

.tagline {
  color: #b8a12d;
  font-weight: 800;
  letter-spacing: .12em;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: .65; }
}

@media (min-width: 620px) {
  .coming-soon {
    padding: 38px 24px;
  }

  .brand-wrap {
    width: 430px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn {
    min-width: 145px;
  }

  .contact-box {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 25px;
  }

  .divider {
    width: 1px;
    height: 60px;
  }
}

@media (min-width: 950px) {
  .coming-soon {
    padding: 48px 28px;
  }

  .brand-wrap {
    width: 460px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .service-card {
    min-height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
