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

:root {
  --primary: #f5a623;
  --primary-dark: #e08800;
  --primary-light: #ffc85a;
  --orange: #ff6b00;
  --dark: #1a1a1a;
  --dark2: #2d2d2d;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --red: #e63329;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(245, 166, 35, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
  margin-left: 18px;
  transition: color .2s;
}

.top-bar a:hover {
  color: var(--dark);
}

.top-bar .top-left span {
  margin-right: 20px;
}

.top-bar .top-left span i {
  color: var(--white);
  margin-right: 5px;
}

/* ─── NAVBAR ─── */
nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.nav-logo img {
  height: 62px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
  background: transparent;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  border: 1px solid var(--red) !important;
  padding: 10px 24px !important;
  transition: all .3s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: .3s;
}

/* ─── DROPDOWN ─── */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  min-width: 200px;
  z-index: 1000;
  padding: 10px 0;
  list-style: none;
}

.dropdown-menu.mega-menu {
  width: 95vw;
  max-width: 900px;
  margin-top: 0px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 25px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 30px;
  border-top: 3px solid var(--primary);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.3s;
  border-radius: 4px;
}

.dropdown-menu li a i {
  font-size: 13px;
}

.dropdown-menu li a:hover {
  background: rgba(245, 166, 35, .08);
  color: var(--primary);
}

.dropdown:hover .dropdown-menu:not(.mega-menu) {
  display: block;
}

.dropdown:hover .dropdown-menu.mega-menu {
  display: grid;
}

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

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a00 50%, #1a1a1a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/amber-fort.png') center/cover no-repeat;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 0;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.hero p {
  color: #ddd;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 650px;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat .lbl {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── BOOKING FORM ─── */
.booking-strip {
  background: var(--white);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .15);
  padding: 28px 0;
  position: relative;
  z-index: 10;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
}

.btn-book {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all .3s;
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: #fff;
}

/* ─── SECTION COMMON ─── */
section {
  padding: 70px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(245, 166, 35, .15);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-title span {
  color: var(--primary);
}

.section-sub {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
}

.section-header {
  margin-bottom: 44px;
}

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

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ─── VEHICLES ─── */
.vehicles-bg {
  background: var(--light-gray);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.vehicle-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  border: 2px solid transparent;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.vehicle-img {
  background: linear-gradient(135deg, #f9f9f9, #ebebeb);
  padding: 24px;
  text-align: center;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vehicle-img img {
  max-height: 150px;
  max-width: 100%;
  object-fit: contain;
  transition: transform .3s;
}

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

.vehicle-info {
  padding: 20px;
}

.vehicle-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.vehicle-type {
  font-size: 12px;
  background: rgba(245, 166, 35, .15);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.vehicle-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vehicle-features span {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.vehicle-features span i {
  color: var(--primary);
}

.vehicle-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle-price .price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
}

.vehicle-price .price small {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}

.btn-sm {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
}

.btn-sm:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: all .3s;
  border-bottom: 3px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(245, 166, 35, .4);
  transition: transform .3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ─── DESTINATIONS ─── */
.dest-bg {
  background: var(--light-gray);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.dest-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
  height: 280px;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: background .3s;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .2) 60%);
}

.dest-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-overlay p {
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  margin-bottom: 12px;
}

.dest-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.why-img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.why-badge .num {
  font-size: 32px;
  font-weight: 800;
  display: block;
}

.why-badge .lbl {
  font-size: 12px;
  font-weight: 600;
}

.why-list {
  margin-top: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 12px;
  transition: background .2s;
}

.why-item:hover {
  background: rgba(245, 166, 35, .06);
}

.why-item-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.why-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── STEPS ─── */
.steps-bg {
  background: var(--dark);
}

.steps-bg .section-title {
  color: var(--white);
}

.steps-bg .section-sub {
  color: #aaa;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 10px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 30px;
  font-size: 24px;
  color: var(--primary);
  opacity: .5;
}

.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(245, 166, 35, .4);
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testi-bg {
  background: var(--light-gray);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all .3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testi-stars {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.testi-author-info strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.testi-author-info small {
  font-size: 12px;
  color: var(--gray);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(0, 0, 0, .65);
  font-size: 16px;
  margin-bottom: 30px;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: all .2s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--dark);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--primary);
  font-size: 18px;
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

/* ─── SCROLL TO TOP ─── */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  z-index: 999;
  transition: all .3s;
}

#scrollTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: #fff;
}

#scrollTop.show {
  display: flex;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 26px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  z-index: 999;
  animation: pulse-wa 2s infinite;
}

/* ─── CALL FLOAT ─── */
.call-float {
  position: fixed;
  bottom: 148px;
  right: 26px;
  width: 54px;
  height: 54px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(245, 166, 35, .5);
  z-index: 999;
  animation: pulse-call 2s infinite;
  animation-delay: 0.5s;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .5); }
  50%       { box-shadow: 0 4px 40px rgba(37, 211, 102, .8); }
}

@keyframes pulse-call {
  0%, 100% { box-shadow: 0 4px 20px rgba(245, 166, 35, .5); }
  50%       { box-shadow: 0 4px 40px rgba(245, 166, 35, .8); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

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

  .why-img-wrap {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-cta {
    margin: 10px 20px;
    text-align: center;
    border-radius: 8px !important;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-menu,
  .dropdown-menu.mega-menu {
    position: static;
    box-shadow: none;
    display: none;
    padding: 0;
    width: 100%;
    grid-template-columns: 1fr !important;
    grid-auto-flow: row;
    border-top: none;
    background: #f9f9f9;
    left: 0 !important;
    transform: none !important;
    margin: 0 !important;
  }

  .dropdown-menu li a {
    padding-left: 35px !important;
    border-bottom: 1px solid #eee;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown.open .dropdown-menu.mega-menu {
    display: block;
  }

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

  /* ─── TOP BAR MOBILE ─── */
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 8px 16px;
  }

  .top-bar .top-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .top-bar .top-left span {
    margin-right: 0;
    font-size: 13px;
  }

  .top-bar .top-right {
    display: flex;
    gap: 12px;
  }

  .top-bar a {
    margin-left: 0;
    font-size: 15px;
  }

  .hero-stats {
    gap: 18px;
    justify-content: center;
  }

  .step-card::after {
    display: none;
  }

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

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  /* Force 1 column on very small screens for all grids */
  .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }

  /* Handle custom grids added in vehicle pages */
  div[style*="grid-template-columns: repeat(auto-fit, minmax"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

/* ─── ABOUT SECTION ─── */
.about-section {
  background: var(--white);
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-para {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--light-gray);
  border-radius: 14px;
  border-left: 4px solid var(--primary);
}

.astat {
  text-align: center;
}

.anum {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.albl {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  color: var(--dark);
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-hover);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

.about-img-badge i {
  font-size: 26px;
}

/* ─── VEHICLES 3-COL FORCED ─── */
.vehicles-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ─── SERVICES 3-COL FORCED ─── */
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ─── DESTINATIONS 3+3 ─── */
.dest-grid-6 {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    display: none;
  }

  .vehicles-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .services-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dest-grid-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
  .vehicles-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .services-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .dest-grid-6 {
    grid-template-columns: 1fr !important;
  }

  .about-stats {
    flex-direction: column;
    gap: 14px;
  }
}