   /* =========================================================
   GoaaTaxi - Main Styles (Unified Theme + Mobile Optimized)
   ========================================================= */

:root {
  --primary: #00a86b;
  --primary-dark: #008f5c;
  --primary-light: #e6fbf0;
  --secondary: #2a3442;
  --secondary-light: #f3f4f6;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --light: #f9fafb;
  --gray: #6b7280;
  --border: #e5e7eb;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #e2e8f0;
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.15), transparent 25%),
              radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 20%),
              radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.12), transparent 20%),
              linear-gradient(135deg, #05070f 0%, #07101d 30%, #0c1830 60%, #090d18 100%);
  line-height: 1.6;
  min-height: 100vh;
  background-attachment: fixed;
}

a {
  color: #8b5cf6;
  text-decoration: none;
}

a:hover {
  color: #38bdf8;
}

img {
  max-width: 100%;
}

/* ------------------ Utility ------------------ */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-padding {
  padding: 60px 0;
  background: rgba(6, 10, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.bg-light {
  background: rgba(10, 18, 35, 0.96) !important;
}

.text-center {
  text-align: center;
}

.ms-auto {
  margin-left: auto;
}

.mt-3 {
  margin-top: 16px;
}

.ms-lg-3 {
  margin-left: 16px;
}

/* ------------------ Top Bar ------------------ */

.top-bar {
  background: rgba(5, 6, 18, 0.98);
  color: #e2e8f0;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--primary);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.top-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 8px;
}

.top-bar-right a {
  color: #fff;
  font-size: 16px;
}

/* ------------------ Header / Navbar ------------------ */

.header {
  background: rgb(119, 158, 234);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  z-index: 1020;
}

.navbar-brand .logo {
  height: 60px;
}

.navbar-nav {
  gap: 12px;
}

.nav-link {
  color: #1b1e22;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link.active,
.nav-link:hover {
  color: #201818;
  background: rgba(139, 92, 246, 0.18);
}

.book-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.btn {
  background: var(--primary);
  color: #fff;
  border: none;
}

.book-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ------------------ Search Suggestions ------------------ */

.search-container {
  position: relative;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 28, 0.98);
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  display: none;
  z-index: 9999;
  max-height: 300px;
  overflow-y: auto;
}

.suggestion {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, color 0.25s ease;
  color: #e5e7eb;
}

.suggestion:hover {
  background: rgba(124, 58, 246, 0.18);
  color: #fff;
}

.nav-search-wrapper {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.nav-search-wrapper .search-container {
  width: 260px;
}

.nav-search-wrapper input {
  width: 100%;
  border-radius: 8px;
  border: 5px solid rgba(0, 0, 0, 0.95);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: border-color 0.25s ease;
}

.nav-search-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.nav-search-wrapper input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.7);
}

.floating-contact-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  padding-right: 8px;
}

.floating-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 12px;
  border-radius: 32px 0 0 32px;
  background: rgba(10, 60, 40, 0.92);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: twinkle-glow 2.5s ease-in-out infinite;
}

.floating-contact-btn:hover {
  transform: translateX(-4px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.24);
}

.floating-contact-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-contact-btn.call {
  background: linear-gradient(135deg, #0062cc, #004085);
}

.floating-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@keyframes twinkle-glow {
  0%, 100% {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18), 0 0 12px rgba(255, 255, 255, 0.04);
  }
  50% {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), 0 0 18px rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 768px) {
  .nav-search-wrapper {
    display: block;
    width: 100%;
    padding: 10px 20px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    order: -1;
  }

  .nav-search-wrapper .search-container {
    width: 100%;
  }

  .nav-search-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.95);
  }

  .nav-search-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .navbar-nav {
    margin-top: 10px;
  }

  .floating-contact-buttons {
    right: 8px;
    top: auto;
    bottom: 14%;
    transform: none;
  }

  .floating-contact-btn {
    padding: 10px 12px 10px 10px;
  }
}

