/* ── TAXI2JACKSON MAIN STYLESHEET ────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #C8973A;
  --gold-light: #E8B85A;
  --gold-dark: #9A7020;
  --black: #0D0D0D;
  --dark: #141414;
  --dark2: #1C1C1C;
  --dark3: #252525;
  --white: #FAFAF6;
  --off-white: #F0EFE8;
  --muted: #8A8878;
  --text: #E8E6DC;
  --border: rgba(200,151,58,0.18);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--white);
}
.serif { font-family: 'Playfair Display', serif; }
.gold  { color: var(--gold); }
.muted { color: var(--muted); }
a      { color: var(--gold); }

/* ── TOP STRIP ── */
.top-strip {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 9px 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 101;
}
.top-strip a { color: var(--black); font-weight: 700; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.nav-logo {
  display: flex; align-items: center; text-decoration: none;
}

/* ── TEXT LOGO ── */
.logo-text {
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #FFFFFF !important;
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1;
}
.logo-2 {
  color: #C8973A !important;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.05em; transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-sub {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  list-style: none;
  min-width: 220px;
  padding: 0.5rem 0;
  margin-top: 0;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
/* Invisible bridge fills the gap so mouse can travel from link to menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.nav-dropdown:hover .nav-sub { display: block; }
.nav-sub li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  color: var(--muted);
}
.nav-sub li a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }

.nav-cta {
  background: var(--gold); color: var(--black);
  padding: 0.55rem 1.4rem; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.875rem;
  white-space: nowrap; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 0.8rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--black); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.8rem 2rem; border-radius: 50px;
  font-weight: 500; font-size: 1rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200,151,58,0.06); color: var(--white); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0D0D0D 0%, #141414 50%, #1a1508 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 160px 5vw 80px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(200,151,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,151,58,0.12); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 500; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title { font-size: clamp(2.8rem, 5vw, 4.5rem); color: var(--white); margin-bottom: 1.25rem; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 420px; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; }
.stat-item { border-left: 2px solid var(--gold); padding-left: 1rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); }
.stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── BOOKING CARD ── */
.booking-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.booking-card h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }

/* ── FORMS ── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 0.7rem 1rem;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; min-height: 70px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-book {
  width: 100%; background: var(--gold); color: var(--black);
  border: none; border-radius: 50px; padding: 0.9rem;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s; margin-top: 0.5rem;
}
.btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }
.booking-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }

.form-success {
  display: none; text-align: center; padding: 2rem;
  background: rgba(200,151,58,0.08); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.form-success .checkmark { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h4 { margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); font-size: 0.9rem; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.25rem 5vw;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--muted); }
.trust-icon { font-size: 1.2rem; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

section {
  padding: 90px 5vw;
  max-width: 1200px; margin: 0 auto;
}

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 3rem;
}
.service-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color 0.25s, transform 0.2s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── FARE TABLE ── */
.fare-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
}
.fare-table thead tr { border-bottom: 2px solid var(--gold); }
.fare-table th {
  padding: 0.9rem 1rem; text-align: center;
  color: var(--gold); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap;
}
.fare-table th:first-child { text-align: left; }
.fare-table th small { font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; display: block; }
.fare-table tbody tr { border-bottom: 1px solid var(--border); }
.fare-table tbody tr:nth-child(odd) { background: rgba(200,151,58,0.04); }
.fare-table td {
  padding: 0.85rem 1rem; text-align: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold);
}
.fare-table td:first-child {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: var(--white); text-align: left;
}

/* ── FARE CARDS ── */
.fare-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
  display: flex; align-items: flex-start; gap: 16px;
}
.fare-card.featured { border-color: var(--gold); }
.fare-dest { flex: 1; }
.fare-dest h4 { font-size: 1rem; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.fare-dest p { font-size: 0.83rem; color: var(--muted); }
.fare-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); white-space: nowrap; }
.fare-note {
  padding: 1rem 1.25rem;
  background: rgba(200,151,58,0.07); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.875rem; color: var(--muted);
}
.fare-note strong { color: var(--white); }

