/* ===== CSS VARIABLES ===== */
:root {
  --navy:       #0B1D35;
  --navy-mid:   #142845;
  --navy-light: #1E3A5F;
  --gold:       #C9932A;
  --gold-light: #E8B84B;
  --gold-pale:  #FDF3E0;
  --white:      #FFFFFF;
  --off-white:  #F7F5F1;
  --gray-100:   #F0EDE8;
  --gray-300:   #C4BDB4;
  --gray-500:   #7A7268;
  --gray-700:   #3D3630;
  --text:       #1C1710;
  --shadow-sm:  0 2px 8px rgba(11,29,53,0.08);
  --shadow-md:  0 8px 32px rgba(11,29,53,0.14);
  --shadow-lg:  0 20px 60px rgba(11,29,53,0.20);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  /* Yahan se overflow hata diya gaya hai taake Nav bar sticky rahe */
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--gray-700); line-height: 1.75; }

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.gold { color: var(--gold); }
.text-center { text-align: center; }
.badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: var(--gray-500); max-width: 600px; margin: 0 auto 48px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,147,42,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,147,42,0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1fba5a; transform: translateY(-2px); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; fill: var(--gold-light); flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
#mainHeader {
  background: rgba(255, 255, 255, 0.90) !important; 
  backdrop-filter: blur(1px);
  /* background: var(--white); */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#mainHeader.scrolled {
  top: 10px;
  margin: 0 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1180px;  
  margin: 0 auto;     
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo img { height: 72px; width: auto; transition: height var(--transition); }
#mainHeader.scrolled .logo img { height: 50px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gold-pale); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone svg { width: 16px; height: 16px; fill: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 20px 16px; /* Box ki khali jagah kam kar di */
  border-top: 1px solid var(--gray-100);
  gap: 2px; /* Links ke darmiyan ka faasla kam kar diya */
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.92rem; /* Font thora sa chota kiya taake smart lage */
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px; /* Har link ke oopar/neechay ki extra jagah nikal di */
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--gold-pale); color: var(--navy); }
.mobile-menu .btn { 
  margin-top: 6px; 
  justify-content: center; 
  padding: 10px; 
  font-size: 0.9rem; 
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,29,53,0.92) 0%, rgba(11,29,53,0.65) 60%, rgba(11,29,53,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,147,42,0.2);
  border: 1px solid rgba(201,147,42,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.trust-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* ===== GUARANTEE BANNER ===== */
.guarantee-banner {
  background: linear-gradient(90deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  padding: 18px 0;
  overflow: hidden;
}
.guarantee-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.guarantee-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-icon svg { width: 20px; height: 20px; fill: white; }
.guarantee-text { color: var(--white); font-size: 0.95rem; font-weight: 500; }
.guarantee-text strong { color: var(--gold-light); }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 18px;
  transition: transform var(--transition);
}
.service-card:hover .service-img { transform: scale(1.07); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 0.88rem; margin-bottom: 18px; }
.service-card .btn { font-size: 0.83rem; padding: 9px 20px; }

/* ===== WHY CHOOSE ===== */
.why-section { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; fill: white; }
.why-card h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.55); }
.why-section .badge { background: rgba(201,147,42,0.2); color: var(--gold-light); }

/* ===== FLEET SECTION ===== */
.fleet-section { background: var(--off-white); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fleet-img { width: 100%; height: 180px; object-fit: cover; }
.fleet-body { padding: 20px; }
.fleet-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.fleet-meta {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.fleet-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.fleet-tag {
  font-size: 0.75rem;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 500;
}
.fleet-card .btn { width: 100%; justify-content: center; font-size: 0.85rem; padding: 10px; }

/* ===== SERVICE AREAS ===== */
.areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.area-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.area-card:hover { background: var(--gold-pale); transform: translateX(4px); }
.area-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.area-card p { font-size: 0.9rem; }

/* ===== PRICING TABLE ===== */
.pricing-section { background: var(--navy); }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-sub { color: rgba(255,255,255,0.55); }
.pricing-section .badge { background: rgba(201,147,42,0.2); color: var(--gold-light); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); margin-top: 12px; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}
table thead tr { background: var(--gold); }
table thead th {
  padding: 15px 18px;
  text-align: left;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
table tbody tr { background: rgba(255,255,255,0.05); transition: background 0.2s; }
table tbody tr:nth-child(even) { background: rgba(255,255,255,0.09); }
table tbody tr:hover { background: rgba(201,147,42,0.12); }
table tbody td {
  padding: 14px 18px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
table tbody td:last-child { font-weight: 600; color: var(--gold-light); }
.table-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  text-align: center;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-quote {
  font-size: 3rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  line-height: 0.8;
  margin-bottom: 10px;
  opacity: 0.6;
}
.review-text { font-size: 0.92rem; color: var(--gray-700); margin-bottom: 20px; font-style: italic; }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; letter-spacing: 2px; }
.reviewer { font-weight: 600; color: var(--navy); font-size: 0.9rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--gold-pale);
  padding: 28px 0;
}
.features-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.feature-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* ========================================================= */
/* ===== INNER PAGES DESIGN (Minibus, Van, City Tour) ====== */
/* ========================================================= */

/* 1. Subpage Hero Section */
.hero-subpage { position: relative; min-height: 500px; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-subpage-bg { position: absolute; inset: 0; background-image: url('hero-bg.png'); background-size: cover; background-position: center; opacity: 0.35; }
.hero-subpage-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,29,53,0.92) 0%, rgba(11,29,53,0.65) 60%, rgba(11,29,53,0.4) 100%); }

