/* ============================================================
   RAHUL CAB SERVICES - Main Stylesheet
   ============================================================ */

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

:root {
  --primary: #f5a623;
  --primary-dark: #e08c00;
  --secondary: #1a1a2e;
  --accent: #16213e;
  --text-dark: #1a1a2e;
  --text-light: #f0f0f0;
  --text-muted: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --card-bg: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --header-h: 80px;
  --top-bar-h: 38px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; line-height: 1.2; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--secondary);
  color: var(--text-light);
  height: var(--top-bar-h);
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  z-index: 1001;
  position: relative;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--text-light); }
.top-bar a:hover { color: var(--primary); }
.top-bar i { color: var(--primary); margin-right: 5px; }
.top-bar .social-links a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: background var(--transition);
}
.top-bar .social-links a:hover { background: var(--primary); color: var(--white); }
.top-bar .social-links { display: flex; gap: 7px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  background: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: height var(--transition), box-shadow var(--transition), background var(--transition);
}
header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.18);
  height: 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
header.scrolled .logo-icon {
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
}
header.scrolled .logo-name {
  font-size: 1.2rem;
}
header.scrolled .logo-tag {
  display: none;
}
header.scrolled nav > ul > li > a {
  padding: 8px 13px;
  font-size: 0.87rem;
}
header.scrolled .header-cta {
  padding: 9px 18px !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
  flex-shrink: 0;
  transition: width var(--transition), height var(--transition), font-size var(--transition);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.5px;
  transition: font-size var(--transition);
}
.logo-tag {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity var(--transition), max-height var(--transition);
  overflow: hidden;
}

/* Nav */
nav { display: flex; align-items: center; gap: 5px; }
nav > ul { display: flex; align-items: center; gap: 2px; }
nav > ul > li { position: relative; }
nav > ul > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 7px;
  letter-spacing: 0.3px;
  transition: background var(--transition), color var(--transition), padding var(--transition), font-size var(--transition);
}
nav > ul > li > a:hover,
nav > ul > li > a.active {
  background: var(--primary);
  color: var(--white);
}



/* CTA Button in header */
.header-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  padding: 11px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(245,166,35,0.35);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(245,166,35,0.5) !important; background: var(--primary-dark) !important; }

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

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background: var(--secondary);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  transition: transform 7s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(2 2 2 / 61%) 0%, rgb(37 37 37 / 45%) 60%, #00000000 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 0 0 0 60px;
  color: var(--white);
}
.slide-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.slide-content p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide content right alignment */
.slide-content-right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  padding: 0 60px 0 0;
}
.slide-content-right .slide-btns {
  justify-content: flex-end;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(245,166,35,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(245,166,35,0.55); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 60px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
}
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.dot.active { background: var(--primary); border-color: var(--white); transform: scale(1.3); }
.slider-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.arrow-btn:hover { background: var(--primary); border-color: var(--primary); }

/* ============================================================
   BOOKING STRIP
   ============================================================ */
.booking-strip {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
  padding: 0;
  margin-top: -1px;
}
.booking-form-wrap {
  background: var(--secondary);
  padding: 28px 35px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-field {
  flex: 1;
  min-width: 160px;
}
.booking-field label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
  font-weight: 600;
}
.booking-field label i { color: var(--primary); margin-right: 5px; }
.booking-field input,
.booking-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border var(--transition), background var(--transition);
}
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
}
.booking-field select option { background: var(--secondary); color: var(--white); }
.booking-field input::placeholder { color: rgba(255,255,255,0.4); }
.booking-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 4px 18px rgba(245,166,35,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.booking-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,166,35,0.5); }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title-wrap { text-align: center; margin-bottom: 52px; }
.section-pre {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.title-line::before, .title-line::after {
  content: '';
  height: 2px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--primary));
}
.title-line::after { background: linear-gradient(90deg, var(--primary), transparent); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 80px 0; background: var(--light-bg); }
.service-card:hover 
/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding: 80px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.why-image-main img { width: 100%; height: 100%; object-fit: cover; }
.why-content {}
.why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245,166,35,0.3);
}
.why-feature-text h4 { font-size: 1rem; margin-bottom: 4px; color: var(--secondary); }
.why-feature-text p { font-size: 0.87rem; color: var(--text-muted); }

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet-section { padding: 80px 0; background: var(--light-bg); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-img {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.fleet-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.fleet-info { padding: 20px; }
.fleet-info h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--secondary); }
.fleet-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.fleet-feature-tag {
  background: var(--light-bg);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  display: flex; align-items: center; gap: 5px;
}
.fleet-feature-tag i { color: var(--primary); font-size: 0.7rem; }
.fleet-book-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform var(--transition);
}
.fleet-book-btn:hover { transform: scale(1.05); color: var(--white); }

