/* ========================================
   VILLUPURAM CALL TAXI - Main Stylesheet
   Color Palette: #F5C518 (Gold), #111111 (Black), #FFFFFF
   ======================================== */

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

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

:root {
  --yellow:    #F5C518;
  --yellow-dk: #D4A500;
  --black:     #111111;
  --dark:      #1A1A1A;
  --dark2:     #252525;
  --grey:      #F7F7F7;
  --muted:     #666;
  --white:     #FFFFFF;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.12);
  --transition:all .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.highlight { color: var(--yellow); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,.4);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 38px; font-size: 1.1rem; }

/* ── Header / Navbar ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .4s, box-shadow .4s;
  padding: 0;
}
#header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.logo-text {
  line-height: 1.15;
}
.logo-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .03em;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--yellow); font-weight: 700; font-size: .95rem;
  border: 2px solid rgba(245,197,24,.35);
  padding: 8px 16px; border-radius: 50px;
  transition: var(--transition);
}
.nav-phone:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-weight: 600;
  padding: 12px 20px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .mv-cta {
  padding: 16px 20px 0;
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* ── Hero Section ── */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.7) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,197,24,.07) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,197,24,.15);
  border: 1px solid rgba(245,197,24,.4);
  color: var(--yellow);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero h1 span { color: var(--yellow); }

.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 14px;
  font-weight: 400;
}
.hero-tamil {
  color: rgba(255,255,255,.6);
  font-family: 'Noto Sans Tamil', sans-serif;
  font-size: .95rem;
  margin-bottom: 36px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 1.5px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── Services Section ── */
.services { padding: 90px 0; background: var(--grey); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .4s;
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--yellow), #f7d94b);
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.12) rotate(-5deg); }

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }

/* ── Why Choose Us ── */
.why-us { padding: 90px 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-visual-card {
  background: var(--black);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.why-visual-inner {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom right, rgba(245,197,24,.15), transparent),
    url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=800&q=75') center/cover;
}
.why-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--yellow);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.why-badge-float strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--black); line-height: 1; }
.why-badge-float span { font-size: .78rem; font-weight: 700; color: rgba(0,0,0,.7); }

.why-content { padding-left: 10px; }
.why-content h2 { margin-bottom: 14px; }
.why-content > p { color: var(--muted); margin-bottom: 32px; }

.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 46px; height: 46px;
  background: #FFF8DC;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-feature-text strong { display: block; font-size: 1.05rem; margin-bottom: 3px; }
.why-feature-text p { color: var(--muted); font-size: .9rem; }

/* ── Routes Section ── */
.routes { padding: 90px 0; background: var(--black); }
.routes .section-title { color: var(--white); }
.routes .section-subtitle { color: rgba(255,255,255,.55); }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.route-card {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.route-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.route-card:hover { background: #2a2a2a; border-color: rgba(245,197,24,.3); transform: translateY(-4px); }
.route-card:hover::after { transform: scaleX(1); }

.route-from-to {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.route-city { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.route-arrow { color: var(--yellow); font-size: 1.3rem; flex-shrink: 0; }

.route-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.route-detail { text-align: center; }
.route-detail span { display: block; font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.route-detail strong { color: var(--yellow); font-size: .98rem; }

.route-cta { width: 100%; text-align: center; }

/* ── Testimonials ── */
.testimonials { padding: 90px 0; background: var(--grey); }

.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.25,.8,.25,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-left: 4px solid var(--yellow);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.testi-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { color: #444; font-style: italic; margin-bottom: 20px; line-height: 1.7; font-size: .97rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #f7d94b);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .98rem; }
.testi-loc { font-size: .8rem; color: var(--muted); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: grid; place-items: center;
}
.slider-btn:hover { background: var(--yellow); color: var(--black); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--yellow) 0%, #f7d94b 50%, var(--yellow-dk) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🚕';
  position: absolute;
  right: 5%;
  top: 50%; transform: translateY(-50%);
  font-size: clamp(4rem, 12vw, 10rem);
  opacity: .15;
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: var(--black); margin-bottom: 12px; font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.cta-inner p { color: rgba(0,0,0,.7); margin-bottom: 32px; font-size: 1.1rem; }
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: .05em;
  transition: var(--transition);
  margin-bottom: 24px;
}
.cta-phone-big:hover { background: #333; transform: scale(1.03); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ Accordion ── */
.faq { padding: 90px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: var(--yellow); }
.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.faq-item.open .faq-question { background: #FFF8DC; color: #222; }
.faq-arrow {
  font-size: .85rem;
  color: var(--yellow);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 22px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }

/* ── Map Section ── */
.map-section { padding: 80px 0; background: var(--grey); }
.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}
.map-info { }
.map-info h3 { margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.contact-value { font-weight: 700; font-size: 1.05rem; }
.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ── */
#footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { margin: 16px 0 24px; font-size: .93rem; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--yellow); color: var(--black); }

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content:''; position:absolute; bottom:0; left:0; width:28px; height:2px; background:var(--yellow); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .92rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul a:hover { color: var(--yellow); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--yellow); }

/* ── Floating Buttons ── */
.float-btns {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  color: var(--white);
}
.float-btn:hover { transform: scale(1.05); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.float-call { background: #111; }
.float-wa { background: #25D366; }
.float-btn-icon { font-size: 1.2rem; }
.float-btn-label { font-size: .85rem; }

/* ── Page Banner (inner pages) ── */
.page-banner {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,.1) 0%, transparent 65%);
}
.page-banner h1 { color: var(--white); position: relative; }
.page-banner p { color: rgba(255,255,255,.6); margin-top: 10px; font-size: 1.1rem; position: relative; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  position: relative;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb .sep { opacity: .4; }

/* ── SEO Content Page ── */
.seo-content { padding: 80px 0; }
.seo-main { max-width: 800px; }
.seo-main h2 { margin: 36px 0 14px; }
.seo-main p { color: #444; line-height: 1.85; margin-bottom: 16px; }
.seo-main ul { list-style: disc; padding-left: 24px; color: #444; margin-bottom: 16px; }
.seo-main ul li { margin-bottom: 8px; line-height: 1.7; }
.seo-sidebar { display: flex; flex-direction: column; gap: 20px; }
.seo-card {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--yellow);
}
.seo-card h4 { margin-bottom: 12px; }
.seo-card ul { list-style: none; }
.seo-card ul li { padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .93rem; color: #555; display: flex; gap: 8px; align-items: flex-start; }
.seo-card ul li::before { content: '→'; color: var(--yellow); flex-shrink: 0; }

.seo-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── About Page ── */
.about-story { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-img-inner {
  width: 100%;
  padding-bottom: 100%;
  background: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=800&q=75') center/cover;
  border-radius: 20px;
}
.about-content h2 { margin-bottom: 18px; }
.about-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  background: var(--grey);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
.about-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--yellow); }
.about-stat span { font-size: .8rem; color: var(--muted); }

/* ── Utilities ── */
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* ── Animations ── */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }
[data-aos][data-aos-delay="400"] { transition-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .why-visual { margin-bottom: 20px; }
  .why-badge-float { right: 0; bottom: -16px; }
  .about-img-inner { padding-bottom: 60%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .seo-layout { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .map-wrapper { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 24px); }
}
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 18px; }
  .routes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-btn-label { display: none; }
  .float-btn { padding: 13px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr; }
  .map-embed { height: 280px; }
}