.hero-subpage .hero-content { position: relative; z-index: 2; padding: 80px 0; text-align: center; max-width: 900px; margin: 0 auto; }

/* Yeh lines Heading aur Sub-heading ko wapas White aur Gold karengi */
.hero-subpage h1 { color: var(--white); margin-bottom: 18px; }
.hero-subpage h1 span { color: var(--gold-light); }
.hero-subpage .hero-sub { color: rgba(255,255,255,0.8); max-width: 650px; margin: 0 auto 36px; text-align: center; font-size: 1.08rem; line-height: 1.8; }

/* 2. 4 Icons Grid */
.icons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; text-align: center; }
.icon-box img { width: 100px; height: 100px; object-fit: contain; border-radius: 50%; margin: 0 auto 20px; box-shadow: var(--shadow-sm); }
.icon-box h4 { color: #800080; font-size: 1.15rem; font-family: 'DM Sans', sans-serif; font-weight: 700; margin-bottom: 8px;}

/* 3. Vehicle Row Layout (Left/Right Image & Text) */
.vehicle-row-modern {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  background: var(--off-white); padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); margin-bottom: 60px; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.vehicle-row-modern:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

@media(min-width: 900px) {
  .vehicle-row-modern { grid-template-columns: 400px 1fr; gap: 50px; padding: 50px; }
  .vehicle-row-modern.reverse { grid-template-columns: 1fr 400px; }
}

.vehicle-img-wrapper { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--white); }
.vehicle-img-wrapper img { width: 100%; height: 300px; object-fit: cover; display: block; }

.vehicle-details ul { margin-bottom: 25px; padding-left: 0; }
.vehicle-details ul li { margin-bottom: 12px; font-size: 1.05rem; padding-left: 25px; position: relative; color: var(--text); }
.vehicle-details ul li::before { content: '✔'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

/* 4. Full Width Banners */
.banner-img-wrap { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 40px; }
.banner-img-wrap img { width: 100%; max-height: 500px; object-fit: cover; }

/* 5. FAQs */
.faq-section { background: var(--white); padding: 50px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.faq-item { margin-bottom: 30px; }
.faq-item p { text-align: left; }




/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE / RESPONSIVE ===== */
@media (max-width: 950px) { 
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ===== DESKTOP ONLY ===== */
@media (min-width: 950px) {
  #mainHeader.scrolled {
    /* Adds the navy blue border on desktop view when scrolled */
    border: 1px solid var(--navy); 
  }
}

@media (max-width: 640px) {
  
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  
  .topbar-left { flex-direction: column; align-items: flex-start; gap: 5px; }
  .table-wrap { width: 100%; overflow-x: auto; }
  #mainHeader {
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(1px); 
  }

  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  .nav-inner { padding: 14px 20px; } 
  .nav-cta .btn-whatsapp { display: none; } 
  .logo img { height: 50px !important; }
  .hero-content { padding: 40px 0 60px; }
  .hero-trust { gap: 20px; margin-top: 30px; }
  .section-pad { padding: 50px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar-right { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
  table { font-size: 0.82rem; }
  table thead th, table tbody td { padding: 10px 12px; }
  .guarantee-text { font-size: 0.85rem; text-align: center; }
  .vehicle-row-modern.reverse .vehicle-img-wrapper { grid-row: 1; }
  
  
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}