:root {
  --primary: #d4af37;
  --dark: #0a0a0a;
  --light: #ffffff;
  --gray: #222222;
  --text-muted: #bbbbbb;
  --highlight: #2c2c2c;
  --radius: 0.5rem;
  --transition: all 0.4s ease-in-out;
  --shadow: 0 10px 28px rgba(0,0,0,0.5);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --overlay: rgba(0,0,0,0.6);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary);
}
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Containers */
.container-lg, .container-md {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Animations */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gradientShift { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes rotateGlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(15px); } }

/* Global backgrounds */
html::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, #111, #0a0a0a, #181818);
  background-size: 300% 300%;
  animation: gradientShift 30s linear infinite;
  opacity: 0.2;
  z-index: -2;
}
html::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMzAwJyBoZWlnaHQ9JzMwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cmVjdCB3aWR0aD0nMTAwJScgaGVpZ2h0PScxMDAlJyBmaWxsPScjZmZmJy8+PHJlY3Qgd2lkdGg9JzIwJScgaGVpZ2h0PScyMCUnIGZpbGw9J3JnYmEoMCwwLDAsMC4wMSknLz48L3N2Zz4=") no-repeat;
  opacity: 0.015;
  animation: spin 0.8s steps(8) infinite;
  z-index: -1;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10,10,10,0.9);
  box-shadow: var(--shadow);
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-link {
  position: relative;
  padding-bottom: 0.25rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger .line {
  width: 25px;
  height: 3px;
  background: var(--light);
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; right: 0; flex-direction: column; background: var(--gray); padding: 1rem; width: 220px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 2rem 3rem;
  background-color: #0a0a0a;
  z-index: 1;
}

.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  filter: brightness(1.3) saturate(1.5);
  opacity: 0.25;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  color: var(--primary);
  animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2rem;
  animation: fadeUp 1.4s ease forwards;
}

/* Fleet */
.section-fleet {
  padding: 4rem 2rem;
  background: var(--highlight);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}
.vehicle-card {
  background: var(--highlight);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
.vehicle-card img { width: 100%; height: 220px; object-fit: cover; }
.vehicle-card-content { padding: 1.5rem; }
.vehicle-card-content h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.75rem; }
.vehicle-card-content p { color: var(--text-muted); }

/* Services */
.section-about {
  padding: 4rem 2rem;
  background: var(--highlight);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
  align-items: center;
}
.about-text p { font-size: 1rem; line-height: 1.6; color: var(--light); margin-bottom: 1.5rem; }
.about-features.two-column {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  list-style: none;
}
.about-features li { display: flex; gap: 0.75rem; color: var(--text-muted); }
.about-features li i { font-size: 1.5rem; color: var(--primary); }
.about-image img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }

