/* =============================================
   KANHA CAB - MAIN STYLESHEET
   Theme: Purple + Green + White
   Fonts: Playfair Display + Plus Jakarta Sans
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

:root {
  /* Brand Colors */
  --purple:       #6B21A8;
  --purple-dark:  #4C1D95;
  --purple-light: #9333EA;
  --purple-pale:  #F3E8FF;
  --purple-mid:   #7C3AED;
  --green:        #16A34A;
  --green-light:  #22C55E;
  --green-pale:   #DCFCE7;
  --green-dark:   #15803D;
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-400:     #9CA3AF;
  --gray-600:     #4B5563;
  --gray-800:     #1F2937;
  --gray-900:     #111827;
  --black:        #0A0A0A;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-py: 90px;
  --container:  1200px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(107,33,168,.08);
  --shadow-md:  0 8px 30px rgba(107,33,168,.12);
  --shadow-lg:  0 20px 60px rgba(107,33,168,.18);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: inherit; }

/* ---- UTILITY ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section-py { padding: var(--section-py) 0; }
.text-center { text-align: center; }

.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-pale); color: var(--purple);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-full);
  margin-bottom: 14px;
}
.section-badge svg { width: 13px; height: 13px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; color: var(--gray-900);
  line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--purple); }
.section-title .green { color: var(--green); }

.section-desc { font-size: 16px; color: var(--gray-600); max-width: 560px; }
.section-desc.center { margin: 0 auto; text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600;
  transition: all .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--purple); color: var(--white);
  box-shadow: 0 4px 20px rgba(107,33,168,.3);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,33,168,.4); }
.btn-green {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 20px rgba(22,163,74,.3);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--purple); font-weight: 700;
}
.btn-white:hover { background: var(--purple-pale); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- FLOATING BUTTONS ---- */
.wa-float, .call-float {
  position: fixed; bottom: 24px; border-radius: var(--r-full);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.wa-float { right: 24px; background: #25D366; color: #fff; }
.call-float { right: 84px; background: var(--purple); color: #fff; }
.wa-float:hover, .call-float:hover { transform: translateY(-4px) scale(1.08); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 990;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,33,168,.1);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(107,33,168,.12); }
.nav-container {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--purple); line-height: 1.1; }
.logo-sub { font-size: 10px; color: var(--gray-400); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li a {
  padding: 8px 14px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  transition: .2s;
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--purple); background: var(--purple-pale);
}
.nav-cta {
  background: var(--purple) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: var(--r-full) !important;
  font-weight: 600 !important; display: flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--purple); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-mid) 100%);
  padding: 130px 0 70px;
  position: relative; overflow: hidden;
}
.page-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='%23ffffff' 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");
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
  font-weight: 900; color: var(--white); margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 16px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--green-light); }

/* ---- HOME HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #2E0A6E 0%, var(--purple-dark) 30%, #4C1D95 60%, #1e1065 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(34,197,94,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(147,51,234,.3) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3Cpath d='M0 40h80M40 0v80' stroke='%23fff' stroke-opacity='.05' stroke-width='.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-decor-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.hero-decor-circle:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-decor-circle:nth-child(2) { width: 300px; height: 300px; bottom: 50px; left: -80px; }
.hero-decor-circle:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 20%; }

.hero-container { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 60px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,.2); color: var(--green-light);
  border: 1px solid rgba(34,197,94,.35);
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 20px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green-light); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
}
.hero-title .accent { color: var(--green-light); }
.hero-title .thin { font-weight: 700; opacity: .85; }

.hero-desc { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 480px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 28px; }
.hero-stat { }
.hero-stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--green-light); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.55); }

/* Hero image side */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  background: linear-gradient(135deg, rgba(107,33,168,.4), rgba(22,163,74,.2));
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 16px; color: rgba(255,255,255,.5);
}
.hero-img-placeholder svg { width: 80px; height: 80px; opacity: .4; }
.hero-img-placeholder span { font-size: 13px; }

.hero-card {
  position: absolute; background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md); padding: 12px 16px;
  color: white;
}
.hero-card-top { bottom: -20px; left: -20px; }
.hero-card-right { top: 30px; right: -20px; }
.hc-label { font-size: 10px; opacity: .7; letter-spacing: .5px; text-transform: uppercase; }
.hc-val { font-size: 15px; font-weight: 700; }
.hc-sub { font-size: 10px; opacity: .6; margin-top: 2px; }
.hc-icon { font-size: 20px; margin-bottom: 4px; }