/* ============================================================
   ROUTES SECTION
   ============================================================ */
.routes-section { padding: 80px 0; }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.route-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.route-header { display: flex; align-items: center; gap: 12px; }
.route-icon { font-size: 1.6rem; color: var(--primary); }
.route-title { font-size: 1.1rem; color: var(--secondary); }
.route-cities {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.city-pill {
  background: var(--light-bg);
  color: var(--secondary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.route-arrow { color: var(--primary); font-size: 0.9rem; }
.route-meta { display: flex; gap: 16px; }
.route-meta span { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.route-meta i { color: var(--primary); }
.route-book-btn {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 4px;
}
.route-book-btn:hover { gap: 12px; }

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.destinations-section { padding: 80px 0; background: var(--light-bg); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: 280px;
  cursor: pointer;
  transition: transform var(--transition);
}
.dest-card:hover { transform: scale(1.02); }
.dest-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-bg { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.88) 0%, transparent 60%);
}
.dest-info {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: var(--white);
}
.dest-info h3 { font-size: 1.3rem; margin-bottom: 4px; }
.dest-info p { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.dest-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--secondary);
  color: var(--white);
}
.testimonials-section .section-title { color: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testi-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform var(--transition), background var(--transition);
}
.testi-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.12); }
.testi-stars { color: var(--primary); margin-bottom: 14px; font-size: 0.95rem; }
.testi-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.95rem; }
.testi-location { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🚕';
  position: absolute;
  font-size: 15rem;
  opacity: 0.06;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.cta-banner h2 { font-size: 2.4rem; color: var(--white); margin-bottom: 14px; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); color: var(--primary-dark); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-outline-white:hover { background: var(--white); color: var(--primary-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.75);
  padding: 65px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}
.footer-logo-text .logo-name { color: var(--white); font-size: 1.3rem; }
.footer-logo-text .logo-tag { color: var(--primary); }
.footer-desc { font-size: 0.87rem; line-height: 1.8; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--primary);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 8px;
  transition: color var(--transition), gap var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); gap: 12px; }
