* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Use a modern, bold-friendly type system */
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Load better fonts for bolder, cleaner typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

body {
  background: #eef6ff;
  overflow-x: hidden;
  font-weight: 500;
  /* slightly bolder default */
  color: #111;
}

/* ================= TOP BAR ================= */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #071126;
  /* Dark Navy */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  z-index: 1000;
  /* Above navbar */
  padding: 0 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  color: #ffb300;
  /* Brand Yellow */
  font-size: 16px;
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 60px;
  /* Adjusted for top bar */
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.logo {
  font-family: 'Montserrat', 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.6px;
  color: #071126;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color 180ms ease, transform 140ms ease, opacity 140ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links .active {
  font-weight: 600;
}

.connect-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 11px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #071126;
  cursor: pointer;
}

/* ================= LANDING ================= */

.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hotspots (Glass Buttons) - REPLACED BY QUICK SERVICES GRID */
.hotspot {
  position: absolute;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hotspot:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.hotspot i {
  font-size: 18px;
  color: #ffb300;
}

/* Positioning Hotspots */
.hotspot.taxi {
  top: 40%;
  left: 20%;
}

.hotspot.hotel {
  top: 30%;
  right: 25%;
}

.hotspot.resort {
  bottom: 35%;
  left: 30%;
}

.hotspot.holiday {
  bottom: 25%;
  right: 20%;
}

.hotspot.spiritual {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  opacity: 0.8;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  margin: 0 auto 8px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

/* ================= QUICK SERVICES (Premium & Handy!) ================= */

.quick-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding: 40px 24px;
  max-width: 1200px;
  margin: -60px auto 0;
  position: relative;
  z-index: 20;
}

.service-card-mini {
  background: #fff;
  padding: 35px 25px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #071126;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card-mini:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service-card-mini i {
  font-size: 42px;
  color: #ffb300;
  transition: transform 0.3s ease;
}

.service-card-mini:hover i {
  transform: scale(1.1);
}

.service-card-mini span {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

/* ================= WHY CHOOSE US ================= */

.why-choose {
  position: relative;
  background: #fff;
  padding: 80px 24px;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #071126;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card Styling */
.feature-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 28px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Icon Styling */
.icon-box {
  width: 80px;
  height: 80px;
  background: #fff9e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.feature-card i {
  font-size: 36px;
  color: #ffb300;
  transition: color 0.3s ease;
}

.feature-card:hover .icon-box {
  background: #ffb300;
}

.feature-card:hover i {
  color: #fff;
}

/* Text Styling */
.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #071126;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ================= FLEET SERVICES ================= */

.fleet-section {
  padding: 80px 24px;
  background: #f8faff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.fleet-card {
  background: #fff;
  border-radius: 28px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.fleet-img-box {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
}

.fleet-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #071126;
  margin-bottom: 6px;
}

.fleet-card p {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

/* ================= HOLIDAY PAGE ================= */

.page-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.holiday-hero {
  background-image: url('holiday_hero_bg.png');
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(3px);
}

.hero-overlay h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.packages-section {
  padding: 80px 24px;
  background: #fff;
}

.package-card {
  text-align: left;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
}

.package-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img img {
  transform: scale(1.1);
}

.package-card h3 {
  padding: 20px 20px 5px;
  font-size: 22px;
}

.package-card p {
  padding: 0 20px 20px;
  color: #666;
  font-size: 14px;
}

.book-pkg-btn {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px;
  background: #071126;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.book-pkg-btn:hover {
  background: #ffb300;
  color: #000;
}

/* Custom Plan Section */

.custom-plan-box {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.checkbox-group {
  margin-bottom: 24px;
  text-align: left;
}

.checkbox-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.checkbox-btn {
  cursor: pointer;
  position: relative;
}

.checkbox-btn input {
  display: none;
}

.checkbox-btn span {
  display: inline-block;
  padding: 10px 18px;
  background: #f0f0f0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.checkbox-btn input:checked+span {
  background: #071126;
  color: #fff;
  border-color: #071126;
}

.input-row {
  display: flex;
  gap: 20px;
}

.input-row .input-group {
  flex: 1;
}

textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  resize: vertical;
  font-family: inherit;
}

textarea:focus {
  border-color: #ffb300;
  outline: none;
}

/* ================= TAXI PAGE REVAMP ================= */

.taxi-hero {
  position: relative;
  min-height: 100vh;
  background: url("taxisectionbg.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
}

.taxi-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.taxi-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.taxi-text {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.taxi-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.taxi-subtext {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
}

.taxi-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.tf-item i {
  color: #ffb300;
  font-size: 20px;
}

/* Enhanced Form Card */
.taxi-form-card {
  flex: 1;
  max-width: 450px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.taxi-form-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #071126;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.form-subtitle span {
  color: #e53935;
  font-weight: 700;
}

.form-group {
  position: relative;
  margin-bottom: 16px;
}

.form-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 18px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  background: #f9f9f9;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #ffb300;
  background: #fff;
  outline: none;
}

.book-btn {
  width: 100%;
  background: #071126;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.book-btn:hover {
  background: #ffb300;
  color: #000;
}

/* Rate Section */
.rate-section {
  padding: 80px 24px;
  background: #fff;
}

.rate-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}

.rate-table th,
.rate-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.rate-table th {
  background: #f4f6f8;
  color: #071126;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.rate-table td {
  color: #444;
  font-size: 15px;
}

.rate-table tr:last-child td {
  border-bottom: none;
}

.rate-note {
  margin-top: 12px;
  font-size: 12px;
  color: #888;
  font-style: italic;
}

/* Cab Features Section */
.cab-features {
  padding: 60px 24px 80px;
  background: #f8faff;
}

/* ================= WELCOME MODAL ================= */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-align: center;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #000;
}

.modal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 8px;
  color: #071126;
}

.modal-content p {
  color: #666;
  margin-bottom: 24px;
  font-size: 15px;
}

.input-group {
  text-align: left;
  margin-bottom: 16px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  margin-left: 4px;
}

.input-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  transition: border-color 0.2s;
  background: #f9f9f9;
}

.input-group input:focus {
  border-color: #ffb300;
  background: #fff;
  outline: none;
}

.proceed-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.proceed-btn:hover {
  background: #222;
  transform: scale(1.02);
}

.proceed-btn i {
  font-size: 18px;
  color: #25D366;
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 80px 24px;
  background: #fdfdfd;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-info img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffb300;
}

.avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffb300;
}