/* ── COVERAGE ── */
.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center; margin-top: 3rem;
}
.coverage-map {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.coverage-map svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.coverage-list { list-style: none; }
.coverage-list li {
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--text);
}
.coverage-list li:last-child { border-bottom: none; }
.coverage-list li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.coverage-list li span { margin-left: auto; font-size: 0.8rem; color: var(--muted); }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 3rem;
}
.step { padding: 2rem 1.5rem; text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(200,151,58,0.1); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold);
  margin: 0 auto 1.25rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.step p  { font-size: 0.875rem; color: var(--muted); }

/* ── FLEET ── */
.fleet-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 3rem;
}
.fleet-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.fleet-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.fleet-img {
  height: 160px; background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; border-bottom: 1px solid var(--border);
}
.fleet-info { padding: 1.25rem 1.5rem; }
.fleet-info h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.fleet-info p  { font-size: 0.83rem; color: var(--muted); margin-bottom: 0.75rem; }
.fleet-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  background: rgba(200,151,58,0.1); border: 1px solid var(--border);
  border-radius: 50px; padding: 3px 10px; font-size: 0.73rem; color: var(--gold);
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 3rem;
}
.review-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,151,58,0.15); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.8rem; color: var(--gold);
}
.review-name   { font-size: 0.875rem; font-weight: 500; }
.review-source { font-size: 0.78rem; color: var(--muted); }
.rating-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,151,58,0.12); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 14px;
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ── FAQ ── */
.faq-list { margin-top: 3rem; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500;
  text-align: left; padding: 1.25rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 1.25rem; font-size: 0.925rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 400px; }

/* ── BOOKING SECTION ── */
.book-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: start;
}
.book-left h2 { margin-bottom: 1.25rem; }
.book-left p  { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 1.1rem 1.25rem;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 12px;
  text-decoration: none; color: var(--text);
  transition: border-color 0.2s, transform 0.15s;
}
.contact-method:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-icon  { font-size: 1.5rem; flex-shrink: 0; }
.contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); display: block; }
.contact-value { font-weight: 600; color: var(--white); font-size: 1.1rem; }
.book-form {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.25rem;
}
.book-form h3 { margin-bottom: 1.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 60px 5vw 30px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; color: var(--muted); margin: 1rem 0; max-width: 280px; line-height: 1.65; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--muted); flex-wrap: wrap; gap: 0.5rem;
}

/* ── FLOATING CALL ── */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  background: var(--gold); color: var(--black);
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(200,151,58,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(200,151,58,0.5); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(160deg, #0D0D0D 0%, #141414 60%, #1a1508 100%);
  padding: 80px 5vw 60px; text-align: center;
  padding-top: calc(108px + 80px);
}
.page-header .section-label { margin-bottom: 0.75rem; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 680px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { top: 36px; }
  .hero-grid    { grid-template-columns: 1fr; gap: 40px; }
  .hero-title   { font-size: 2.5rem; }
  .hero-sub     { max-width: 100%; }
  .book-inner   { grid-template-columns: 1fr; gap: 40px; }
  .coverage-grid{ grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .nav-links    { display: none; }
  .nav-burger   { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--dark2); padding: 1rem 5vw;
    border-bottom: 1px solid var(--border); gap: 1rem;
  }
}

@media (max-width: 600px) {
  .top-strip { font-size: 0.75rem; padding: 8px 1rem; }
  nav { top: 33px; }
  .hero-stats   { flex-wrap: wrap; gap: 1.25rem; }
  .trust-bar    { gap: 1.5rem; }
  .steps-grid   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .fare-table   { font-size: 0.78rem; }
  .fare-table th, .fare-table td { padding: 0.6rem 0.5rem; }
}