/* About Us & Why Us */
.section-about-us, .section-why { padding: 4rem 2rem; }
.timeline { list-style: none; padding-left: 0; margin-top: 1rem; }
.timeline li { margin-bottom: 0.5rem; }
.timeline li strong { color: var(--primary); margin-right: 0.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-box {
  background: var(--highlight);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
.feature-box i { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.feature-box h4 { color: var(--light); margin-bottom: 0.5rem; }
.feature-box p { color: var(--text-muted); }

/* ───────── Vertical Timeline in About Us ───────── */
.section-about-us {
  background: var(--highlight);
  padding: 4rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-about-us .section-header {
  margin-bottom: 2.5rem;
}

.section-about-us .section-heading {
  position: relative;
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}
.section-about-us .section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius);
}

/* Container for the timeline */
.section-about-us .about-content {
  display: grid;
  gap: 2rem;
}

/* The vertical “spine” */
.section-about-us .timeline {
  position: relative;
  list-style: none;
  padding-left: 3rem;
  margin: 0;
}
.section-about-us .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  width: 4px;
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}

/* Each event */
.section-about-us .timeline li {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-about-us .timeline li.visible {
  opacity: 1;
  transform: translateX(0);
}
.section-about-us .timeline li:last-child {
  margin-bottom: 0;
}

/* Year badge */
.section-about-us .timeline li::before {
  content: attr(data-year);
  position: absolute;
  top: 0;
  left: -1.75rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

/* Text for each entry */
.section-about-us .timeline li p {
  margin: 0.5rem 0 0;
  color: var(--light);
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .section-about-us .timeline {
    padding-left: 2rem;
  }
  .section-about-us .timeline::before {
    left: 1rem;
  }
  .section-about-us .timeline li::before {
    left: -1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.8rem;
  }
}



/* Fare Calculator */
.section-track {
  padding: 4rem 2rem;
  background: var(--highlight);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.fare-content {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
}
.fare-left, .fare-right { display: flex; flex-direction: column; gap: 2rem; }
.fare-intro-text { color: var(--text-muted); font-size: 1.25rem; max-width: 600px; margin: 0 auto; }
.fare-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
}
.benefit {
  background: var(--highlight);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.benefit i { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.benefit h4 { color: var(--light); margin-bottom: 0.5rem; }
.benefit p { color: var(--text-muted); }

/* Fare Map */
.fare-map { width: 100%; height: 240px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Forms */
.fare-form {
  background: var(--highlight);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.fare-form .form-group { margin-bottom: 1rem; }
.fare-form label { color: var(--light); display: block; margin-bottom: 0.25rem; }
.fare-form .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  background: var(--highlight);
  color: var(--light);
}
.btn-primary, .btn-secondary {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.btn-primary { background: var(--primary); color: var(--dark); }
.btn-secondary { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.estimated-price {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 1rem;
}

/* FAQ */
.faq-section {
  padding: 4rem 2rem;
  background: var(--highlight);
  border-radius: var(--radius);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--dark);
  color: var(--light);
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.faq-question::after { content: '+'; position: absolute; right: 1rem; }
.faq-question.active::after { content: '-'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--highlight);
  padding: 0 0.75rem;
}
.faq-answer p { margin: 0.75rem 0; }

/* Testimonials */
.testimonial-card {
  background: var(--highlight);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.4);
}

/* Newsletter & Contact */
.section-newsletter, .section-contact {
  padding: 4rem 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 1.5rem auto;
}
.newsletter-form .form-control { flex: 1; }
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--highlight);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form label { color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  background: var(--highlight);
  color: var(--light);
}
.contact-form button {
  width: 100%;
  padding: 0.9rem;
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.contact-form button:hover { transform: translateY(-3px); }

/* Footer */
.footer {
  background: #101010;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ───────── Additional Detailed Styles ───────── */

/* Universal section separators & spacing */
section {
  padding: 6rem 0;
  position: relative;
}
section:not(:first-of-type)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 4px;
  background: var(--primary);
  transform: translateX(-50%);
}

/* Button refinements */
.btn {
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: #e8c55a; /* slightly lighter primary */
  transform: translateY(-3px);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--dark);
}

/* Form input focus states */
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.3);
  outline: none;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--highlight);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius);
}

/* FAQ accordion smoother transition */
.faq-answer {
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-question {
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: rgba(212,175,55,0.1);
}

/* Decorative icon hover “wiggle” */
.accent-icon {
  transition: transform 0.3s ease;
}
.accent-icon:hover {
  transform: scale(1.2) rotate(-10deg);
}

/* Responsive typography tweaks */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .section-heading { font-size: 2.25rem; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .section-heading { font-size: 2rem; }
  .fare-form { padding: 2rem; }
}

/* Fine-tune text leading */
p, li, dd {
  line-height: 1.8;
}

/* Fade-in on scroll for any element with .animate-on-scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility: smooth in-page anchor scroll */
html {
  scroll-behavior: smooth;
}


/* Enhanced Testimonials */
#testimonials {
  padding: 4rem 2rem;
  background: radial-gradient(circle at center, rgba(212,175,55,0.1), transparent 70%);
  border-radius: var(--radius);
}
#testimonials .section-heading {
  color: var(--primary);
}
#testimonials .testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
}
#testimonials .testimonial-card {
  background: var(--highlight);
  border: 1px solid rgba(212,175,55,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
#testimonials .testimonial-card:nth-child(1) { animation-delay: 0.2s; }
#testimonials .testimonial-card:nth-child(2) { animation-delay: 0.4s; }
#testimonials .testimonial-card:nth-child(3) { animation-delay: 0.6s; }
#testimonials .testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* Enhanced FAQ */
.faq-section {
  padding: 4rem 2rem;
  background: var(--highlight);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-section h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.faq {
  margin-bottom: 1rem;
}
.faq-question {
  background: var(--gray);
  color: var(--light);
  padding: 1rem 1.5rem;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  text-align: left;
  position: relative;
  font-weight: 500;
}
.faq-question::after {
  content: '\f107';
  font-family: 'FontAwesome';
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: transform 0.4s ease;
}
.faq-question.active::after {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-question.active + .faq-answer {
  max-height: 200px;
  padding: 0.75rem 1.5rem;
}


/* Enhanced About Us Section */
#about.section-about-us {
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
#about .section-header {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeDown 0.6s ease forwards;
}
#about .section-header .section-heading {
  font-size: 2.5rem;
  color: var(--light);
  position: relative;
}
#about .section-header .section-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 0.5rem auto 0;
  opacity: 0;
  animation: growWidth 0.8s ease forwards;
  animation-delay: 0.6s;
}
#about .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