.avatar-placeholder i {
  font-size: 32px;
  color: #999;
}

.user-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #071126;
  margin-bottom: 4px;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: #ffb300;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

/* New Hero Backgrounds */
.spiritual-hero {
  background-image: url('spiritual_hero_bg.png');
}

.resort-hero {
  background-image: url('resort_hero_bg.png');
}

.hotel-hero {
  background-image: url('hotel_hero_bg.png');
}

/* ================= FLOATING WHATSAPP ================= */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}

/* Pulsing effect */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ================= FOOTER ================= */

.footer {
  background: #071126;
  color: #fff;
  padding: 80px 24px 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffb300;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #ffb300;
  color: #071126;
  transform: translateY(-5px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffb300;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.contact-item i {
  color: #ffb300;
  font-size: 18px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: #888;
}

.dev-link {
  color: #ffb300;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.dev-link:hover {
  color: #fff;
}

/* ================= MOBILE PREMIUM UI (768px and below) ================= */

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar {
    top: 15px;
    width: 94%;
    height: 60px;
    padding: 0 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
  }

  .logo {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
    font-size: 22px;
  }

  /* Full-screen Mobile Menu Overlay */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
    display: none;
    z-index: 2000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 700;
    color: #071126;
    letter-spacing: 1px;
  }

  .navbar .connect-btn {
    display: none;
  }

  /* Bottom Navigation Bar (Handy!) */
  .bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 65px;
    background: #071126;
    border-radius: 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    transition: all 0.3s ease;
  }

  .bottom-nav-item i {
    font-size: 20px;
  }

  .bottom-nav-item.active {
    color: #ffb300;
  }

  /* Landing Page Overhaul */
  .landing {
    height: 70vh;
  }

  .hotspot {
    display: none;
    /* Hide hotspots on mobile */
  }

  /* Quick Services Grid (Mobile Adjustment) */
  .quick-services {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
    margin-top: -50px;
  }

  .service-card-mini {
    padding: 20px 15px;
    border-radius: 20px;
  }

  .service-card-mini i {
    font-size: 28px;
  }

  .service-card-mini span {
    font-size: 13px;
  }

  .service-card-mini:active {
    transform: scale(0.95);
  }

  /* Section Titles & Spacing */
  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .why-choose,
  .fleet-section,
  .testimonials,
  .packages-section {
    padding: 60px 20px;
  }

  /* Cards & Grids */
  .features-grid,
  .fleet-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card,
  .fleet-card,
  .testimonial-card {
    padding: 30px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  }

  /* Hero adjustments */
  .hero-overlay {
    padding: 25px;
    width: 90%;
  }

  .hero-overlay h1 {
    font-size: 28px;
  }

  .cab-text h1 {
    font-size: 30px;
    text-align: center;
  }

  .cab-subtext {
    text-align: center;
    font-size: 14px;
  }

  .cab-hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .cab-form-card {
    width: 100%;
    max-width: 100%;
  }

  /* Footer */
  .footer {
    padding: 60px 20px 100px;
    /* Extra padding for bottom nav */
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .social-links,
  .contact-item {
    justify-content: center;
  }

  /* Floating WhatsApp */
  .whatsapp-float {
    bottom: 100px;
    /* Move up to avoid bottom nav */
    right: 20px;
    width: 55px;
    height: 55px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links.active li {
  animation: fadeInUp 0.4s ease forwards;
}

.nav-links.active li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-links.active li:nth-child(2) {
  animation-delay: 0.15s;
}

.nav-links.active li:nth-child(3) {
  animation-delay: 0.2s;
}

.nav-links.active li:nth-child(4) {
  animation-delay: 0.25s;
}

.nav-links.active li:nth-child(5) {
  animation-delay: 0.3s;
}