/* ================================
   VARIABLES
================================ */
:root {
  --taxi-yellow: #f5c400;
  --taxi-yellow-soft: rgba(245, 196, 0, 0.35);
  --airport-blue: #318ce7;
  --airport-blue-soft: rgba(49, 140, 231, 0.35);
  --dark-bg: #070a12;
}

/* ================================
   FONTS
================================ */

@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');

/* ================================
   GLOBAL / BODY
================================ */
html, body {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  padding-top: 50px; /* fixed navbar offset */

  display: flex;
  flex-direction: column;

  background:
    radial-gradient(circle at 15% 20%, var(--taxi-yellow-soft), transparent 45%),
    radial-gradient(circle at 85% 80%, var(--airport-blue-soft), transparent 45%),
    linear-gradient(135deg, #050711 0%, var(--dark-bg) 100%);

  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  font-family: 'Goldman', sans-serif;
  color: #ffffff;
}

/* ================================
   NAVBAR
================================ */
.taxi-navbar {
  background:
    radial-gradient(circle at left, rgba(245,196,0,0.12), transparent 45%),
    radial-gradient(circle at right, rgba(49,140,231,0.15), transparent 45%),
    rgba(7,10,18,0.95);

  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  position: relative;
}

/* Separator */
@media (min-width: 992px) {
  .navbar-nav .nav-link:not(.whatsapp-nav)::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);

    width: 2px;        /* bolder */
    height: 18px;

    background: rgba(255,255,255,0.7); /* solid white */
  }
}

/* Remove separators on mobile */
@media (max-width: 991px) {
  .navbar-nav .nav-item::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-nav .whatsapp-nav {
    display: none;
  }
}

/* ================================
   GET TAXI CTA (PULSE)
================================ */
.nav-cta {
  position: relative;
  color: var(--taxi-yellow) !important;
  font-weight: 600;

  animation: taxiPulse 2.4s ease-in-out infinite;
}

/* Stop animation on hover (important) */
.nav-cta:hover {
  animation: none;
  color: #ffffff !important;
}

/* Pulse animation */
@keyframes taxiPulse {
  0% {
    color: var(--taxi-yellow);
    text-shadow: none;
  }
  50% {
    color: #ffffff;
    text-shadow:
      0 0 8px rgba(245,196,0,0.6),
      0 0 14px rgba(245,196,0,0.35);
  }
  100% {
    color: var(--taxi-yellow);
    text-shadow: none;
  }
}

/* ================================
   FULLSCREEN MOBILE NAV (SMOOTH)
================================ */
@media (max-width: 991px) {

  .mobile-fullscreen {
    position: fixed;
    top: 90px; /* navbar height */
    left: 0;
    width: 100vw;
    height: calc(100vh - 90px);

    background:
      radial-gradient(circle at top left, rgba(245,196,0,0.18), transparent 45%),
      radial-gradient(circle at bottom right, rgba(49,140,231,0.22), transparent 45%),
      rgba(7,10,18,0.98);

    padding: 30px 20px;
    overflow-y: auto;

    /* 🔑 animation control */
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    visibility: hidden;

    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s ease;
  }

  /* When menu is open */
  .mobile-fullscreen.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  /* Menu layout */
  .mobile-fullscreen .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .mobile-fullscreen .nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .mobile-fullscreen .nav-item:last-child {
    border-bottom: none;
  }

  .mobile-fullscreen .nav-link {
    font-size: 1.4rem;
    padding: 16px 0;
    margin: 0;
    justify-content: center;
  }

  .mobile-fullscreen .nav-link i {
    font-size: 1.3rem;
  }
}