.footer-col ul li a i { color: var(--primary); font-size: 0.75rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fci-icon {
  width: 34px; height: 34px;
  background: rgba(245,166,35,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.fci-text { font-size: 0.85rem; line-height: 1.6; }
.fci-text strong { color: var(--white); display: block; font-size: 0.8rem; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}
.footer-bottom span { color: var(--primary); }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5a623' fill-opacity='0.05'%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-banner h1 { font-size: 2.8rem; margin-bottom: 12px; position: relative; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  position: relative;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb i { font-size: 0.7rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-section { padding: 80px 0; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.experience-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.experience-badge .big-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.experience-badge span { font-size: 0.8rem; display: block; margin-top: 4px; }
.about-content p { margin-bottom: 16px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.about-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.about-list-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; color: var(--text-dark);
}
.about-list-item i { color: var(--primary); font-size: 1rem; }

/* Values */
.values-section { padding: 80px 0; background: var(--light-bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-6px); }
.value-card .value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 10px; }
.value-card p { font-size: 0.86rem; color: var(--text-muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform var(--transition);
}
.contact-info-card:hover { transform: translateX(5px); }
.cic-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cic-text h4 { font-size: 1rem; color: var(--secondary); margin-bottom: 5px; }
.cic-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.cic-text a { color: var(--primary); font-weight: 600; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-size: 1.5rem; color: var(--secondary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 9px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(245,166,35,0.35);
  width: 100%;
  justify-content: center;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 7px 25px rgba(245,166,35,0.5); }

/* Map section */
.map-section { padding: 0 0 80px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail-section { padding: 80px 0; }
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 350px 1fr;
}
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.sdcard-img {
  height: 280px;
  overflow: hidden;
}
.sdcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-detail-card:hover .sdcard-img img { transform: scale(1.05); }
.sdcard-content { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.sdcard-icon { font-size: 2rem; margin-bottom: 12px; }
.sdcard-content h2 { font-size: 1.6rem; color: var(--secondary); margin-bottom: 12px; }
.sdcard-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.sdcard-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.sdcard-tag {
  background: rgba(245,166,35,0.1);
  color: var(--primary-dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Gallery */
.gallery-section { padding: 80px 0; background: var(--light-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; height: 300px; }
.gallery-item:nth-child(4) { grid-column: span 2; height: 260px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,46,0.55);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(245,166,35,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(245,166,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}
.fade-in-up { animation: fadeInUp 0.7s ease forwards; }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* Floating phone button */
.float-call-btn {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
  z-index: 999;
  animation: pulse-ring 2s infinite;
  transition: transform var(--transition);
}
.float-call-btn:hover { transform: scale(1.1); color: var(--white); }

/* WhatsApp float */
.float-wa-btn {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition);
}
.float-wa-btn:hover { transform: scale(1.1); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { gap: 36px; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .sdcard-img { height: 240px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; height: 220px; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-img-main { height: 320px; }
  .experience-badge { left: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .top-bar { display: none; }
  nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--white); padding: 20px; flex-direction: column; align-items: flex-start; gap: 5px; box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--header-h)); overflow-y: auto; z-index: 999; }
  nav.open { display: flex; }
  nav > ul { flex-direction: column; width: 100%; gap: 0; }
  nav > ul > li > a { padding: 12px 8px; border-radius: 8px; width: 100%; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .hero-slider { height: 420px; }
  .slide-content { padding: 0 20px; }
  .slide-content-right { padding: 0 20px; margin-left: 0; text-align: left; }
  .slide-content-right .slide-btns { justify-content: flex-start; }
  .slide-content h1 { font-size: 2rem; }
  .slider-controls { left: 20px; }
  .booking-form-wrap { padding: 20px; flex-direction: column; }
  .booking-field { min-width: 100%; }
  .booking-submit { width: 100%; justify-content: center; }
  .section-title { font-size: 1.9rem; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px !important; grid-column: span 1 !important; }
  .cta-banner h2 { font-size: 1.8rem; }
  .page-banner h1 { font-size: 2rem; }
  .float-call-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .float-wa-btn { bottom: 84px; right: 20px; width: 48px; height: 48px; }
}


@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .destinations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .slide-content h1 { font-size: 1.6rem; }
  .slide-btns { flex-direction: column; }
    .routes-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
}

/* ════════════════════════════════════════════
   SERVICES SECTION — 2-column redesign
════════════════════════════════════════════ */
.services-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left column */
.services-left {}
.services-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Service list items */
.srv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.srv-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.srv-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  transform: scaleY(0);
  transition: transform var(--transition);
  border-radius: 3px;
}
.srv-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(245,166,35,.15);
  transform: translateX(5px);
}
.srv-item:hover::before { transform: scaleY(1); }

.srv-item-ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245,166,35,.12), rgba(245,166,35,.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}
.srv-item:hover .srv-item-ico {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}
.srv-item-body { flex: 1; }
.srv-item-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}
.srv-item-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.srv-item-arr {
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
}
.srv-item:hover .srv-item-arr { opacity: 1; transform: translateX(0); }

/* Right column — image */
.services-right {}
.services-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.services-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.services-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 22px rgba(245,166,35,.4);
}
.services-img-badge i { font-size: 1.3rem; }
.services-img-badge span { font-size: 0.78rem; line-height: 1.4; }
.services-img-badge strong { font-size: 0.92rem; display: block; }

/* ════════════════════════════════════════════
   FLEET PRICE ROW — Choose Your Ride section
════════════════════════════════════════════ */
.fleet-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  margin-top: 10px;
  background: linear-gradient(135deg, rgba(245,166,35,.06), rgba(245,166,35,.02));
  border-radius: 8px;
  border: 1px solid rgba(245,166,35,.2);
  border-top: 2px solid var(--primary);
}
.fleet-price-from {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fleet-price-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Oswald', sans-serif;
  line-height: 1;
}
.fleet-price-val small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.fleet-book-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.fleet-book-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(245,166,35,.4);
  color: var(--white);
}

/* ── Responsive overrides ── */
@media (max-width: 1024px) {
  .services-two-col { gap: 36px; }
}
@media (max-width: 768px) {
  .services-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-right { order: -1; }
  .services-img-wrap img { max-height: 300px; object-position: top; }
}
