/* =============================================
   INDIA CAB SERVICE - MAIN STYLESHEET
   ============================================= */

:root {
  --yellow: #FF6B00;
  --yellow-dark: #e05e00;
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #2d2d2d;
  --grey: #f5f5f5;
  --grey2: #e8e8e8;
  --text: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --green: #25d366;
  --red: #dc2626;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1,h2,h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.accent { color: var(--yellow); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(10px);
  padding: 0;
  transition: all 0.3s;
  border-bottom: 2px solid rgba(255,107,0,0.3);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { font-size: 32px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(255,107,0,0.1);
}

.btn-call {
  background: var(--yellow);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 16px 40px;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.title-line { display: block; }
.title-accent { display: block; color: var(--yellow); }

.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* =============================================
   BOOKING WIDGET (HERO TABS)
   ============================================= */
.booking-widget {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255,107,0,0.3);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid rgba(255,107,0,0.2);
}

.tab-btn {
  flex: 1;
  padding: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  letter-spacing: 0.5px;
}

.tab-btn.active, .tab-btn:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
  background: rgba(255,107,0,0.05);
}

.tab-content { display: none; padding: 20px; }
.tab-content.active { display: block; }

.booking-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: all 0.2s;
}

.booking-form input::placeholder { color: rgba(255,255,255,0.35); }

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,107,0,0.05);
}

.booking-form select option { background: #1a1a1a; color: var(--white); }

.btn-book {
  background: var(--yellow);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  margin-top: 20px;
}

.btn-book:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,0,0.4);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: var(--yellow);
  padding: 30px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 50px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: rgba(255,107,0,0.10);
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,0,0.3);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 54px);
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section { padding: 90px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border: 2px solid var(--yellow);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 1;
}

.service-icon {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 28px;
  z-index: 1;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info { padding: 22px; }
.service-info h3 { font-size: 22px; color: var(--dark); margin-bottom: 8px; }
.service-info p { color: var(--text-light); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--yellow);
  color: var(--yellow-dark);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}

.btn-outline:hover { background: var(--yellow); color: var(--white); }

/* =============================================
   FLEET SECTION
   ============================================= */
