/* ================================================================
   WILSON LIMO SERVICE — LUXURY DARK THEME
   style-1.css — Standalone stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Luxury Dark Palette — lightened */
  --limo-black: #1a1a22;          /* was #0a0a0a */
  --limo-charcoal: #272730;       /* was #1a1a1a */
  --limo-dark: #20202a;           /* was #111111 */
  --limo-surface: #2e2e3a;        /* was #1e1e1e */
  --limo-surface-light: #3a3a48;  /* was #2a2a2a */
  --limo-gold: #c9a84c;
  --limo-gold-light: #e0c872;
  --limo-gold-dim: rgba(201, 168, 76, 0.18);
  --limo-cream: #f5f0e8;
  --limo-white: #fafaf8;
  --limo-muted: #9e9eb0;          /* was #8a8a8a */
  --limo-accent: #b8963e;
  --limo-red: #8b2020;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --section-pad: 100px 24px;
  --max-w: 1200px;

  /* Transitions */
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--limo-black);
  color: var(--limo-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.limo-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  background: linear-gradient(135deg, var(--limo-gold), var(--limo-gold-light), var(--limo-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.75' numOctaves='4' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;  /* reduced from 0.5 */
}

/* ===== SISTER-SITE TOP BAR ===== */
.limo-topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  background: var(--limo-charcoal);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 0 24px;
}

.limo-topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
}

.limo-topbar-text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.55);
}

.limo-topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.limo-topbar-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--limo-muted);
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.limo-topbar-links a:hover { color: var(--limo-gold); }
.limo-topbar-links a.topbar-active { color: var(--limo-gold); font-weight: 600; }

.topbar-divider {
  color: rgba(255,255,255,0.12);
  font-size: 0.7rem;
}

/* ===== NAVIGATION ===== */
.limo-nav {
  position: fixed;
  top: 32px;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 34, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  transition: all 0.5s var(--ease-lux);
}

.limo-nav.scrolled {
  background: rgba(26, 26, 34, 0.97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.limo-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.limo-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--limo-cream);
  display: flex;
  align-items: center;
  gap: 12px;
}

.limo-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--limo-gold), var(--limo-accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: rotate(-5deg);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.limo-nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.limo-nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--limo-muted);
  transition: color 0.3s ease;
  position: relative;
}

.limo-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--limo-gold);
  transition: width 0.4s var(--ease-lux);
}

.limo-nav-links a:hover {
  color: var(--limo-gold);
}

.limo-nav-links a:hover::after {
  width: 100%;
}

.limo-nav-cta {
  background: linear-gradient(135deg, var(--limo-gold), var(--limo-accent)) !important;
  color: var(--limo-black) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.limo-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.limo-nav-cta::after { display: none !important; }

.limo-nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(201, 168, 76, 0.18);
  margin: 0 4px;
}

.limo-nav-sister {
  color: rgba(212, 118, 78, 0.75) !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.limo-nav-sister:hover {
  color: rgba(212, 118, 78, 1) !important;
}

.limo-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.limo-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--limo-cream);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.limo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--limo-black);
}

.limo-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--limo-black) 0%, var(--limo-charcoal) 100%);
}

/* Animated gold particles */
.limo-hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.limo-hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--limo-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.limo-hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.limo-hero-particles span:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 8s; }
.limo-hero-particles span:nth-child(3) { left: 40%; animation-delay: 1s; animation-duration: 12s; }
.limo-hero-particles span:nth-child(4) { left: 55%; animation-delay: 3s; animation-duration: 9s; }
.limo-hero-particles span:nth-child(5) { left: 70%; animation-delay: 0.5s; animation-duration: 11s; }
.limo-hero-particles span:nth-child(6) { left: 85%; animation-delay: 4s; animation-duration: 7s; }
.limo-hero-particles span:nth-child(7) { left: 95%; animation-delay: 1.5s; animation-duration: 10s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  50% { opacity: 0.3; }
  90% { opacity: 0; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* Gold line accent */
.limo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--limo-gold), transparent);
  z-index: 2;
  animation: lineGrow 2s var(--ease-lux) forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

@keyframes lineGrow {
  from { height: 0; opacity: 0; }
  to { height: 120px; opacity: 0.5; }
}

.limo-hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  padding: 170px 24px 80px;
  text-align: center;
}

.limo-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--limo-gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.3s forwards;
}

.limo-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--limo-cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.5s forwards;
}

.limo-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--limo-gold), var(--limo-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.limo-hero-sub {
  font-family: var(--font-elegant);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  color: var(--limo-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.7s forwards;
}

.limo-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.limo-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-lux);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  position: relative;
  overflow: hidden;
}

.limo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s;
}

.limo-btn:hover::before { left: 100%; }

.limo-btn-primary {
  background: linear-gradient(135deg, var(--limo-gold), var(--limo-accent));
  color: var(--limo-black);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.limo-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.45);
}

.limo-btn-outline {
  background: transparent;
  color: var(--limo-cream);
  border: 1px solid rgba(201, 168, 76, 0.45);
}

.limo-btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--limo-gold);
  transform: translateY(-3px);
}

/* ===== TRUST BAR ===== */
.limo-trust {
  background: var(--limo-surface);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 32px 24px;
}

.limo-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--limo-muted);
  transition: color 0.3s ease;
}

