/* =========================================================
   MIDNIGHT EXPRESS TRANSPORTATION
   Black + Electric Blue brand
   ========================================================= */

:root {
  --bg: #050507;
  --bg-elev: #0c0c12;
  --bg-card: #101018;
  --border: #1a1a26;
  --border-strong: #262638;
  --text: #f3f4f8;
  --text-dim: #9ca0b3;
  --text-mute: #6b6f82;
  --accent: #1e3aff;        /* electric royal blue */
  --accent-bright: #4a63ff;
  --accent-glow: rgba(30, 58, 255, 0.35);
  --gold: #c9a35a;          /* subtle luxury hint */
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px var(--accent-glow);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-bright); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.15em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-bright);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.accent { color: var(--accent-bright); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 40px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: rgba(30, 58, 255, 0.05);
}
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 1rem; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 5, 7, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #000 0%, #0a0a18 100%);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--accent-bright);
  text-shadow: 0 0 12px var(--accent-glow);
  box-shadow: inset 0 0 20px rgba(30, 58, 255, 0.15);
}
.logo-mark--lg { width: 64px; height: 64px; font-size: 1.6rem; }
.logo-text {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.nav__links a:hover { color: var(--text); }
.nav__cta { padding: 10px 22px; font-size: 0.8rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.2s ease;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 60px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-image {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(30, 58, 255, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.9), var(--bg) 60%),
    linear-gradient(180deg, #0a0a14 0%, #050507 100%);
}
.hero__bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(30, 58, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(30, 58, 255, 0.08) 0%, transparent 40%);
}
/* Subtle stars */
.hero__bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, #fff, transparent),
    radial-gradient(1px 1px at 30% 80%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 50% 50%, #b8c6ff, transparent),
    radial-gradient(1px 1px at 70% 25%, #fff, transparent),
    radial-gradient(1px 1px at 85% 70%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 25% 60%, #b8c6ff, transparent),
    radial-gradient(1px 1px at 95% 40%, #fff, transparent),
    radial-gradient(1px 1px at 5% 90%, #fff, transparent),
    radial-gradient(1px 1px at 60% 10%, #fff, transparent);
  opacity: 0.4;
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  opacity: 0.5;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero__title {
  margin: 0.5rem 0 1.5rem;
  font-weight: 500;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 1.5px solid var(--text-mute);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent-bright);
  border-radius: 2px;
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 14px); opacity: 0; }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-bright);
  letter-spacing: 0.02em;
}
.trust__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: 100px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy p { color: var(--text-dim); margin-bottom: 1.2rem; }
.about__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 0.95rem;
}
.about__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-bright);
  font-weight: 700;
}
.about__photo .photo-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(30, 58, 255, 0.15), transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   PACKAGES
   ========================================================= */
.packages { padding: 100px 0; background: var(--bg-elev); }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.pkg:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(30, 58, 255, 0.1);
}
.pkg--featured {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(30, 58, 255, 0.08), transparent 60%),
    var(--bg-card);
  box-shadow: var(--shadow-glow);
}
.pkg--premium {
  border-color: var(--gold);
}
.pkg--premium .pkg__badge { background: var(--gold); color: #000; }
.pkg__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.pkg__head { margin-bottom: 18px; }
.pkg__head h3 { color: var(--text); }
.pkg__price {
  margin-top: 8px;
  color: var(--text-mute);
  font-size: 0.95rem;
}
.pkg__price span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin-right: 6px;
}
.pkg p {
  color: var(--text-dim);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 24px;
}
.pkg__cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.pkg__cta:hover { letter-spacing: 0.15em; }

/* =========================================================
   POLICY
   ========================================================= */
.policy { padding: 100px 0; }
.policy__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.policy__col p { color: var(--text-dim); margin-bottom: 1.2rem; }
.policy__sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-bright);
  margin: 2rem 0 1rem;
}
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 700;
}
.policy__aside {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: sticky;
  top: 100px;
}
.policy__aside h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.policy__note {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.policy__note:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 16px; }
.policy__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 58, 255, 0.1);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-bright);
}
.policy__note p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}
.policy__note strong { color: var(--text); }
.policy__close {
  font-size: 0.85rem !important;
  color: var(--accent-bright) !important;
  font-style: italic;
  margin: 0 !important;
}

/* =========================================================
   BOOKING
   ========================================================= */
.booking { padding: 100px 0; background: var(--bg-elev); }
.booking__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.booking__checklist ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking__checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  transition: all 0.2s ease;
}
.booking__checklist li:hover { border-color: var(--accent); }
.booking__checklist li span {
  font-size: 1.1rem;
  filter: grayscale(0.3);
}
.booking__cta-card {
  background:
    linear-gradient(135deg, rgba(30, 58, 255, 0.12), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.booking__cta-card h3 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.booking__cta-card > p {
  color: var(--text-dim);
  margin-bottom: 24px;
}
.booking__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.booking__fineprint {
  font-size: 0.75rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  margin: 0;
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at center, rgba(30, 58, 255, 0.15), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2 { margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 80px 0 30px; background: #020203; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer__brand .logo-mark { margin-bottom: 16px; }
.footer__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer__tag {
  color: var(--text-mute);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer__col h4 {
  margin-bottom: 18px;
  color: var(--accent-bright);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.footer__col p { color: var(--text-dim); margin-bottom: 10px; font-size: 0.9rem; }
.footer__col a { color: var(--text-dim); }
.footer__col a:hover { color: var(--accent-bright); }
.footer__bottom {
  padding-top: 30px;
  text-align: center;
  color: var(--text-mute);
  font-size: 0.8rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-elev);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .nav__links.is-open { display: flex; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }

  .about__grid, .policy__grid, .booking__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .policy__aside { position: static; }

  .packages__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .checklist { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .packages__grid, .booking__checklist ul { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .hero { padding: 100px 20px 80px; min-height: 90vh; }
  .hero__cta { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero__cta .btn { width: 100%; }
  .logo-text { display: none; }
  .about { padding: 70px 0; }
  .packages, .policy, .booking { padding: 70px 0; }
}