/* ================================
   MOBILE NAV SEPARATORS
================================ */
@media (max-width: 991px) {

  .navbar-nav .nav-link {
    padding: 12px 8px;
    margin-left: 0;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  /* Remove last divider */
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  /* Disable desktop separator */
  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* ================================
   MOBILE WHATSAPP ICON
================================ */
.nav-whatsapp-icon {
  font-size: 1.6rem;
  color: #25D366;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-whatsapp-icon:hover {
  color: #1ebe5d;
}

/* ================================
   MOBILE TOGGLER ICON (☰ → ✕)
================================ */
.navbar-toggler {
  border: none;
  padding: 0;
}

.toggler-icon {
  width: 26px;
  height: 20px;
  position: relative;
  display: block;
}

/* Lines */
.toggler-icon::before,
.toggler-icon::after,
.toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Top line */
.toggler-icon::before {
  top: 0;
}

/* Middle line */
.toggler-icon span {
  top: 50%;
  transform: translateY(-50%);
}

/* Bottom line */
.toggler-icon::after {
  bottom: 0;
}

/* ================================
   OPEN STATE (X)
================================ */
.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span {
  opacity: 0;
}

/* Brand */
.navbar-logo {
  height: 65px;
  width: auto;
}

/* Links */
.navbar-nav .nav-link {
  font-family: "Goldman", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
   font-size: 1.05rem;
  margin-left: 14px;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link i {
  margin-right: 6px;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* WhatsApp highlight */
.whatsapp-nav {
  color: #25D366 !important;
  font-weight: 600;
}

.whatsapp-nav:hover {
  color: #1ebe5d !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--taxi-yellow);
}

/* Mobile toggle */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ================================
   MAIN CONTENT
================================ */
.site-content {
  flex: 1;                 /* pushes footer down */
  display: flex;
  align-items: center;     /* vertical centering */
  padding-bottom: 20px;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 991px) {
  .navbar-nav {
    background: rgba(12,18,34,0.95);
    border-radius: 14px;
    padding: 14px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    margin: 6px 0;
  }
}

/* ================================
   CARD
================================ */
.launch-card {
  position: relative;

  background:
    radial-gradient(circle at top left, rgba(245, 196, 0, 0.14), transparent 45%),
    radial-gradient(circle at bottom right, rgba(49, 140, 231, 0.18), transparent 45%),
    rgba(12, 18, 34, 0.95);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;

  /* Always-on glow */
  box-shadow:
    0 20px 50px rgba(0,0,0,0.55),
    0 0 28px rgba(49, 140, 231, 0.22),
    0 0 18px rgba(245, 196, 0, 0.18);
}

/* ================================
   LOGO
================================ */
.logo-wrap {
  margin-bottom: 20px;
}

.logo-img {
  max-width: 320px;
  width: 90%;
  height: auto;

  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.6));
  animation: logoGlow 4s ease-in-out infinite;
}

/* Gentle breathing glow */
@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.6));
  }
  50% {
    filter:
      drop-shadow(0 18px 35px rgba(0,0,0,0.6))
      drop-shadow(0 0 18px rgba(245,196,0,0.35));
  }
}

/* ================================
   TEXT
================================ */
.launch-card p {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

/* ================================
   CONTACT BLOCK
================================ */
.contact-line {
  font-size: 1.25rem;
  line-height: 1.5;
}

.contact-line strong {
  letter-spacing: 0.3px;
}

.contact-line a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;

  color: #ffffff;
  text-decoration: none;

  transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover feedback */
.contact-line a:hover {
  color: var(--taxi-yellow);
  transform: scale(1.05);
}

/* ================================
   ICONS
================================ */
.whatsapp-icon {
  color: #25D366;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.email-icon {
  color: var(--airport-blue);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

/* ================================
   MOBILE TWEAKS
================================ */
@media (max-width: 480px) {
  .logo-img {
    max-width: 280px;
  }

  .contact-line a {
    font-size: 1.25rem;
  }
}

/* ================================
   CONTACT MODAL
================================ */
.contact-modal {
  background:
    radial-gradient(circle at top left, rgba(245,196,0,0.14), transparent 45%),
    radial-gradient(circle at bottom right, rgba(49,140,231,0.18), transparent 45%),
    rgba(12,18,34,0.97);

  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  color: #ffffff;
}

.contact-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-modal .modal-title {
  font-family: "Goldman", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
}

.contact-modal .modal-body {
  padding: 24px;
}

.contact-modal .form-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-modal .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
}

.contact-modal .form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-modal .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--taxi-yellow);
  box-shadow: 0 0 0 0.15rem rgba(245,196,0,0.25);
  color: #ffffff;
}

.contact-modal .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-modal .btn-warning {
  background-color: var(--taxi-yellow);
  border: none;
  color: #000;
  font-weight: 600;
}

.contact-modal .btn-warning:hover {
  background-color: #ffd84d;
}

/* ================================
   MODAL BACKDROP (DARK ONLY)
================================ */
.modal-backdrop {
  background-color: rgba(7,10,18,0.92);
}

.modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal-backdrop.show {
  opacity: 1;
}

/* ================================
   DARKEN PAGE WHEN MODAL OPEN
================================ */
body.modal-open main,
body.modal-open nav,
body.modal-open footer {
  filter: brightness(0.55);
  transition: filter 0.3s ease;
}

/* ================================
   SIMPLE FOOTER
================================ */
.simple-footer {
  margin-top: auto;              /* pushes footer to bottom */
  padding: 16px 10px;

  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.6px;

  color: rgba(255,255,255,0.6);
  background: rgba(7,10,18,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Goldman', sans-serif;
  font-weight: 400;

}