#about .about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
}
#about .about-content p {
  color: var(--light);
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.8s;
}
#about .timeline {
  position: relative;
  list-style: none;
  padding: 0 0 0 2.5rem;
  margin: 0;
}
#about .timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255,255,255,0.2);
}
#about .timeline li {
  position: relative;
  padding: 1rem 0 1rem 1rem;
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}
#about .timeline li:nth-child(1) { animation-delay: 1s; }
#about .timeline li:nth-child(2) { animation-delay: 1.3s; }
#about .timeline li:nth-child(3) { animation-delay: 1.6s; }
#about .timeline li:nth-child(4) { animation-delay: 1.9s; }
#about .timeline li::before {
  content: attr(data-year);
  position:absolute;
  left:-100px;
  top:0;
  font-weight:bold;
  color:var(--primary);
}
#about .timeline li::after {
  content:'';
  position:absolute;
  left:-5px;
  top:10px;
  width:12px;
  height:12px;
  background:var(--primary);
  border-radius:50%;
  transform: translateX(-50%);
}

@keyframes fadeDown {
  0% { opacity:0; transform: translateY(-20px); }
  100% { opacity:1; transform: translateY(0); }
}
@keyframes growWidth {
  0% { width:0; }
  100% { width:60px; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes slideUp {
  0% { opacity:0; transform: translateY(20px); }
  100% { opacity:1; transform: translateY(0); }
}


/* Adjust background blobs for subtler effect */
.bg-animation::before,
.bg-animation::after {
  filter: blur(100px);
}
.bg-animation::before {
  width: 40vw;
  height: 40vw;
  top: -20%;
  left: -20%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.2), transparent 70%);
}
.bg-animation::after {
  width: 40vw;
  height: 40vw;
  bottom: -20%;
  right: -20%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.15), transparent 70%);
}

/* Ensure About Us content sits above background */
#about.section-about-us {
  position: relative;
  z-index: 1;
}

/* Make About Us text gold */
#about .section-header .section-heading,
#about .section-subtitle,
#about .about-content p,
#about .timeline li {
  color: var(--primary) !important;
}


/* Revert About Us section text colors, except heading */
#about .section-header .section-heading {
  color: var(--primary) !important;
}
#about .section-subtitle,
#about .about-content p,
#about .timeline li {
  color: var(--light) !important;
}


/* Hide timeline year badge circles */
.section-about-us .timeline li::before {
  display: none !important;
}


