@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-dark: #A07830;
  --dark: #0D1117;
  --dark-2: #161B22;
  --dark-3: #21262D;
  --text: #E6EDF3;
  --text-muted: #8B949E;
  --white: #FFFFFF;
  --light-bg: #F6F8FA;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: #1C2128;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: 100px 0;
}

/* ===== LABEL + HEADING SYSTEM ===== */
.lbl {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.sec-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: #556478;
  max-width: 560px;
}

.center-text {
  text-align: center;
}

.center-text .sec-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, .35);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}

.btn-wa:hover {
  background: #1da851;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

header.scrolled {
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.nav-logo img {
  height: 90px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links>li {
  position: relative;
  list-style: none;
}

.nav-links>li>a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links>li:hover>a::after {
  width: 100%;
}

.nav-links>li>a:hover {
  color: var(--gold);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid #EEF2F7;
}

.nav-links>li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark) !important;
  border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu a:last-child {
  border: none;
}

.dropdown-menu a i {
  color: var(--gold);
  width: 16px;
}

.dropdown-menu a:hover {
  background: #FFF8E7;
  color: var(--gold) !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone a.btn {
  padding: 12px 24px;
  font-size: .85rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Blog styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: .8rem;
  z-index: 2;
  box-shadow: var(--shadow);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-body {
  padding: 32px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: #556478;
  margin-bottom: 16px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #F6F8FA;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
}

.blog-meta i {
  color: var(--gold);
}

.blog-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.45;
  transition: var(--transition);
}

.blog-card:hover .blog-body h3 {
  color: var(--gold);
}

.blog-body p {
  color: #556478;
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-read {
  color: var(--gold);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read:hover {
  gap: 10px;
}

/* Single blog / route page */
.route-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
}

.route-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 17, 23, .5) 0%, rgba(13, 17, 23, .85) 100%);
}

.route-hero .container {
  position: relative;
}

.route-info-bar {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ri-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
}

.ri-item i {
  color: var(--gold);
}

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

.route-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1.5px solid #EEF2F7;
}

.sidebar-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.highlight-box {
  background: #FFF8E7;
  border: 1.5px solid #FFE4A0;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}

.highlight-box strong {
  color: var(--gold-dark);
  display: block;
  font-size: 1.4rem;
}

.highlight-box span {
  font-size: .85rem;
  color: #556478;
}

@media(max-width:1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  .service-grid,
  .fleet-grid,
  .pkg-grid,
  .why-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .route-layout {
    grid-template-columns: 1fr;
  }

  .route-sidebar {
    position: static;
  }
}

@media(max-width:768px) {
  .section-pad {
    padding: 64px 0;
  }
  
  .btn {
    padding: 12px 18px;
    font-size: .85rem;
    gap: 6px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 280px;
    height: 100vh;
    background: #1e2633;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    padding: 100px 32px 60px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
  }

  .nav-links.open {
    right: 0;
  }
  
  .nav-links>li {
    width: 100%;
  }

  .nav-links>li>a {
    font-size: 1.15rem;
    color: var(--white) !important;
    background: transparent;
    padding: 16px 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
  }
  
  .nav-links>li>a::after {
    display: none;
  }
  
  .nav-links>li>a .fa-chevron-down {
    color: var(--gold);
    transition: var(--transition);
  }
  
  .nav-links>li.dropdown-open>a .fa-chevron-down {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 10px 16px;
    margin: 0;
    width: 100%;
  }
  
  .nav-links>li.dropdown-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    padding: 12px 0;
    justify-content: flex-start;
    gap: 12px;
    border-bottom: none;
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--gold) !important;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .fleet-grid,
  .pkg-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-trust .trust-item strong {
    font-size: 1.5rem;
  }

  .about-badge {
    bottom: -10px;
    right: 10px;
    padding: 18px 20px;
  }

  .about-badge strong {
    font-size: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: .95rem;
    margin-bottom: 24px;
  }

  .hero-trust .trust-item strong {
    font-size: 1.5rem;
  }

  .booking-card {
    padding: 24px;
  }

  .trust-bar-inner {
    gap: 16px;
  }

  .tbar-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(125deg, rgba(13, 17, 23, .82) 40%, rgba(13, 17, 23, .55)), url('../images/indore_bg.png') center/cover no-repeat fixed;
  position: relative;
  padding: 140px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 56px;
  display: flex;
  gap: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.trust-item span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
}