.fleet-section { padding: 90px 0; background: var(--grey); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.fleet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fleet-info { padding: 20px; }
.fleet-info h3 { font-size: 22px; color: var(--dark); margin-bottom: 4px; }
.fleet-model { color: var(--text-light); font-size: 13px; margin-bottom: 12px; }

.fleet-features {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.fleet-features span {
  background: var(--grey);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

.fleet-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}

.btn-book-sm {
  display: inline-block;
  background: var(--yellow);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s;
}

.btn-book-sm:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { padding: 90px 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left .section-tag { margin-bottom: 12px; }

.why-left h2 {
  font-size: clamp(34px, 4vw, 50px);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.why-left > p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.why-features { margin-bottom: 30px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.why-item:hover { background: var(--grey); }
.why-icon { font-size: 24px; flex-shrink: 0; }
.why-item h4 { font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.why-item p { color: var(--text-light); font-size: 13px; }

.why-right { position: relative; }

.why-image {
  width: 100%;
  border-radius: var(--radius);
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why-badge-float .badge-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
}

.why-badge-float .badge-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,0,0.35);
}

/* =============================================
   ROUTES SECTION
   ============================================= */
.routes-section { padding: 90px 0; background: var(--grey); }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.route-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}

.route-cities {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.route-from, .route-to {
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
}

.route-arrow { color: var(--yellow); font-size: 18px; }

.route-details {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.route-details span { font-size: 12px; color: var(--text-light); }

.route-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}

.route-price small { font-size: 14px; color: var(--text-light); font-family: 'Outfit', sans-serif; }

.btn-route {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-route:hover { background: var(--yellow); color: var(--white); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 90px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--yellow);
  transition: all 0.3s;
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { font-size: 18px; margin-bottom: 12px; }
.review-text { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name { display: block; font-weight: 700; font-size: 14px; color: var(--dark); }
.reviewer-loc { display: block; font-size: 12px; color: var(--text-light); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 80px 0;
  background: var(--dark);
}

.cta-content { text-align: center; }

.cta-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--yellow);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-cta-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-cta-whatsapp {
  background: var(--green);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-cta-whatsapp:hover { background: #1eb857; transform: translateY(-2px); }

.btn-cta-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-cta-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* =============================================
   PAGE BANNER
   ============================================= */
.page-banner {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  margin-top: 70px;
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.75));
}

.banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro { padding: 90px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper { position: relative; }

.about-main-img {
  width: 100%;
  border-radius: var(--radius);
  height: 400px;
  object-fit: cover;
}

.about-second-img {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-exp-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-exp-badge .badge-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
}

.about-right .section-tag { margin-bottom: 12px; }

.about-right h2 {
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 14px;
}

.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-right p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 15px;
}

.about-values { margin: 28px 0; }

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--grey);
}

.val-icon { font-size: 26px; flex-shrink: 0; }
.value-item h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.value-item p { font-size: 13px; color: var(--text-light); }

/* MISSION VISION */
.mission-section { padding: 80px 0; background: var(--grey); }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-top: 4px solid transparent;
}

.mv-card.mission { border-top-color: var(--yellow); }
.mv-card.vision { border-top-color: var(--dark); }
.mv-card.values { border-top-color: #10b981; }
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mv-icon { font-size: 44px; margin-bottom: 14px; }
.mv-card h3 { font-size: 26px; color: var(--dark); margin-bottom: 12px; }
.mv-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* TEAM */
.team-section { padding: 90px 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.team-avatar {
  font-size: 60px;
  background: var(--grey);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-card h4 { font-size: 20px; color: var(--dark); margin-bottom: 6px; }

.team-role {
  display: inline-block;
  background: var(--yellow);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.team-card p { color: var(--text-light); font-size: 13px; line-height: 1.6; }

/* =============================================
   SERVICE DETAIL PAGE
   ============================================= */
.services-detail-section { padding: 90px 0; }

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--grey2);
}

.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-card:last-child { border-bottom: none; margin-bottom: 0; }

.service-detail-img { position: relative; border-radius: var(--radius); overflow: hidden; }

.service-detail-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-detail-img:hover img { transform: scale(1.03); }

.service-detail-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
}

.service-detail-info h3 {
  font-size: 38px;
  color: var(--dark);
  margin-bottom: 14px;
}

.service-detail-info > p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features-list { list-style: none; margin-bottom: 20px; }
.service-features-list li {
  padding: 8px 0;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--grey2);
}

.service-price-tag {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-price-tag strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--yellow-dark);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-section { padding: 60px 0 30px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.contact-card:hover { transform: translateY(-4px); border-bottom-color: var(--yellow); box-shadow: var(--shadow-lg); }
.contact-card-icon { font-size: 36px; margin-bottom: 12px; }
.contact-card h4 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.contact-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }
.contact-card a { color: var(--yellow-dark); font-weight: 600; }

.contact-main-section { padding: 40px 0 90px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-wrapper h2,
.contact-map-wrapper h2 {
  font-size: 38px;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-form-wrapper p,
.contact-map-wrapper p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form .form-group.full {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 2px solid var(--grey2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--dark);
  transition: all 0.2s;
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.contact-form textarea { resize: vertical; }

.btn-primary.full-width {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  padding: 15px;
  margin-top: 8px;
}

.alert-success {
  background: #d1fae5;
  border: 1px solid #34d399;
  color: #065f46;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.alert-error {
  background: #fee2e2;
  border: 1px solid #f87171;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.map-container { margin-bottom: 24px; }

.quick-contact h4 { font-size: 18px; color: var(--dark); margin-bottom: 14px; }

.quick-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-right: 12px;
  transition: all 0.2s;
}

.quick-btn.call { background: var(--yellow); color: var(--white); }
.quick-btn.call:hover { background: var(--yellow-dark); }
.quick-btn.whatsapp { background: var(--green); color: var(--white); }
.quick-btn.whatsapp:hover { background: #1eb857; }

/* FAQ */
.faq-section { padding: 80px 0; }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-lg); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
}

.faq-icon {
  font-size: 22px;
  color: var(--yellow-dark);
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* =============================================
   BOOKING CONFIRM PAGE
   ============================================= */
.booking-confirm-section {
  padding: 100px 0;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background: var(--grey);
  margin-top: 70px;
}

.booking-confirm-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.confirm-icon { font-size: 70px; margin-bottom: 16px; }

.booking-confirm-card h2 {
  font-size: 54px;
  color: var(--dark);
  margin-bottom: 14px;
}

.confirm-msg {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.booking-summary {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 30px;
  text-align: left;
}

.booking-summary h4 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.summary-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); }
.summary-value { font-size: 15px; font-weight: 600; color: var(--dark); }

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark); color: var(--white); }

.footer-top { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon { font-size: 36px; }
.footer-logo .logo-main { color: var(--yellow); font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; display: block; }
.footer-logo .logo-sub { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 4px; display: block; }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
  transition: all 0.2s;
  color: var(--white);
}

.social-btn:hover { background: var(--yellow); color: var(--white); }
.social-btn.whatsapp-s:hover { background: var(--green); color: var(--white); }

.footer-links h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,107,0,0.3);
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links ul a:hover { color: var(--yellow); }

.footer-contact h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,107,0,0.3);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 40px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--dark);
    padding: 20px;
    border-bottom: 1px solid rgba(255,107,0,0.3);
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 16px; }
  .btn-call { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 30px; overflow-x: hidden; }
  .hero-content {
    padding: 24px 12px 28px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .hero-title { font-size: 48px; }
  .hero-desc { font-size: 14px; margin-bottom: 20px; max-width: 100%; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }

  /* Booking Widget */
  .booking-widget {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
  }
  .tab-btn {
    font-size: 11px;
    padding: 11px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }

  .tab-content { padding: 14px 12px; }

  .booking-form .form-row,
  .booking-form .form-row.two-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
  }
  .booking-form .form-group {
    width: 100% !important;
    max-width: 100% !important;
  }
  .booking-form .form-group.full-row {
    width: 100% !important;
  }
  .booking-form input,
  .booking-form select {
    font-size: 14px !important;
    padding: 12px 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .booking-form input[type="date"],
  .booking-form input[type="time"] {
    font-size: 14px !important;
    padding: 12px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .booking-form label {
    font-size: 11px;
    margin-bottom: 3px;
  }
  .btn-book {
    font-size: 16px;
    padding: 14px;
    margin-top: 6px;
    width: 100%;
  }

  /* Stats */
  .stats-container { flex-wrap: wrap; gap: 0; }
  .stat-item { padding: 12px 16px; width: 50%; }
  .stat-num { font-size: 28px; }
  .stat-divider { display: none; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { display: none; }
  .routes-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Service detail */
  .service-detail-card { grid-template-columns: 1fr; gap: 24px; }
  .service-detail-card.reverse { direction: ltr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-second-img { display: none; }
  .about-exp-badge { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Misc */
  .summary-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .confirm-actions { flex-direction: column; }
  .section-header h2 { font-size: 34px; }
  .section-header p { font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .section-header h2 { font-size: 28px; }
  .contact-cards { grid-template-columns: 1fr; }
  .booking-confirm-card { padding: 24px 14px; }
  .hero-content { padding: 20px 10px 24px; }
  .tab-content { padding: 12px 10px; }
  .tab-btn { font-size: 10px; padding: 10px 3px; }
  .stat-item { width: 50%; padding: 10px; }
}