/* ---- MARQUEE ---- */
.marquee-section { background: var(--purple); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85);
  padding: 0 28px; white-space: nowrap;
}
.marquee-item svg { color: var(--green-light); width: 14px; height: 14px; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- BOOKING FORM STRIP ---- */
.booking-strip {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  position: relative; z-index: 10;
}
.booking-form {
  display: grid; grid-template-columns: 1fr 1fr 1fr 160px;
  gap: 12px; align-items: end;
}
.bf-group { display: flex; flex-direction: column; gap: 6px; }
.bf-group label { font-size: 11px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .8px; }
.bf-group select,
.bf-group input {
  height: 48px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md); padding: 0 14px;
  font-size: 14px; color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color .2s;
  outline: none;
}
.bf-group select:focus, .bf-group input:focus { border-color: var(--purple); background: var(--white); }

/* ---- SERVICES SECTION ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--green)); opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--purple-pale); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px; border-radius: var(--r-md);
  background: var(--purple-pale); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: .3s;
}
.service-card:hover .service-icon { background: var(--purple); color: var(--white); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  font-size: 13px; font-weight: 600; color: var(--purple);
  display: flex; align-items: center; gap: 5px; transition: gap .2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ---- WHY CHOOSE US ---- */
.why-section { background: linear-gradient(135deg, #1e0b4a 0%, var(--purple-dark) 100%); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.why-feat {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 20px;
  transition: .3s;
}
.why-feat:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.why-feat-icon { color: var(--green-light); margin-bottom: 10px; }
.why-feat-icon svg { width: 24px; height: 24px; }
.why-feat h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-feat p { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }
.why-img-side { position: relative; }
.why-img-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.3); font-size: 13px; }
.why-img-placeholder svg { width: 60px; height: 60px; }

/* ---- FLEET SECTION ---- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.fleet-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); overflow: hidden; transition: .3s;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fleet-img { aspect-ratio: 16/9; background: var(--gray-100); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gray-400); font-size: 12px; }
.fleet-img-placeholder svg { width: 48px; height: 48px; }
.fleet-info { padding: 20px; }
.fleet-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--gray-900); }
.fleet-meta { display: flex; gap: 16px; margin-bottom: 14px; }
.fleet-meta span { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray-500); }
.fleet-meta svg { width: 13px; height: 13px; color: var(--purple); }
.fleet-price { font-size: 13px; color: var(--green-dark); font-weight: 600; }

/* ---- ROUTES SECTION ---- */
.routes-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 7px 18px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 500; border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-600); cursor: pointer; transition: .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.route-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  transition: .25s; cursor: pointer;
}
.route-card:hover { border-color: var(--purple); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.route-cities { font-size: 14px; font-weight: 600; color: var(--gray-900); display: flex; align-items: center; gap: 6px; }
.route-cities .arrow { color: var(--purple); font-size: 12px; }
.route-meta { display: flex; justify-content: space-between; align-items: center; }
.route-dist { font-size: 11px; color: var(--gray-400); }
.route-price { font-size: 12px; font-weight: 700; color: var(--green-dark); background: var(--green-pale); padding: 2px 8px; border-radius: var(--r-full); }
.route-book { font-size: 11px; color: var(--purple); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; border: 1px solid var(--gray-200);
  transition: .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: #FFC107; }
.stars svg { width: 16px; height: 16px; }
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple-pale); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.author-place { font-size: 12px; color: var(--gray-400); }

/* ---- CONTACT SECTION ---- */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--gray-900); margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--gray-600); margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--purple-pale); color: var(--purple);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 3px; }
.contact-item-val { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.contact-item-val a { color: inherit; }
.contact-item-val a:hover { color: var(--purple); }

/* Form Tabs */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.form-tabs { display: flex; border-bottom: 1px solid var(--gray-200); }
.form-tab {
  flex: 1; padding: 16px 12px; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--gray-500);
  cursor: pointer; transition: .2s; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-right: 1px solid var(--gray-200);
}
.form-tab:last-child { border-right: none; }
.form-tab svg { width: 15px; height: 15px; }
.form-tab.active { background: var(--purple); color: var(--white); }
.form-tab:not(.active):hover { background: var(--purple-pale); color: var(--purple); }

.form-body { padding: 28px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .6px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200); border-radius: var(--r-md);
  padding: 11px 14px; font-size: 14px; color: var(--gray-800);
  background: var(--gray-50); outline: none; transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; margin-top: 8px; }