/* Booking Card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.booking-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
}

.booking-card p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-group {
  margin-bottom: 14px;
}

.f-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #556478;
  margin-bottom: 8px;
}

.f-group label i {
  color: var(--gold);
}

.f-group input,
.f-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .93rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}

.f-group input:focus,
.f-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .12);
}

.btn-book-full {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}

.btn-book-full:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.tbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tbar-item i {
  font-size: 1.5rem;
  color: var(--gold);
}

.tbar-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.tbar-item span {
  color: var(--text-muted);
  font-size: .8rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 520px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 28px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.about-badge span {
  font-size: .85rem;
  opacity: .9;
}

.about-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.about-list-item i {
  width: 36px;
  height: 36px;
  background: #FFF8E7;
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--light-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1.5px solid #EEF2F7;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: transparent;
}

.svc-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #FFF8E7, #FFEFC8);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  color: #556478;
  font-size: .93rem;
  line-height: 1.7;
}

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid #EEF2F7;
  overflow: hidden;
  transition: var(--transition);
}

.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--gold);
}

.fleet-img-wrap {
  height: 180px;
  background: #F6F8FA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fleet-img-wrap img {
  height: 160px;
  object-fit: contain;
  transition: var(--transition);
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.06);
}

.fleet-body {
  padding: 26px;
}

.fleet-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.fleet-rate {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.fleet-specs {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: #556478;
  font-weight: 500;
}

.fleet-spec i {
  color: var(--gold);
}

.fleet-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fleet-btns a {
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .85rem;
}

.btn-fl-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-fl-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-fl-wa {
  background: #25D366;
  color: var(--white);
}

.btn-fl-wa:hover {
  background: #1da851;
}

/* ===== PACKAGES ===== */
.packages-section {
  background: var(--light-bg);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pkg-img {
  position: relative;
  height: 260px;
  width: 100%;
  background: #F6F8FA;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pkg-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.pkg-body {
  padding: 26px;
}

.pkg-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pkg-meta {
  display: flex;
  gap: 16px;
  font-size: .82rem;
  color: #556478;
  margin-bottom: 14px;
}

.pkg-meta i {
  color: var(--gold);
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #EEF2F7;
}

.pkg-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}

.pkg-price small {
  font-size: .75rem;
  font-weight: 500;
  color: #556478;
}

.pkg-footer a {
  background: var(--gold);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 700;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-card {
  background: var(--dark-2);
  padding: 48px 36px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: var(--dark-3);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: rgba(201, 168, 76, .12);
  border: 1.5px solid rgba(201, 168, 76, .25);
  color: var(--gold);
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1.5px solid #EEF2F7;
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testi-stars {
  color: #FFB800;
  font-size: .85rem;
  margin-bottom: 16px;
}

.testi-text {
  color: #334155;
  font-size: .97rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author h5 {
  font-size: .95rem;
  font-weight: 700;
}

.testi-author span {
  font-size: .8rem;
  color: #556478;
}

/* ===== CITIES ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.city-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.city-card:hover img {
  transform: scale(1.1);
}

.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
}

.city-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.city-overlay span {
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 168, 76, .15) 0%, transparent 70%);
}

.cta-section .container {
  position: relative;
}

.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-section h2 span {
  color: var(--gold);
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-logo img {
  height: 95px;
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: .9rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: .9rem;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: .85rem;
}

.footer-bottom span {
  color: var(--gold);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  z-index: 9999;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, .6);
  }
}

/* ===== PAGE HEADER ===== */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(13, 17, 23, .78), rgba(13, 17, 23, .78)), url('../images/indore_bg.png') center/cover fixed;
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

.breadcrumb a {
  color: var(--gold);
}

/* ===== MOBILE ===== */
@media(max-width:1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  .service-grid,
  .fleet-grid,
  .pkg-grid,
  .why-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {


  .menu-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 20px 14px;
  }

  .svc-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .service-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .why-card {
    padding: 20px 14px;
  }

  .why-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .why-card h4 {
    font-size: 0.9rem;
  }

  .why-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .fleet-grid,
  .pkg-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    gap: 24px;
    flex-wrap: wrap;
  }

  .about-badge {
    bottom: -10px;
    right: 10px;
  }
}