/* ============================================
   MLSCABSERVICES - Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #f5a623;
  --primary-dark: #d4881a;
  --secondary: #1a1a2e;
  --dark:      #0f0f1a;
  --text:      #333333;
  --text-light:#666666;
  --white:     #ffffff;
  --bg-light:  #f9f9f9;
  --border:    #e0e0e0;
  --radius:    8px;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --transition:0.3s ease;
  --font:      'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
}

a { text-decoration: none; color: inherit; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; transition: all var(--transition); }
input, textarea, select { transition: border-color var(--transition), background var(--transition), box-shadow var(--transition); }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-brand .logo-img { height: 45px; }

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: #ccc;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--primary); }

.btn-call-nav {
  background: var(--primary);
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.9rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-call-nav:hover { background: var(--primary-dark) !important; transform: scale(1.04); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand .logo { font-size: 1.4rem; }
.footer-brand p {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #aaa;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-contact p {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.85rem; color: #777; }
.footer-bottom a { color: var(--primary); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.btn-dark {
  background: var(--secondary);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }

/* ============================================
   STICKY FLOATING BUTTONS
   ============================================ */
.sticky-call {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 999;
  background: var(--primary);
  color: var(--dark);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(245,166,35,0.5);
  transition: transform var(--transition), opacity 0.2s ease;
  opacity: 1;
}
.sticky-call:hover { transform: scale(1.1); }

.sticky-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  transition: transform var(--transition), opacity 0.2s ease;
  opacity: 1;
}
.sticky-whatsapp:hover { transform: scale(1.1); }

/* ============================================
   SECTION COMMON
   ============================================ */
section { padding: 70px 0; }

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-heading .tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0.5rem auto 0;
}

.section-heading p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5a623' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-content h1 span { color: var(--primary); }

.hero-content p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: #ccc;
}
.hero-badge i { color: var(--primary); }

.hero-car-wrap {
  margin-top: 36px;
}
.hero-car-img {
  width: 100%;
  max-width: 600px;
  display: block;
  border-radius: 18px;
  filter: drop-shadow(0 12px 40px rgba(245,166,35,0.30));
}

/* Booking Card */
.booking-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  color: var(--text);
}
.booking-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}

/* Service Type Tabs */
.service-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.service-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.service-tab i { font-size: 1.15rem; }
.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(245,166,35,0.07);
}
.service-tab.active {
  border-color: var(--primary);
  background: rgba(245,166,35,0.14);
  color: var(--primary-dark);
}

.form-group {
  position: relative;
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  font-family: var(--font);
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group .input-icon {
  position: absolute;
  left: 14px;
  top: 36px;
  color: var(--primary);
  font-size: 1rem;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: none;
}
.autocomplete-dropdown.active { display: block; }
.autocomplete-item {
  padding: 11px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid var(--bg-light);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.autocomplete-item:hover { background: var(--bg-light); }
.autocomplete-item i { color: var(--primary); font-size: 0.85rem; }

.booking-card .btn { width: 100%; justify-content: center; margin-top: 8px; font-size: 1.1rem; padding: 15px; }
.booking-divider {
  text-align: center;
  margin: 12px 0;
  color: var(--text-light);
  font-size: 0.85rem;
  position: relative;
}
.booking-divider::before,.booking-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}
.booking-divider::before { left: 0; }
.booking-divider::after { right: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 4px solid transparent;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border-bottom-color: var(--primary);
}

/* Service card image */
.sc-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 22px;
}
.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.45s ease;
  background: #111;
}
.service-card:hover .sc-img {
  transform: scale(1.07);
}
.service-icon {
  width: 72px;
  height: 72px;
  background: rgba(245,166,35,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 20px;
}
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); padding: 0 20px; }
.service-card p { font-size: 1rem; color: var(--text-light); line-height: 1.6; padding: 0 20px; }

/* ============================================
   ROUTES
   ============================================ */
.routes-section { background: var(--white); }