.trust-item:hover { color: var(--limo-gold); }

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--limo-gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  background: rgba(201, 168, 76, 0.22);
  transform: scale(1.1);
}

/* ===== SECTION BASE ===== */
.limo-section {
  padding: var(--section-pad);
  position: relative;
}

.limo-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.limo-section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--limo-gold);
  margin-bottom: 16px;
  display: block;
}

.limo-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--limo-cream);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.limo-section-sub {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--limo-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.limo-services {
  background: var(--limo-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--limo-surface);
  border-radius: 16px;
  padding: 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s var(--ease-lux);
  position: relative;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
  perspective: 800px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--limo-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before { opacity: 1; }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 168, 76, 0.07) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after { opacity: 1; }

.service-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 168, 76, 0.06);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-lux);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.22), rgba(201, 168, 76, 0.1));
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--limo-cream);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--limo-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--limo-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-link:hover { gap: 14px; }

/* ===== WHY CHOOSE US ===== */
.limo-why {
  background: var(--limo-black);
  position: relative;
}

.limo-why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.22), transparent);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--limo-cream);
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.why-text p {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--limo-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-stat {
  background: var(--limo-surface);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
  text-align: center;
}

.why-stat:hover {
  border-color: rgba(201, 168, 76, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.why-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.why-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--limo-muted);
  letter-spacing: 0.5px;
}

/* 3D Car visual */
.why-visual {
  position: relative;
  perspective: 1000px;
}

.car-showcase {
  background: linear-gradient(135deg, var(--limo-surface) 0%, var(--limo-surface-light) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  text-align: center;
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform 0.6s var(--ease-lux);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.car-showcase:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.car-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(201, 168, 76, 0.04) 25%, transparent 50%);
  animation: showcaseRotate 15s linear infinite;
}

@keyframes showcaseRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.car-emoji {
  font-size: 6rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 30px rgba(201, 168, 76, 0.2));
  animation: carFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes carFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.car-showcase h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--limo-cream);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.car-showcase p {
  font-size: 0.92rem;
  color: var(--limo-muted);
  position: relative;
  z-index: 1;
}

/* ===== PRICING ===== */
.limo-pricing {
  background: var(--limo-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  background: var(--limo-surface);
  border-radius: 20px;
  padding: 44px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s var(--ease-lux);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.price-card.featured {
  border-color: var(--limo-gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, var(--limo-surface) 40%);
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--limo-gold), var(--limo-accent));
  color: var(--limo-black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 0;
  text-align: center;
}

.price-card.featured { padding-top: 60px; }

.price-type {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--limo-gold);
  margin-bottom: 12px;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--limo-cream);
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 6px;
}

.price-per {
  font-size: 0.85rem;
  color: var(--limo-muted);
  margin-bottom: 30px;
  font-weight: 500;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-features li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--limo-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li:last-child { border-bottom: none; }

.price-features li::before {
  content: '✦';
  color: var(--limo-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== SERVICE AREA ===== */
.limo-area {
  background: var(--limo-black);
  position: relative;
  overflow: hidden;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.area-card {
  background: var(--limo-surface);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease-lux);
}

.area-card:hover {
  border-color: rgba(201, 168, 76, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.area-card .area-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.area-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--limo-cream);
  margin-bottom: 6px;
}

.area-card p {
  font-size: 0.82rem;
  color: var(--limo-muted);
  line-height: 1.5;
}

/* ===== REVIEWS ===== */
.limo-reviews {
  background: var(--limo-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--limo-surface);
  border-radius: 18px;
  padding: 36px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease-lux);
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.1);
  position: absolute;
  top: 10px;
  left: 24px;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.review-stars {
  color: var(--limo-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-text {
  font-family: var(--font-elegant);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--limo-cream);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--limo-muted);
  letter-spacing: 0.5px;
}

/* ===== CTA SECTION ===== */
.limo-cta {
  background: linear-gradient(135deg, var(--limo-charcoal) 0%, var(--limo-surface) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.limo-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.limo-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--limo-cream);
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
}

.limo-cta p {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  color: var(--limo-muted);
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.limo-cta-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.limo-cta-phone:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
}

.limo-cta-hours {
  font-size: 0.92rem;
  color: var(--limo-muted);
  font-weight: 500;
  position: relative;
}

/* ===== FOOTER ===== */
.limo-footer {
  background: var(--limo-charcoal);
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.limo-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.limo-footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--limo-gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.limo-footer p,
.limo-footer a {
  font-size: 0.88rem;
  color: var(--limo-muted);
  line-height: 1.7;
  transition: color 0.3s ease;
}

.limo-footer a:hover { color: var(--limo-gold); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.limo-footer-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-sister-link {
  color: var(--limo-gold) !important;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-content { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .limo-topbar { display: none; }
  .limo-nav { top: 0; }

  .limo-nav-links { display: none; }
  .limo-mobile-toggle { display: block; }

  .limo-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 34, 0.97);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    backdrop-filter: blur(20px);
  }

  .limo-nav-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }

  .limo-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .limo-footer-bar { flex-direction: column; gap: 8px; text-align: center; }

  :root { --section-pad: 72px 20px; }
}

@media (max-width: 480px) {
  .limo-hero-title { font-size: 2.4rem; letter-spacing: -1px; }
  .area-grid { grid-template-columns: 1fr; }
  .limo-trust-inner { gap: 24px; }
}