/* ===========================
   NASFA TRANS LLC — Master CSS
   Premium Chauffeur Service
   =========================== */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f6fbf5;
  --color-bg-card: #ffffff;
  --color-bg-light: #f3faf2;
  --color-bg-cream: #fffaf0;
  --color-gold: #178b49;
  --color-gold-light: #24b86a;
  --color-gold-dark: #0d5f33;
  --color-text: #102017;
  --color-text-muted: #53635a;
  --color-text-dark: #102017;
  --color-text-soft: #617168;
  --color-border: rgba(23, 139, 73, 0.22);
  --color-border-light: rgba(16, 32, 23, 0.10);
  --shadow-card: 0 18px 50px rgba(15, 70, 38, 0.10);
  --shadow-gold: 0 12px 34px rgba(23, 139, 73, 0.22);

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --container: 1280px;
  --radius: 8px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ TOP BAR ============ */
.topbar {
  background: #f8fff7;
  color: #365044;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left a { display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--color-gold); }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a { color: #365044; }
.topbar-right a:hover { color: var(--color-gold); }

/* ============ HEADER ============ */
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text);
}
.logo-text .tag {
  font-size: 10px;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 0;
}
.nav a:hover { color: var(--color-gold); }
.nav a.active { color: var(--color-gold); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
}
.nav-cta {
  background: var(--color-gold);
  color: #fff !important;
  padding: 11px 24px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px !important;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--color-gold-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(135deg, #ffffff 0%, #f5fff4 45%, #e9f8e7 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(23,139,73,0.13) 0%, transparent 52%);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}
.hero p.lead {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border-color: rgba(23,139,73,0.30);
  color: var(--color-gold-dark);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn-dark {
  background: #102017;
  color: #fff;
}
.btn-dark:hover { background: #000; }

/* ============ BOOKING CARD (HERO) ============ */
.booking-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(22px);
  border: 1px solid var(--color-border);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-quote-card {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(23,139,73,0.30);
}
.quote-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 14px;
}
.quote-title span {
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.quote-title strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}
.quote-result {
  margin: 6px 0 18px;
  padding: 16px;
  border: 1px solid var(--color-border);
  background: rgba(201,169,97,0.10);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
}
.quote-result span {
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.quote-result strong {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}
.quote-result small {
  color: var(--color-text-muted);
  font-size: 11px;
  line-height: 1.45;
}
.quote-actions .btn { width: 100%; justify-content: center; padding: 14px 18px; }

.booking-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 24px;
  background: rgba(23,139,73,0.08);
  padding: 4px;
  border-radius: var(--radius);
}
.booking-tab {
  flex: 1;
  padding: 12px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.3s;
}
.booking-tab.active {
  background: var(--color-gold);
  color: #fff;
}

.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-dark);
  font-size: 14px;
  font-family: inherit;
  transition: 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #fafffa;
}
.form-control::placeholder { color: #8b9b91; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23c9a961'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============ SECTION ============ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-light { background: var(--color-bg-light); color: var(--color-text-dark); }
.section-cream { background: var(--color-bg-cream); color: var(--color-text-dark); }
.section-dark { background: #102017; }
.section-darker { background: #0b1f14; color:#fff; }

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}
.section-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 700px;
  margin-bottom: 60px;
}
.section-light .section-intro,
.section-cream .section-intro { color: var(--color-text-soft); }

/* ============ FEATURE GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-card {
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  border-radius: var(--radius-lg);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,169,97,0.15), rgba(201,169,97,0.05));
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-gold);
  font-size: 24px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-text);
}
.feature-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ FLEET / VEHICLES ============ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fleet-card {
  background: #fff;
  color: var(--color-text-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid #e8e2d4;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.fleet-image {
  height: 245px;
  background: linear-gradient(135deg, #ffffff, #f3faf2);
  position: relative;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.fleet-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #102017;
  color: var(--color-gold);
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.fleet-info { padding: 28px 26px 32px; }
.fleet-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
}
.fleet-info .model {
  color: var(--color-text-soft);
  font-size: 13px;
  margin-bottom: 18px;
}
.fleet-specs {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid #e8e2d4;
  border-bottom: 1px solid #e8e2d4;
  margin-bottom: 20px;
}
.fleet-spec {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
.fleet-spec strong { color: var(--color-text-dark); font-weight: 600; }
.fleet-spec span { color: var(--color-text-soft); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.fleet-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fleet-price .price strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-text-dark);
  font-weight: 600;
}
.fleet-price .price span {
  font-size: 12px;
  color: var(--color-text-soft);
}
.fleet-price .btn-small {
  padding: 10px 18px;
  background: #102017;
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: 0.3s;
}
.fleet-price .btn-small:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.service-card:hover img { transform: scale(1.08); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e8e2d4;
}
.testimonial .stars {
  color: var(--color-gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial p {
  font-style: italic;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 15px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-info strong {
  display: block;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 14px;
}
.testimonial-info span {
  font-size: 12px;
  color: var(--color-text-soft);
}

/* ============ STATS ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201,169,97,0.1) 0%, transparent 50%);
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-content h2 em { color: var(--color-gold); font-style: italic; }
.cta-content p {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #000;
  color: var(--color-text);
  padding: 80px 0 30px;
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 340px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: 0.3s;
  font-size: 14px;
}
.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 22px;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: var(--color-text-muted);
  font-size: 14px;
  transition: 0.3s;
}
.footer-col ul a:hover { color: var(--color-gold); padding-left: 6px; }
.footer-col .contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 14px;
  align-items: flex-start;
}
.footer-col .contact-item span:first-child { color: var(--color-gold); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--color-text-muted);
  font-size: 13px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  min-height: 42vh;
  background: linear-gradient(135deg, #ffffff 0%, #f5fff4 45%, #e9f8e7 100%);
  display: flex;
  align-items: center;
  position: relative;
  padding: 90px 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(23,139,73,0.12) 0%, transparent 55%);
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--color-gold); }
.breadcrumb span { color: var(--color-text-muted); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.page-hero h1 em { color: var(--color-gold); font-style: italic; }
.page-hero p {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ TWO COL ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-card);
}
.two-col h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.two-col h2 em { color: var(--color-gold); font-style: italic; }
.two-col p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}
.section-light .two-col p, .section-cream .two-col p { color: var(--color-text-soft); }
.feature-list { list-style: none; margin: 30px 0; }
.feature-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15px;
}
.feature-list li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}

/* ============ PRICING TABLE ============ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.pricing-table th {
  background: #102017;
  color: var(--color-gold);
  padding: 18px 20px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e8e2d4;
  color: var(--color-text-dark);
  font-size: 14px;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: #faf8f3; }
.pricing-table .vehicle-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
}
.pricing-table .price-cell {
  font-weight: 600;
  color: var(--color-gold-dark);
}

/* ============ FAQ ============ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e8e2d4;
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-dark);
}
.faq-question:hover { color: var(--color-gold-dark); }
.faq-toggle {
  font-size: 24px;
  color: var(--color-gold);
  transition: 0.3s;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--color-text-soft);
  line-height: 1.7;
  font-size: 15px;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  margin-top: 16px;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,97,0.12);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--color-text-dark);
}
.contact-info-text p { color: var(--color-text-soft); font-size: 14px; line-height: 1.6; }
.section-dark .contact-info-text strong { color: var(--color-text); }
.section-dark .contact-info-text p { color: var(--color-text-muted); }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-form .form-control {
  background: #faf8f3;
  border-color: #e8e2d4;
  color: var(--color-text-dark);
}
.contact-form .form-control:focus {
  background: #fff;
  border-color: var(--color-gold);
}
.contact-form textarea.form-control { resize: vertical; min-height: 120px; }
.contact-form .form-label { color: var(--color-text-dark); }

/* ============ BOOKING (FULL CALC) ============ */
.booking-page {
  padding: 80px 0;
  background: var(--color-bg-cream);
  color: var(--color-text-dark);
  min-height: 80vh;
}
.calc-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.calc-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.calc-form h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}
.calc-form .form-label { color: var(--color-text-dark); }
.calc-form .form-control {
  background: #faf8f3;
  border-color: #e8e2d4;
  color: var(--color-text-dark);
}
.calc-form .form-control:focus { background: #fff; border-color: var(--color-gold); }
.calc-summary {
  background: #ffffff;
  color: var(--color-text);
  padding: 40px;
  border-radius: var(--radius-lg);
  height: fit-content;
  position: sticky;
  top: 100px;
}
.calc-summary h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 24px;
  color: var(--color-gold);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.summary-row .label { color: var(--color-text-muted); }
.summary-row .value { font-weight: 500; }
.summary-row.total {
  border-top: 2px solid var(--color-gold);
  border-bottom: none;
  margin-top: 12px;
  padding-top: 20px;
}
.summary-row.total .label { font-size: 16px; color: #fff; }
.summary-row.total .value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-gold);
}

.vehicle-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.vehicle-option {
  padding: 14px 16px;
  border: 2px solid #e8e2d4;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.3s;
  background: #faf8f3;
}
.vehicle-option:hover { border-color: var(--color-gold); }
.vehicle-option.selected {
  border-color: var(--color-gold);
  background: rgba(201,169,97,0.08);
}
.vehicle-option strong {
  font-family: var(--font-display);
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
}
.vehicle-option span { font-size: 12px; color: var(--color-text-soft); }

/* ============ MOBILE ============ */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-quote-card {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(23,139,73,0.30);
}

@media (max-width: 640px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #0a0a0a; padding: 24px; gap: 0; border-bottom: 1px solid var(--color-border); }
  .nav.active { display: flex; }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--color-border-light); }
  .nav-cta { margin-top: 12px; text-align: center; }
  .mobile-toggle { display: flex; }
  .features-grid,
  .fleet-grid,
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .booking-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(22px);
  border: 1px solid var(--color-border);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease both; }
.fade-up.delay-1 { animation-delay: 0.15s; }
.fade-up.delay-2 { animation-delay: 0.3s; }
.fade-up.delay-3 { animation-delay: 0.45s; }

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