@media (max-width: 480px) {
  .nav-search-wrapper {
    padding: 8px 16px 6px;
  }

  .floating-contact-buttons {
    bottom: 12%;
  }

  .floating-contact-btn {
    gap: 8px;
    padding: 10px 10px 10px 10px;
    font-size: 14px;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .nav-search-wrapper {
    padding: 10px 16px;
  }

  .floating-contact-buttons {
    bottom: 14%;
  }

  .floating-contact-btn {
    gap: 8px;
    padding: 10px 10px 10px 10px;
    font-size: 14px;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* ------------------ Hero Section ------------------ */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b1021, #12223a);
  color: #fff;
  padding: 80px 20px 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("assets/images/hero.webp") center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.hero-content span.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.hero-highlights i {
  color: var(--primary);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-gt {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee, #f97316);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.24);
}

.btn-primary-gt:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(139, 92, 246, 0.28);
}

.btn-outline-gt {
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  border: 2px solid rgba(139, 92, 246, 0.65);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-outline-gt:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-trust div {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.hero-trust strong {
  font-size: 20px;
}

.hero-trust span {
  color: #cbd5e1;
  font-size: 13px;
}

/* ------------------ Booking Card ------------------ */

.hero-booking {
  position: relative;
}

.booking-card {
  background: rgba(8, 12, 28, 0.96);
  color: #e5e7eb;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.booking-subtext {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}

.booking-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 10px;
  text-align: center;
}

/* ------------------ Form Elements ------------------ */

.form-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-select,
.form-control {
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
}

.form-select:focus,
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.15);
}

/* ------------------ Why Choose Us / Features ------------------ */

.section-heading h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-heading p {
  color: var(--gray);
  font-size: 15px;
}

.feature-box {
  background: rgba(10, 14, 33, 0.95);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.feature-box i {
  font-size: 28px;
  color: #7c3aed;
  margin-bottom: 12px;
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* ------------------ Goa Sightseeing Tours Section ------------------ */

.tour-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 10px;
}

.section-subtitle {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.tour-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tour-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.tour-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.north-badge,
.south-badge {
  background: var(--primary);
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: rgba(8, 12, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: rgba(10, 14, 33, 0.96);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  font-size: 14px;
}

.tour-button:hover {
  background: rgba(18, 24, 51, 0.98);
  transform: translateY(-1px);
}

.north-border,
.south-border {
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.north-border:hover,
.south-border:hover {
  background: rgba(99, 102, 241, 0.12);
}

.tour-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tour-icon {
  font-size: 22px;
}

.tour-name {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
}

.tour-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.popular-tag {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}

.peaceful-tag {
  background: rgba(59, 130, 246, 0.14);
  color: #93c5fd;
}

.tour-places-count {
  font-size: 12px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 10px;
  border-radius: 999px;
}

.tour-plus {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  margin-left: 12px;
  color: #f8fafc;
  background: rgba(139, 92, 246, 0.2);
}

.north-plus,
.south-plus {
  background: rgba(139, 92, 246, 0.16);
}

/* Expandable Tour Details */

.tour-details {
  display: none;
  background: rgba(7, 12, 24, 0.95);
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(139, 92, 246, 0.22);
}

.tour-item.show .tour-details {
  display: block;
}

.tour-spots-grid {
  display: grid;
  grid-template-columns: 1;
  gap: 10px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .tour-spots-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tour-spot {
  display: flex;
  align-items: start;
  gap: 8px;
  background: rgba(14, 20, 40, 0.95);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.tour-spot-icon {
  color: #a78bfa;
  font-size: 14px;
  margin-top: 2px;
}

.tour-spot-info p {
  margin: 0;
}

.tour-spot-name {
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
}

.tour-spot-desc {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.tour-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  text-align: center;
  font-size: 13px;
}

/* ------------------ Hourly Taxi Packages Section ------------------ */

.hourly-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.hourly-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.hourly-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hourly-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.hourly-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  min-height: 90px;
}

.hourly-info {
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex: 1;
}

.hourly-hours {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.hourly-km {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.2;
}

.hourly-prices {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hourly-badge-inner {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 8px;
  margin-bottom: 4px;
}

.hourly-badge-popular {
  background: var(--accent-light);
  color: var(--accent);
}

.hourly-badge-bestvalue {
  background: var(--primary-light);
  color: var(--primary);
}

.hourly-price-item {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.hourly-price-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hourly-price-value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.hourly-body {
  background: #fff;
  padding: 14px 16px;
}

.hourly-book-btn {
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 10px 14px;
}

.hourly-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 16px 0 0;
}

/* ------------------ Footer ------------------ */

.footer {
  background: rgb(119, 158, 234);
  color: #e5e7eb;
  padding: 60px 0 24px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-text {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #000000;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #000000;
}

.footer-contact i {
  color: var(--primary);
}

.footer-contact a {
  color: #000000;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(2, 2, 2, 0.12);
}

.footer-copyright {
  font-size: 13px;
  color: #ced3dc;
  margin: 0;
}

.footer-legal {
  font-size: 13px;
  color: #d0d3d6;
  margin: 0;
}

.footer-legal a {
  color: #ffffff;
  margin-left: 8px;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-map {
  width: 100%;
  margin-top: 15px;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ------------------ Right-Side Live Booking Popup ------------------ */

.live-booking-popup {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 320px;
  max-width: 90%;
  z-index: 10000;
  display: none;
  transform: translateX(120%);
  transition: transform 0.5s ease;
}

.live-booking-popup.show {
  display: block;
  transform: translateX(0);
}

.live-booking-popup-content {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 12px;
  align-items: start;
}

.live-booking-popup-icon {
  font-size: 24px;
  color: var(--primary);
  margin-top: 2px;
}

.live-booking-popup-text {
  flex: 1;
}

.live-booking-popup-message {
  font-size: 14px;
  color: #333;
  margin: 0 0 12px;
  line-height: 1.4;
}

.live-booking-popup-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.live-booking-popup-actions .btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

/* ===========================
Mobile Optimizations
=========================== */

@media (max-width: 992px) {
  .section-padding {
    padding: 50px 0;
  }

  .hero-section {
    padding: 70px 20px 90px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .hourly-title {
    font-size: 26px;
  }

  .hourly-header {
    padding: 12px 14px;
  }

  .hourly-card {
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }

  .container {
    padding: 0 12px;
  }

  .hero-section {
    padding: 60px 16px 80px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .tour-title,
  .hourly-title {
    font-size: 24px;
  }

  .hourly-subtitle {
    font-size: 13px;
  }

  /* Hourly cards: more compact on mobile */
  .hourly-card {
    border-radius: 10px;
  }

  .hourly-header {
    padding: 12px 12px;
    min-height: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hourly-info {
    gap: 8px;
  }

  .hourly-hours {
    font-size: 16px;
  }

  .hourly-km {
    font-size: 12px;
  }

  .hourly-prices {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .hourly-price-item {
    width: 100%;
  }

  .hourly-price-value {
    font-size: 16px;
  }

  .hourly-body {
    padding: 12px;
  }

  .hourly-book-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hourly-note {
    font-size: 11px;
  }

  /* Tour sections */
  .section-title {
    font-size: 22px;
  }

  .tour-button {
    padding: 12px 14px;
    font-size: 13px;
  }

  .tour-name {
    font-size: 13px;
  }

  .tour-spot-name {
    font-size: 12px;
  }

  .tour-spot-desc {
    font-size: 11px;
  }

  .tour-book-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-text,
  .footer-links a,
  .footer-contact li {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-legal {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .hourly-title {
    font-size: 22px;
  }

  .hourly-subtitle {
    font-size: 12px;
  }

  .hourly-hours {
    font-size: 15px;
  }

  .hourly-km {
    font-size: 11px;
  }

  .hourly-price-value {
    font-size: 15px;
  }

  .hourly-badge-inner {
    font-size: 10px;
  }

  .tour-button {
    padding: 10px 12px;
    font-size: 12px;
  }

  .tour-name {
    font-size: 12px;
  }

  .tour-icon {
    font-size: 18px;
  }

  .tour-spot-name {
    font-size: 11px;
  }

  .tour-spot-desc {
    font-size: 10px;
  }

  .tour-book-btn {
    font-size: 11px;
    padding: 7px 10px;
  }
}

/* ===========================
Customer Reviews Section
=========================== */

.reviews-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.reviews-title {
  font-size: 28px;
  font-weight: 800;
  color: #eef2fa;
  margin: 0 0 10px;
}

.reviews-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px var(--shadow);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.star {
  color: var(--accent);
  font-size: 16px;
}

.review-verified {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
}

.review-text {
  font-size: 14px;
  color: #374151;
  margin: 0 0 14px;
  line-height: 1.5;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.review-city {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.review-book-btn {
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 10px 14px;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .reviews-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .reviews-title {
    font-size: 24px;
  }

  .reviews-subtitle {
    font-size: 13px;
  }

  .review-card {
    padding: 16px;
  }

  .review-text {
    font-size: 13px;
  }

  .review-name {
    font-size: 13px;
  }

  .review-city {
    font-size: 11px;
  }

  .review-book-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 22px;
  }

  .reviews-subtitle {
    font-size: 12px;
  }

  .review-card {
    padding: 14px;
  }

  .review-text {
    font-size: 12px;
  }

  .review-name {
    font-size: 12px;
  }

  .review-city {
    font-size: 10px;
  }

  .review-book-btn {
    font-size: 11px;
    padding: 7px 10px;
  }
}


/* ===========================
Popular Routes Section
=========================== */

.routes-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.routes-title {
  font-size: 28px;
  font-weight: 800;
  color: #fdfdfd;
  margin: 0 0 10px;
}

.routes-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.route-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: #111827;
  height: 100%;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px var(--shadow);
  border-color: var(--primary);
}

.route-name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 10px;
  line-height: 1.4;
}

.route-action {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

/* Hover effect with subtle green tint */
.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.route-card {
  position: relative;
  overflow: hidden;
}

.route-card:hover::before {
  opacity: 0.04;
}

@media (max-width: 992px) {
  .routes-title {
    font-size: 26px;
  }

  .route-card {
    padding: 12px 14px;
  }

  .route-name {
    font-size: 13px;
  }

  .route-action {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .routes-title {
    font-size: 24px;
  }

  .routes-subtitle {
    font-size: 13px;
  }

  .route-card {
    padding: 12px;
  }

  .route-name {
    font-size: 13px;
  }

  .route-action {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .routes-title {
    font-size: 22px;
  }

  .routes-subtitle {
    font-size: 12px;
  }

  .route-card {
    padding: 10px;
  }

  .route-name {
    font-size: 12px;
  }

  .route-action {
    font-size: 10px;
  }
}

/* ===========================
Airport Taxi Service Section
=========================== */

.airport-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.airport-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.airport-subtitle {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.airport-card {
  background: #01183edb;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px var(--shadow);
}

.airport-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #fdfdfd;
  margin: 0 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.airport-route-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.airport-route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.airport-route-item:last-child {
  border-bottom: none;
}

.airport-route-name {
  font-size: 13px;
  font-weight: 600;
  color: #fefeff;
}

.airport-route-btn {
  padding: 8px 12px;
  font-size: 12px;
}

@media (max-width: 992px) {
  .airport-title {
    font-size: 26px;
  }

  .airport-section-title {
    font-size: 17px;
  }

  .airport-route-name {
    font-size: 12px;
  }

  .airport-route-btn {
    font-size: 11px;
    padding: 7px 10px;
  }
}

@media (max-width: 768px) {
  .airport-title {
    font-size: 24px;
  }

  .airport-subtitle {
    font-size: 13px;
  }

  .airport-card {
    padding: 16px;
  }

  .airport-section-title {
    font-size: 16px;
  }

  .airport-route-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .airport-route-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .airport-title {
    font-size: 22px;
  }

  .airport-subtitle {
    font-size: 12px;
  }

  .airport-section-title {
    font-size: 15px;
  }

  .airport-route-name {
    font-size: 12px;
  }

  .airport-route-btn {
    font-size: 11px;
    padding: 6px 8px;
  }
}


/* ===========================
Railway Station Taxi Section
=========================== */

.railway-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.railway-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.railway-subtitle {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  max-width: 480px;
}

.railway-route-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.railway-route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.railway-route-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow);
  border-color: var(--primary);
}

.railway-route-name {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}

.railway-route-btn {
  padding: 8px 12px;
  font-size: 12px;
}

@media (max-width: 992px) {
  .railway-title {
    font-size: 26px;
  }

  .railway-route-name {
    font-size: 12px;
  }

  .railway-route-btn {
    font-size: 11px;
    padding: 7px 10px;
  }

  .railway-route-item {
    padding: 8px 10px;
  }
}

@media (max-width: 768px) {
  .railway-title {
    font-size: 24px;
  }

  .railway-subtitle {
    font-size: 13px;
  }

  .railway-route-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .railway-route-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .railway-title {
    font-size: 22px;
  }

  .railway-subtitle {
    font-size: 12px;
  }

  .railway-route-name {
    font-size: 12px;
  }

  .railway-route-btn {
    font-size: 11px;
    padding: 6px 8px;
  }

  .railway-route-item {
    padding: 8px;
  }
}

/* ===========================
North–South & Outstation Sections
=========================== */

.northsouth-badge,
.outstation-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.northsouth-title,
.outstation-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.northsouth-subtitle,
.outstation-subtitle {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  max-width: 480px;
}

/* Route cards (used in both sections) */
.route-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: #111827;
  height: 100%;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px var(--shadow);
  border-color: var(--primary);
}

.route-name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 10px;
  line-height: 1.4;
}

.route-action {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 992px) {
  .northsouth-title,
  .outstation-title {
    font-size: 26px;
  }

  .route-name {
    font-size: 13px;
  }

  .route-action {
    font-size: 11px;
  }

  .route-card {
    padding: 12px 14px;
  }
}

@media (max-width: 768px) {
  .northsouth-title,
  .outstation-title {
    font-size: 24px;
  }

  .northsouth-subtitle,
  .outstation-subtitle {
    font-size: 13px;
  }

  .route-card {
    padding: 12px;
  }

  .route-name {
    font-size: 13px;
  }

  .route-action {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .northsouth-title,
  .outstation-title {
    font-size: 22px;
  }

  .northsouth-subtitle,
  .outstation-subtitle {
    font-size: 12px;
  }

  .route-card {
    padding: 10px;
  }

  .route-name {
    font-size: 12px;
  }

  .route-action {
    font-size: 10px;
  }
}

/* ===========================
Airport Transfer & Calangute Routes Sections
=========================== */

.airport-transfer-badge,
.calangute-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.airport-transfer-title,
.calangute-title {
  font-size: 28px;
  font-weight: 800;
  color: #f7f8fa;
  margin: 0 0 8px;
}

.airport-transfer-subtitle,
.calangute-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
}

/* Route cards (shared with other sections) */
.route-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: #111827;
  height: 100%;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px var(--shadow);
  border-color: var(--primary);
}

.route-name {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 10px;
  line-height: 1.4;
}

.route-action {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 992px) {
  .airport-transfer-title,
  .calangute-title {
    font-size: 26px;
  }

  .route-name {
    font-size: 13px;
  }

  .route-action {
    font-size: 11px;
  }

  .route-card {
    padding: 12px 14px;
  }
}

@media (max-width: 768px) {
  .airport-transfer-title,
  .calangute-title {
    font-size: 24px;
  }

  .airport-transfer-subtitle,
  .calangute-subtitle {
    font-size: 13px;
  }

  .route-card {
    padding: 12px;
  }

  .route-name {
    font-size: 13px;
  }

  .route-action {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .airport-transfer-title,
  .calangute-title {
    font-size: 22px;
  }

  .airport-transfer-subtitle,
  .calangute-subtitle {
    font-size: 12px;
  }

  .route-card {
    padding: 10px;
  }

  .route-name {
    font-size: 12px;
  }

  .route-action {
    font-size: 10px;
  }
}

/* ===========================
Candolim & Baga Sections
=========================== */

.candolim-badge,
.baga-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.candolim-title,
.baga-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.candolim-subtitle,
.baga-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
}

/* Responsive tweaks (if not already covered by global section rules) */
@media (max-width: 992px) {
  .candolim-title,
  .baga-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .candolim-title,
  .baga-title {
    font-size: 24px;
  }

  .candolim-subtitle,
  .baga-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .candolim-title,
  .baga-title {
    font-size: 22px;
  }

  .candolim-subtitle,
  .baga-subtitle {
    font-size: 12px;
  }
}
/* ===========================
Anjuna & Vagator Sections
=========================== */

.anjuna-badge,
.vagator-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.anjuna-title,
.vagator-title {
  font-size: 28px;
  font-weight: 800;
  color: #f8f9fa;
  margin: 0 0 8px;
}

.anjuna-subtitle,
.vagator-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
}

/* Responsive tweaks (if not already covered by global section rules) */
@media (max-width: 992px) {
  .anjuna-title,
  .vagator-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .anjuna-title,
  .vagator-title {
    font-size: 24px;
  }

  .anjuna-subtitle,
  .vagator-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .anjuna-title,
  .vagator-title {
    font-size: 22px;
  }

  .anjuna-subtitle,
  .vagator-subtitle {
    font-size: 12px;
  }
}

/* ===========================
Palolem & Patnem Sections
=========================== */

.palolem-badge,
.patnem-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.palolem-title,
.patnem-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.palolem-subtitle,
.patnem-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
}

/* Responsive tweaks (if not already covered by global section rules) */
@media (max-width: 992px) {
  .palolem-title,
  .patnem-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .palolem-title,
  .patnem-title {
    font-size: 24px;
  }

  .palolem-subtitle,
  .patnem-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .palolem-title,
  .patnem-title {
    font-size: 22px;
  }

  .palolem-subtitle,
  .patnem-subtitle {
    font-size: 12px;
  }
}

/* ===========================
Agonda & Majorda Sections
=========================== */

.agonda-badge,
.majorda-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.agonda-title,
.majorda-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.agonda-subtitle,
.majorda-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
}

/* Responsive tweaks (if not already covered by global section rules) */
@media (max-width: 992px) {
  .agonda-title,
  .majorda-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .agonda-title,
  .majorda-title {
    font-size: 24px;
  }

  .agonda-subtitle,
  .majorda-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .agonda-title,
  .majorda-title {
    font-size: 22px;
  }

  .agonda-subtitle,
  .majorda-subtitle {
    font-size: 12px;
  }
}

/* ===========================
Utorda, Colva, Varca, Benaulim & Betalbatim
=========================== */

.utorda-badge,
.colva-badge,
.varca-badge,
.benaulim-badge,
.betalbatim-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.utorda-title,
.colva-title,
.varca-title,
.benaulim-title,
.betalbatim-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
}

.utorda-subtitle,
.colva-subtitle,
.varca-subtitle,
.benaulim-subtitle,
.betalbatim-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
}

@media (max-width: 992px) {
  .utorda-title,
  .colva-title,
  .varca-title,
  .benaulim-title,
  .betalbatim-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .utorda-title,
  .colva-title,
  .varca-title,
  .benaulim-title,
  .betalbatim-title {
    font-size: 24px;
  }

  .utorda-subtitle,
  .colva-subtitle,
  .varca-subtitle,
  .benaulim-subtitle,
  .betalbatim-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .utorda-title,
  .colva-title,
  .varca-title,
  .benaulim-title,
  .betalbatim-title {
    font-size: 22px;
  }

  .utorda-subtitle,
  .colva-subtitle,
  .varca-subtitle,
  .benaulim-subtitle,
  .betalbatim-subtitle {
    font-size: 12px;
  }
}

/* ===========================
   FAQ Section
   =========================== */

#faq {
  background: #ffffff;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-question-text {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  padding-right: 16px;
  flex: 1;
}

.faq-question-icon {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question-icon {
  transform: rotate(45deg); /* turns + into + styled like + */
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 14px 16px;
  }

  .faq-question-text {
    font-size: 13px;
  }

  .faq-answer {
    padding: 0 16px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 12px 14px;
  }

  .faq-question-text {
    font-size: 12px;
  }

  .faq-answer {
    padding: 0 14px 12px;
    font-size: 12px;
  }
}



/* ===========================
  vahicle section
   =========================== */
 

  #vehicles {
    padding: 5rem 0;
    background: var(--background);
  }

  .container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
  }

  .text-center {
    text-align: center;
  }

  .max-w-3xl {
    max-width: 48rem;
  }

  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .mb-16 {
    margin-bottom: 4rem;
  }

  .mb-8 {
    margin-bottom: 2rem;
  }

  .text-primary {
    color: var(--primary);
  }

  .text-foreground {
    color: var(--foreground);
  }

  .text-muted-foreground {
    color: var(--muted-foreground);
  }

  .font-semibold {
    font-weight: 600;
  }

  .font-bold {
    font-weight: 700;
  }

  .text-sm {
    font-size: 0.875rem;
  }

  .text-lg {
    font-size: 1.125rem;
  }

  .text-xl {
    font-size: 1.25rem;
  }

  .text-2xl {
    font-size: 1.75rem;
  }

  .text-3xl {
    font-size: 2rem;
  }

  .uppercase {
    text-transform: uppercase;
  }

  .tracking-wider {
    letter-spacing: 0.12em;
  }

  .mt-2 {
    margin-top: 0.5rem;
  }

  .mb-4 {
    margin-bottom: 1rem;
  }

  .fleet-trust {
    max-width: 760px;
    margin: 0 auto 2.2rem;
    text-align: center;
  }

  .fleet-mini-title {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.06);
  }

  .fleet-trust-line {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--muted-foreground);
  }

  .fleet-trust-line span {
    display: inline-block;
    margin: 0 0.55rem;
    color: var(--primary);
    font-weight: 700;
  }

  .grid {
    display: grid;
    gap: 1.5rem;
  }

  .vehicle-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .vehicle-card {
    position: relative;
    background: var(--card);
    color: var(--card-foreground);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(219, 228, 238, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
  }

  .vehicle-card.featured {
    border-color: rgba(245, 158, 11, 0.55);
  }

  .vehicle-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.25);
  }

  .vehicle-image-wrap {
    height: 168px;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
  }

  .vehicle-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .vehicle-content {
    padding: 1.25rem;
  }

  .vehicle-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: var(--foreground);
  }

  .vehicle-specs,
  .vehicle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
  }

  .vehicle-specs li,
  .vehicle-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--muted-foreground);
  }

  .vehicle-specs li {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }

  .vehicle-features li {
    font-size: 0.82rem;
    margin-bottom: 0.45rem;
  }

  .icon-dot,
  .icon-check {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }

  .icon-dot {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
  }

  .icon-check {
    color: var(--accent);
    font-size: 0.95rem;
  }

  .vehicle-price {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-bottom: 1rem;
  }

  .vehicle-price small {
    display: block;
    font-size: 0.78rem;
    color: var(--muted-foreground);
    margin-bottom: 0.2rem;
  }

  .vehicle-price strong {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
  }

  .vehicle-note {
    margin: 0 0 1rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.8rem;
    text-align: center;
    color: var(--muted-foreground);
    background: linear-gradient(135deg, rgb(139, 92, 246), rgb(34, 211, 238), rgb(249, 115, 22));
    border-radius: 12px;
  }

  .vehicle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 46px;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: var(--whatsapp);
    color: var(--whatsapp-foreground);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
  }

  .vehicle-button:hover {
    background: #1fb958;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  }

  .vehicle-button:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.28);
    outline-offset: 3px;
  }

  .vehicle-button-icon {
    font-size: 1rem;
    line-height: 1;
  }

  @media (min-width: 768px) {
    .vehicle-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .text-3xl {
      font-size: 2.4rem;
    }
  }

  @media (min-width: 1100px) {
    .vehicle-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    #vehicles {
      padding: 4rem 0;
    }

    .fleet-mini-title {
      font-size: 0.76rem;
      padding: 0.55rem 0.9rem;
    }

    .fleet-trust-line {
      font-size: 0.92rem;
      line-height: 1.9;
    }

    .fleet-trust-line span {
      margin: 0 0.3rem;
    }

    .vehicle-image-wrap {
      height: 156px;
    }

    .vehicle-content {
      padding: 1rem;
    }

    .vehicle-title {
      font-size: 1.18rem;
    }

    .vehicle-price strong {
      font-size: 1.5rem;
    }
  }

  /* ===========================
Our Services Section
=========================== */

#services {
  background: var(--light);
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px var(--shadow);
  border-color: var(--primary);
}

.service-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.service-body {
  padding: 14px 16px 16px;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.service-text {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .service-image {
    height: 170px;
  }

  .service-title {
    font-size: 15px;
  }

  .service-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .service-image {
    height: 160px;
  }

  .service-title {
    font-size: 14px;
  }

  .service-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 150px;
  }

  .service-title {
    font-size: 13px;
  }

  .service-text {
    font-size: 12px;
  }
}

