/* ============================================
   Active Chauffeur Drive - Premium Design System
   Dark Theme · Gold Accents · Glassmorphism
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-bg:          #0b0b0f;
  --clr-bg-alt:      #111117;
  --clr-surface:     #18181f;
  --clr-surface-2:   #1f1f28;
  --clr-gold:        #c9a84c;
  --clr-gold-light:  #dfc06a;
  --clr-gold-dark:   #a88a32;
  --clr-white:       #ffffff;
  --clr-text:        #e0e0e0;
  --clr-text-muted:  #8a8a9a;
  --clr-border:      rgba(255, 255, 255, 0.08);
  --clr-glass-bg:    rgba(255, 255, 255, 0.04);
  --clr-glass-border:rgba(255, 255, 255, 0.10);
  --clr-overlay:     rgba(11, 11, 15, 0.7);

  --ff-heading:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(201,168,76,0.15);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--clr-gold-light); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  color: var(--clr-white);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 20px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.gold-text { color: var(--clr-gold); }
.italic { font-style: italic; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-bg);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--clr-bg);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
}
.btn-outline:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-bg);
}
.btn-white:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--clr-white);
  font-weight: 600;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-gold);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-gold);
}

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

.nav-book-btn {
  margin-left: 12px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 15, 0.88) 0%,
    rgba(11, 11, 15, 0.6) 50%,
    rgba(11, 11, 15, 0.75) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  max-width: 640px;
}

.hero-content .section-label {
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content h1 .gold-text {
  display: inline;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Booking Form */
.hero-form-card {
  background: rgba(17, 17, 23, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}

.hero-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.hero-form-card .form-subtitle {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}

.hero-form-card .form-group {
  margin-bottom: 14px;
}

.hero-form-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-form-card input,
.hero-form-card select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  transition: var(--transition);
}

.hero-form-card input:focus,
.hero-form-card select:focus {
  outline: none;
  border-color: var(--clr-gold);
  background: rgba(201, 168, 76, 0.06);
}

.hero-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 13px;
}

/* ================================================
   PROMISE / FEATURES SECTION
   ================================================ */
.promise-section {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.promise-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--clr-glass-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.promise-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.promise-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: 50%;
  font-size: 1.4rem;
}

.promise-card h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.promise-card p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ================================================
   INTRO / ABOUT PREVIEW SECTION
   ================================================ */
.intro-section .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.intro-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.intro-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.intro-text h2 {
  margin-bottom: 24px;
}

.intro-text p {
  margin-bottom: 18px;
  color: var(--clr-text-muted);
  font-size: 0.98rem;
}

.intro-text .btn {
  margin-top: 12px;
}

/* ================================================
   FLEET SECTION
   ================================================ */
.fleet-section {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.fleet-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.fleet-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.fleet-card-img {
  height: 200px;
  overflow: hidden;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.08);
}

.fleet-card-body {
  padding: 24px 20px;
}

.fleet-card-body h4 {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.fleet-card-body .fleet-type {
  font-size: 0.8rem;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.fleet-card-body p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-top: 10px;
  line-height: 1.6;
}

/* ================================================
   SERVICES GRID
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-dark));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ================================================
   WORLDWIDE / CTA BANNER
   ================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,15,0.9), rgba(11,11,15,0.7));
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ================================================
   ABOUT PAGE - TEAM / CHAUFFEURS
   ================================================ */
.about-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,15,0.92), rgba(11,11,15,0.8));
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 { margin-bottom: 20px; }
.about-hero p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.chauffeur-section .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Stats bar */
.stats-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 48px 0;
}

.stat-item h3 {
  font-size: 2.4rem;
  color: var(--clr-gold);
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--clr-gold);
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
}

.contact-info-card h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* Contact / Booking Form */
.booking-form-wrapper {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.booking-form-wrapper h3 {
  margin-bottom: 6px;
}

.booking-form-wrapper .form-subtitle {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}

.booking-form .form-group {
  margin-bottom: 18px;
}

.booking-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  background: rgba(201, 168, 76, 0.05);
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-form .btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.95rem;
}

/* Payment logos */
.payment-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment-logos img {
  height: 28px;
  opacity: 0.7;
  transition: var(--transition);
}

.payment-logos img:hover { opacity: 1; }

/* ================================================
   PAGE HEADER (Services, About, Contact)
   ================================================ */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,15,0.92) 0%, rgba(11,11,15,0.85) 100%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb span { color: var(--clr-gold); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-bg);
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--clr-white);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.footer-col ul li a:hover {
  color: var(--clr-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  color: var(--clr-gold);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .fade-up:nth-child(8) { transition-delay: 0.4s; }

/* Parallax decoration */
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  margin-bottom: 20px;
}

.gold-line.center { margin-left: auto; margin-right: auto; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-form-card {
    max-width: 480px;
  }

  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(17, 17, 23, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: var(--transition-slow);
    border-left: 1px solid var(--clr-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-book-btn {
    margin-left: 0;
  }

  .hero .container {
    padding-top: 120px;
  }

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

  .intro-section .intro-grid,
  .chauffeur-section .intro-grid,
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .booking-form .form-row {
    grid-template-columns: 1fr;
  }

  .hero-form-card .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   FORM SUBMISSION SUCCESS
   ================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success .checkmark {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  font-size: 2rem;
}

.form-success h3 {
  margin-bottom: 10px;
}

.form-success p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

/* ================================================
   WORLDWIDE SERVICES (Services page)
   ================================================ */
.worldwide-section {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}

.worldwide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.worldwide-card {
  padding: 36px 28px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.worldwide-card:hover {
  border-color: var(--clr-gold);
}

.worldwide-card h3 {
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.worldwide-card p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ================================================
   SCROLL TO TOP BUTTON
   ================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold);
  color: var(--clr-bg);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
}