/* Stats Cards */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.about-stats .stat {
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.about-stats .stat-number {
  font-size: 3rem;
  color: var(--primary);
}
.about-stats .stat-label {
  font-size: 1rem;
  color: var(--light);
  margin-top: 0.5rem;
}


/* Layout for About Us two-column */
.section-about-us {
  padding: 4rem 2rem;
}
.section-about-us .about-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-about-us .about-left {
  flex: 1 1 50%;
}
.section-about-us .about-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-stats .stat {
  width: 100%;
}


/* Proper two-column layout for About Us */
.section-about-us {
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.section-about-us .about-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-about-us .about-left {
  flex: 1 1 55%;
}
.section-about-us .about-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
}
.section-about-us .about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.section-about-us .stat {
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


/* New About Us Flex Layout */
.section-about-us {
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.section-about-us .about-flex-container {
  display: flex;
  gap: 2rem;
}
.section-about-us .about-left {
  flex: 1;
}
.section-about-us .about-right {
  flex: 0 0 300px; /* fixed width to fill empty space */
}
.section-about-us .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.section-about-us .stat {
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.section-about-us .stat-number {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.section-about-us .stat-label {
  font-size: 0.875rem;
}


/* Enforce two-column layout without wrapping */
.section-about-us .about-flex-container {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  align-items: flex-start;
}

/* Left column takes up remaining space */
.section-about-us .about-left {
  flex: 1 1 auto;
}

/* Right column is fixed width and holds a 2x2 grid */
.section-about-us .about-right {
  flex: 0 0 280px; /* adjust as needed */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1rem;
}

/* Stats cards styling */
.section-about-us .stat {
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.section-about-us .stat-number {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.section-about-us .stat-label {
  font-size: 0.875rem;
}


/* Fade-edge overlay animation for all content boxes */
@keyframes fadeEdge {
  0%,100% { opacity: 0.6; }
  50% { opacity: 0.2; }
}

/* Apply to stat boxes, service feature items, images, timeline items, forms */
.stat,
.about-features li,
.about-image,
.about-content p,
.timeline li,
#fare .fare-form.card,
#estimateForm.card,
#bookingForm.card {
  position: relative;
  overflow: hidden;
}

/* Overlay */
.stat::before,
.about-features li::before,
.about-image::before,
.about-content p::before,
.timeline li::before,
#fare .fare-form.card::before,
#estimateForm.card::before,
#bookingForm.card::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at center, rgba(251,191,36,0.2), transparent 70%);
  animation: fadeEdge 8s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
}
@keyframes shimmer {
  0% { background-position: -100%; }
  100% { background-position: 200%; }
}

.shimmer {
  background: linear-gradient(
    120deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(212, 175, 55, 0.6) 50%,
    rgba(212, 175, 55, 0.1) 100%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.2);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--highlight);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.service-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h4 {
  color: var(--light);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.services-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-images img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}
.services-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.services-images img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.service-feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-box {
  background: var(--highlight);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.service-box h4 {
  color: var(--light);
  margin-bottom: 0.25rem;
}

.service-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Add fast shimmer animation */
@keyframes fastShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Shimmer background class */
.shimmer-bg {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 400% 100%;
  animation: fastShimmer 1.5s linear infinite;
}

/* Apply shimmer to section boxes */
.section-about,
.section-about-us,
.section-fleet,
.section-why,
.section-track,
.faq-section,
.section-testimonials,
.section-newsletter,
.section-contact {
  position: relative;
  overflow: hidden;
  background: none !important; /* remove blocking background */
}

.section-about::before,
.section-about-us::before,
.section-fleet::before,
.section-why::before,
.section-track::before,
.faq-section::before,
.section-testimonials::before,
.section-newsletter::before,
.section-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.05) 75%
  );
  background-size: 400% 100%;
  animation: fastShimmer 1.5s linear infinite;
  border-radius: var(--radius);
}

.section-about::before,
.section-about-us::before,
.section-fleet::before,
.section-why::before,
.section-track::before,
.faq-section::before,
.section-testimonials::before,
.section-newsletter::before,
.section-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 400% 100%;
  animation: fastShimmer 1.5s linear infinite;
  border-radius: var(--radius);
}