/* Scrollable route list wrapper (routes page) */
.routes-scroll-wrap {
  max-height: 1600px;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding-right: 4px;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Category heading spans full grid width */
.routes-category {
  grid-column: 1 / -1;
  padding: 14px 0 8px;
  border-bottom: 2px solid var(--primary);
  margin-top: 8px;
}
.routes-category:first-child { margin-top: 0; }
.routes-category h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.routes-category h3 i { color: var(--primary); }

.route-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.route-from-to {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
}
.route-from-to i { color: var(--primary); font-size: 1.1rem; }
.route-details { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 4px; }
.route-detail {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.route-detail i { color: var(--primary); }

/* Call for Price badge — replaces fare display */
.route-call-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 20px;
  padding: 5px 14px;
  margin-top: 10px;
  width: fit-content;
}

.route-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}
.route-price span { font-size: 0.8rem; color: var(--text-light); font-weight: 400; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 700;
}
.testimonial-author h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.testimonial-author p { font-size: 0.8rem; color: var(--text-light); }
.stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 4px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark);
  text-align: center;
  padding: 70px 0;
}
.cta-section h2 { font-size: 2rem; font-weight: 900; margin-bottom: 14px; }
.cta-section p { font-size: 1.05rem; margin-bottom: 34px; opacity: 0.85; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 60%;
  text-align: left;
}
.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  mix-blend-mode: screen;
  opacity: 0.92;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
}
.page-hero h1 { font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: #bbb; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--secondary); margin-bottom: 16px; }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

.stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.stat-box {
  text-align: center;
  background: var(--bg-light);
  padding: 20px 24px;
  border-radius: var(--radius);
  flex: 1;
  min-width: 100px;
}
.stat-box h3 { font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.stat-box p { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

.about-visual {
  background: linear-gradient(135deg, var(--secondary), var(--dark));
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
}
.about-visual h3 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 24px; }
.service-areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag {
  background: rgba(245,166,35,0.15);
  color: #f5a623;
  border: 1px solid rgba(245,166,35,0.3);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.service-full-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-full-card:hover { transform: translateY(-6px); }
.service-card-header {
  background: linear-gradient(135deg, var(--secondary), var(--dark));
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-card-header .icon {
  width: 64px;
  height: 64px;
  background: rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  flex-shrink: 0;
}
.service-card-header h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; }
.service-card-header p { color: #aaa; font-size: 0.88rem; margin-top: 4px; }
.service-card-body { 
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.service-features { margin-bottom: 24px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-light);
}
.service-features li i { color: var(--primary); }

/* ============================================
   ROUTES PAGE - PRICING TABLE
   ============================================ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pricing-table th {
  background: var(--secondary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
}
.pricing-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-table tr:nth-child(even) td { background: var(--bg-light); }
.pricing-table tr:hover td { background: rgba(245,166,35,0.06); }
.price-cell { font-weight: 700; color: var(--primary); }
.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--secondary); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,166,35,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a {
  font-size: 0.93rem;
  color: var(--text-light);
}
.contact-item-text a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--secondary); margin-bottom: 28px; }
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font);
  transition: border-color var(--transition);
  background: var(--white);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form .form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
}
.legal-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--secondary); margin: 36px 0 14px; }
.legal-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--secondary); margin: 24px 0 10px; }
.legal-content p { color: var(--text); line-height: 1.9; margin-bottom: 14px; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { color: var(--text); line-height: 1.9; margin-bottom: 6px; list-style: disc; }
.legal-content .last-updated {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: 14px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.bg-light { background: var(--bg-light); }
.highlight { color: var(--primary); }

/* ============================================
   RESPONSIVE — TABLET  ≤ 992px
   ============================================ */
@media (max-width: 992px) {
  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — HAMBURGER NAV  ≤ 900px
   (prevents cramped nav on tablets)
   ============================================ */
@media (max-width: 900px) {
  /* Navigation → hamburger */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 998;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.97rem;
  }
  .btn-call-nav { margin: 10px 16px; text-align: center; border-radius: 8px; display: block; }
  .hamburger { display: flex; }

  /* Hero → single column */
  .hero { padding: 50px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p  { font-size: 1rem; }

  /* Booking card full-width when stacked */
  .bk-card { max-width: 100%; }
  .bk-tab  { font-size: 0.75rem; padding: 12px 4px; }

  /* Page-hero */
  .page-hero h1              { font-size: 2rem; }
  .page-hero .container      { max-width: 100%; text-align: center; }
  .page-hero-img             { display: none; }
}

/* ============================================
   RESPONSIVE — MOBILE  ≤ 768px
   ============================================ */
@media (max-width: 768px) {
  .hero { padding: 40px 0 50px; }
  .hero-content h1 { font-size: 1.8rem; }
  .booking-card { padding: 24px 20px; }

  section { padding: 48px 0; }
  .section-heading h2 { font-size: 1.6rem; }
  .section-heading p  { font-size: 0.95rem; }

  .page-hero         { display: none; }
  .page-hero h1      { font-size: 1.75rem; }

  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form-card { padding: 24px 20px; }

  .cta-section   { padding: 48px 0; }
  .cta-section h2 { font-size: 1.6rem; }

  .about-visual { padding: 32px 20px; }
  .stat-box     { padding: 16px 12px; }

  .pricing-table th, .pricing-table td { padding: 10px 12px; font-size: 0.88rem; }

  /* Slightly smaller sticky buttons on mobile */
  .sticky-call      { width: 50px; height: 50px; font-size: 1.25rem; bottom: 80px; left: 16px; }
  .sticky-whatsapp  { width: 50px; height: 50px; font-size: 1.25rem; bottom: 18px; right: 16px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE  ≤ 540px
   ============================================ */
@media (max-width: 540px) {
  .hero-content h1 { font-size: 1.65rem; }
  .hero-badges     { gap: 8px; }
  .hero-badge      { font-size: 0.78rem; padding: 6px 12px; }

  .footer-grid        { grid-template-columns: 1fr; }
  .routes-grid        { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }

  .cta-buttons        { flex-direction: column; align-items: center; }
  .cta-buttons .btn   { width: 100%; max-width: 300px; justify-content: center; }

  .stats-row { gap: 10px; }
}

/* ============================================
   RESPONSIVE — EXTRA SMALL  ≤ 420px
   ============================================ */
@media (max-width: 420px) {
  body { font-size: 15px; }

  .hero-content h1   { font-size: 1.45rem; }
  .section-heading h2 { font-size: 1.4rem; }
  .hero-badges  { gap: 6px; }
  .hero-badge   { font-size: 0.75rem; padding: 5px 10px; }

  .services-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .btn { padding: 11px 22px; font-size: 0.93rem; }

  .bk-panel { padding: 16px; }
  .bk-row   { grid-template-columns: 1fr; }
  .bk-tab   { gap: 3px; font-size: 0.7rem; }
  .tm-box   { padding: 28px 20px 24px; }
}

/* ============================================
   RESPONSIVE — MINIMUM  ≤ 360px
   ============================================ */
@media (max-width: 360px) {
  body { font-size: 14px; }
  .hero-content h1   { font-size: 1.3rem; }
  .section-heading h2 { font-size: 1.25rem; }
  .container   { width: 94%; }
  .sticky-call     { left: 10px; }
  .sticky-whatsapp { right: 10px; }
}

/* ============================================
   NAV OPEN — Hide sticky buttons globally
   (works on any screen size — no media query)
   ============================================ */
body.nav-open .sticky-call,
body.nav-open .sticky-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ============================================================
   PREMIUM BOOKING CARD  (.bk-*)
   ============================================================ */
.bk-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

/* ---- Tabs ---- */
.bk-tabs {
  display: flex;
  background: #111111;
}
.bk-tab {
  flex: 1;
  padding: 14px 8px;
  background: transparent;
  border: none;
  color: #888;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.22s, color 0.22s;
  letter-spacing: 0.3px;
  font-family: var(--font);
  border-bottom: 3px solid transparent;
}
.bk-tab i { font-size: 0.9rem; }
.bk-tab:hover { color: #f5a623; }
.bk-tab.active {
  background: #f5a623;
  color: #111111;
  border-bottom-color: #d4881a;
}

/* ---- Panels ---- */
.bk-panel {
  display: none;
  padding: 22px 24px 24px;
  animation: bkFadeIn 0.25s ease;
}
.bk-panel.active { display: block; }

@keyframes bkFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- One-way / Roundtrip toggle ---- */
.bk-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.bk-tog {
  flex: 1;
  padding: 9px 12px;
  background: #f5f5f5;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font);
}
.bk-tog + .bk-tog { border-left: 2px solid #e0e0e0; }
.bk-tog.active {
  background: #111111;
  color: #f5a623;
}
.bk-tog:not(.active):hover { background: #ebebeb; }

/* ---- Fields ---- */
.bk-fields { display: flex; flex-direction: column; gap: 12px; }

.bk-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: visible;
}
.bk-field:focus-within {
  border-color: #f5a623;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
  background: #fff;
}

.bk-icon {
  position: absolute;
  left: 14px;
  font-size: 0.9rem;
  color: #bbb;
  pointer-events: none;
  z-index: 1;
}
.bk-icon.green { color: #25b84a; }
.bk-icon.red   { color: #e53e3e; }

.bk-field input,
.bk-field select {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  color: #222;
  font-family: var(--font);
  outline: none;
  border-radius: 10px;
}
.bk-field input::placeholder { color: #aaa; }
.bk-field select { color: #222; cursor: pointer; }
.bk-field select option[value=""] { color: #aaa; }
.bk-field input[type="date"],
.bk-field input[type="time"] { color: #333; }

/* Autocomplete inside bk-field */
.bk-field .autocomplete-dropdown {
  top: calc(100% + 2px);
  left: -2px;
  right: -2px;
  border-radius: 10px;
  border: 2px solid #f5a623;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* ---- 2-col row ---- */
.bk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---- Submit button ---- */
.bk-submit {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: #111111;
  color: #f5a623;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  transition: background 0.22s, transform 0.18s, box-shadow 0.18s;
}
.bk-submit:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.bk-submit:active { transform: translateY(0); }

/* ---- Validation shake ---- */
@keyframes bkShake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-6px); }
  40%,80%  { transform: translateX(6px); }
}
.bk-field.error {
  border-color: #e53e3e !important;
  animation: bkShake 0.4s ease;
}

/* ---- Field with label above ---- */
.bk-field-labeled { display: flex; flex-direction: column; gap: 5px; }
.bk-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding-left: 2px;
}

/* ---- Multi-city ---- */
.mc-city-field { position: relative; }
.mc-remove-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ccc;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 2;
}
.mc-remove-btn:hover { color: #e53e3e; }

.mc-add-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}
.mc-add-btn {
  background: none;
  border: none;
  color: #f5a623;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 0;
  font-family: var(--font);
  transition: color 0.2s;
}
.mc-add-btn:hover { color: #d4881a; }

/* ---- Time Warning Modal ---- */
.tm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: tmFadeIn 0.2s ease;
}
@keyframes tmFadeIn { from { opacity:0; } to { opacity:1; } }

.tm-box {
  background: #f5a623;
  border-radius: 16px;
  padding: 36px 32px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  animation: tmSlideUp 0.25s ease;
}
@keyframes tmSlideUp { from { transform:translateY(30px); opacity:0; } to { transform:translateY(0); opacity:1; } }

.tm-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #111;
  color: #fff;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 700;
  transition: background 0.2s;
}
.tm-close:hover { background: #333; }

.tm-icon {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 14px;
}
.tm-box h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}
.tm-box p#tm-msg {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
  margin-bottom: 6px;
}
.tm-sub {
  font-size: 0.92rem;
  color: #333;
  margin-bottom: 20px;
}
.tm-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #f5a623;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.18s;
}
.tm-call-btn:hover { background: #000; transform: scale(1.03); }

/* ---- Responsive (main breakpoints consolidated above) ---- */
@media (max-width: 420px) {
  .bk-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MODERN ANIMATIONS — MLSCABSERVICES
   ============================================================ */

/* ---- Scroll-reveal base ---- */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.88) translateY(20px); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ---- Hero entrance (on page load) ---- */
@keyframes heroH1In {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroParaIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroBadgesIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content h1    { animation: heroH1In 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero-content > p   { animation: heroParaIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.hero-badges        { animation: heroBadgesIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s both; }

/* ---- Floating badges ---- */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.hero-badge {
  animation: floatBadge 3.5s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay: 0.5s; }
.hero-badge:nth-child(3) { animation-delay: 1.0s; }
.hero-badge:nth-child(4) { animation-delay: 1.5s; }
.hero-badge:nth-child(5) { animation-delay: 2.0s; }

/* ---- Booking card entrance ---- */
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
.bk-card { animation: cardSlideIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.35s both; }

/* ---- Pulse ring on sticky buttons ---- */
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}
.sticky-call::after,
.sticky-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulseRing 2.2s ease-out infinite;
  pointer-events: none;
}
.sticky-call::after     { background: rgba(245,166,35,0.45); }
.sticky-whatsapp::after { background: rgba(37,211,102,0.45); }
.sticky-call,
.sticky-whatsapp { position: fixed; }   /* ensure position context */

/* ---- Shimmer on primary CTA button ---- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.cta-section .btn-primary,
.btn-primary {
  position: relative;
  overflow: hidden;
}
.cta-section .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(255,255,255,0.35) 50%,
    transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
  border-radius: inherit;
  pointer-events: none;
}

/* ---- Section heading animated underline ---- */
.section-heading h2 {
  position: relative;
  display: inline-block;
}
.section-heading h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.section-heading.visible h2::after { transform: translateX(-50%) scaleX(1); }

/* ---- Route card animated border ---- */
.route-card {
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.route-card:hover::before { transform: scaleY(1); }

/* ---- Service card icon bounce on hover ---- */
@keyframes iconBounce {
  0%,100% { transform: translateY(0) scale(1); }
  40%     { transform: translateY(-8px) scale(1.12); }
  60%     { transform: translateY(-4px) scale(1.06); }
}
.service-card:hover .service-icon { animation: iconBounce 0.55s ease; }

/* ---- Testimonial card lift ---- */
.testimonial-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.13);
}

/* ---- Stats counter number ---- */
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-box.visible h3 { animation: countUp 0.5s ease both; }

/* ---- Page-hero text entrance ---- */
.page-hero h1 { animation: heroH1In 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.page-hero p  { animation: heroParaIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both; }

/* ---- Area tags float-in ---- */
@keyframes tagPop {
  from { opacity: 0; transform: scale(0.75); }
  to   { opacity: 1; transform: scale(1); }
}
.area-tag {
  animation: tagPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.about-visual.visible .area-tag:nth-child(1)  { animation-delay: 0.05s; }
.about-visual.visible .area-tag:nth-child(2)  { animation-delay: 0.10s; }
.about-visual.visible .area-tag:nth-child(3)  { animation-delay: 0.15s; }
.about-visual.visible .area-tag:nth-child(4)  { animation-delay: 0.20s; }
.about-visual.visible .area-tag:nth-child(5)  { animation-delay: 0.25s; }
.about-visual.visible .area-tag:nth-child(6)  { animation-delay: 0.30s; }
.about-visual.visible .area-tag:nth-child(7)  { animation-delay: 0.35s; }
.about-visual.visible .area-tag:nth-child(8)  { animation-delay: 0.40s; }
.about-visual.visible .area-tag:nth-child(9)  { animation-delay: 0.45s; }
.about-visual.visible .area-tag:nth-child(10) { animation-delay: 0.50s; }
.about-visual:not(.visible) .area-tag { opacity: 0; }

/* ---- Pricing table row fade-in ---- */
@keyframes rowFadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.table-wrapper.visible .pricing-table tbody tr {
  animation: rowFadeIn 0.4s ease both;
}
.table-wrapper.visible .pricing-table tbody tr:nth-child(1)  { animation-delay: 0.05s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(2)  { animation-delay: 0.10s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(3)  { animation-delay: 0.15s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(4)  { animation-delay: 0.20s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(5)  { animation-delay: 0.25s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(6)  { animation-delay: 0.30s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(7)  { animation-delay: 0.35s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(8)  { animation-delay: 0.40s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(9)  { animation-delay: 0.45s; }
.table-wrapper.visible .pricing-table tbody tr:nth-child(10) { animation-delay: 0.50s; }
.table-wrapper:not(.visible) .pricing-table tbody tr { opacity: 0; }

/* ---- Reduce motion (accessibility) ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale,
  .hero-content h1, .hero-content > p, .hero-badges,
  .hero-badge, .bk-card, .page-hero h1, .page-hero p,
  body { animation: none !important; transition: none !important; }
  .sticky-call::after, .sticky-whatsapp::after { display: none; }
  .cta-section .btn-primary::after { display: none; }
}