/* Map */
.map-section { height: 380px; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 70px; }
.about-img-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; background: var(--purple-pale); display: flex; align-items: center; justify-content: center; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--purple); opacity: .4; font-size: 13px; }
.about-img-placeholder svg { width: 70px; height: 70px; }
.about-points { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.about-point { display: flex; gap: 12px; }
.about-point-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--purple-pale); color: var(--purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-point-dot svg { width: 14px; height: 14px; }
.about-point h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.about-point p { font-size: 13px; color: var(--gray-600); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.value-card { text-align: center; padding: 28px 20px; border: 1px solid var(--gray-200); border-radius: var(--r-lg); transition: .3s; }
.value-card:hover { border-color: var(--purple); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.value-icon { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--purple-pale); color: var(--purple); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.value-icon svg { width: 26px; height: 26px; }
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

.team-section { background: var(--off-white); }
.stats-band { background: var(--purple); padding: 50px 0; }
.stats-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.sband-num { font-family: var(--font-display); font-size: 42px; font-weight: 900; color: var(--white); }
.sband-label { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ---- SERVICES PAGE ---- */
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 50px; }
.service-detail-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); overflow: hidden; transition: .3s;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sdc-head { padding: 28px; border-bottom: 1px solid var(--gray-100); display: flex; gap: 18px; align-items: flex-start; }
.sdc-icon { width: 54px; height: 54px; border-radius: var(--r-md); background: var(--purple-pale); color: var(--purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sdc-icon svg { width: 26px; height: 26px; }
.sdc-head h3 { font-size: 19px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.sdc-head p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.sdc-body { padding: 20px 28px 28px; }
.sdc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.sdc-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-700); }
.sdc-feat svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* ---- ROUTES PAGE ---- */
.routes-source-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.rst-btn {
  padding: 9px 20px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--gray-200); background: var(--white); color: var(--gray-600);
  cursor: pointer; transition: .2s;
}
.rst-btn.active { background: var(--purple); color: var(--white); border-color: var(--purple); }
.rst-btn:hover:not(.active) { border-color: var(--purple); color: var(--purple); }

.routes-big-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rb-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 16px 14px;
  transition: .25s;
}
.rb-card:hover { border-color: var(--purple); box-shadow: var(--shadow-sm); }
.rb-from { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 4px; }
.rb-cities { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.rb-cities .arr { color: var(--purple); font-size: 10px; }
.rb-footer { display: flex; justify-content: space-between; align-items: center; }
.rb-dist { font-size: 11px; color: var(--gray-400); }
.rb-book { font-size: 11px; font-weight: 700; color: var(--white); background: var(--purple); padding: 3px 10px; border-radius: var(--r-full); transition: .2s; }
.rb-book:hover { background: var(--purple-dark); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 70px 0; text-align: center;
}
.cta-section h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--gray-900); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-logo-main { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); }
.f-logo-sub { display: block; font-size: 10px; color: var(--gray-400); letter-spacing: 1px; text-transform: uppercase; }
.footer-about-txt { font-size: 13px; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: .2s;
}
.social-btn.wa { background: #25D366; color: white; }
.social-btn.call { background: var(--purple); color: white; }
.social-btn:hover { transform: translateY(-3px) scale(1.1); }

.footer-heading { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 13px; color: var(--gray-400); transition: .2s; display: flex; align-items: center; gap: 5px; }
.footer-links li a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--gray-400); }
.footer-contact-list li svg { width: 14px; height: 14px; color: var(--purple-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a { color: var(--gray-400); }
.footer-contact-list li a:hover { color: var(--green-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--gray-500); }

/* ---- NOTIFICATIONS ---- */
.notif {
  position: fixed; top: 80px; right: 20px; z-index: 9999;
  background: var(--white); border-left: 4px solid var(--green);
  border-radius: var(--r-md); padding: 14px 20px;
  box-shadow: var(--shadow-lg); max-width: 320px;
  font-size: 14px; display: flex; align-items: center; gap: 10px;
  transform: translateX(120%); transition: transform .4s ease;
}
.notif.show { transform: translateX(0); }
.notif.error { border-left-color: #ef4444; }
.notif svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-side { display: none; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .routes-big-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 16px;
    border-bottom: 2px solid var(--purple-pale);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 11px 16px; }
  .nav-cta { justify-content: center; }
  .booking-form { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-big-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .wa-float { right: 16px; bottom: 16px; }
  .call-float { right: 76px; bottom: 16px; }
}
