/* ==========================================================================
   Praveen Travels - Master Stylesheet
   Fixed Package Card Image Resolution (800 x 600 px / 4:3 Aspect Ratio)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Volkhov:wght@700&display=swap');

:root {
  --topbar-bg: #2d2d2d;
  --header-bg: #ffc107; /* Warm golden-yellow navigation */
  --header-bg-gradient: linear-gradient(135deg, #ffca28 0%, #ffb300 100%);
  --nav-text: #212121;
  --nav-active: #d32f2f;
  
  --primary-orange: #ff9800;
  --primary-deep-orange: #f57c00;
  
  --btn-green: #25d366; /* WhatsApp Green */
  --btn-green-hover: #128c7e;
  
  --text-dark: #212121;
  --text-light: #ffffff;
  --text-muted: #555555;
  
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-serif: 'Volkhov', Georgia, serif;
  --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #f4f6f8;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   1. Top Contact Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--topbar-bg);
  color: #ffffff;
  padding: 8px 5%;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.top-bar a:hover {
  color: #ffca28;
}

/* --------------------------------------------------------------------------
   2. Main Header & Navigation
   -------------------------------------------------------------------------- */
.main-header {
  background: var(--header-bg-gradient);
  padding: 10px 5%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.logo-fallback-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 26px;
  color: #d32f2f;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-item a {
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
  padding: 6px 4px;
}

.nav-item a:hover,
.nav-item.active > a {
  color: var(--nav-active);
}

/* Nav Dropdown */
.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 250px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  display: none;
  flex-direction: column;
  z-index: 1000;
  border-top: 3px solid var(--primary-color, #ff5722);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #333333;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #fff8e1;
  color: #e65100;
  padding-left: 22px;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  display: flex;
}

/* --------------------------------------------------------------------------
   3. Hero Banner Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 540px;
  background-image: url('../assets/images/Banner.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 5%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(247, 160, 26, 0.96) 0%, 
    rgba(245, 155, 20, 0.92) 35%, 
    rgba(243, 150, 15, 0.75) 55%, 
    rgba(243, 150, 15, 0.2) 75%, 
    rgba(243, 150, 15, 0) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}

.hero-content {
  max-width: 680px;
  color: #ffffff;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.hero-description {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 32px;
}

.hero-description p {
  margin-bottom: 12px;
}

.btn-book-now {
  display: inline-block;
  background: linear-gradient(180deg, #76ff03 0%, #43a047 100%);
  color: #000000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   4. Quick Booking / Instant Fare Inquiry Bar
   -------------------------------------------------------------------------- */
.quick-booking-wrapper {
  max-width: 1350px;
  margin: -40px auto 40px auto;
  padding: 0 5%;
  position: relative;
  z-index: 100;
}

.quick-booking-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 24px 30px;
  border-top: 4px solid var(--primary-orange);
}

.quick-booking-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 180px;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.btn-whatsapp-submit {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* --------------------------------------------------------------------------
   5. Tour Package Cards Grid - FIXED 4:3 RESOLUTION (800x600 px)
   -------------------------------------------------------------------------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.pkg-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

/* Fixed 4:3 Aspect Ratio for Package Images (Optimal: 800 x 600 px) */
.pkg-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 220px;
  overflow: hidden;
  background-color: #fff3e0;
}

.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-img {
  transform: scale(1.06);
}

.pkg-cost-inline {
  font-size: 17px;
  font-weight: 800;
  color: #d32f2f;
  background-color: #ffebee;
  padding: 3px 10px;
  border-radius: 6px;
}

.pkg-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pkg-code-badge {
  background-color: #e3f2fd;
  color: #1565c0;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.pkg-vehicle-badge {
  font-size: 12px;
  font-weight: 600;
  color: #2e7d32;
}

.pkg-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 12px;
  line-height: 1.35;
}

.pkg-duration-row {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #444;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e0e0e0;
}

.pkg-section {
  margin-bottom: 14px;
}

.pkg-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-deep-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.pkg-text {
  font-size: 13px;
  color: #424242;
  line-height: 1.6;
}

.pkg-details-text {
  background-color: #fafafa;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 3px solid #ff9800;
  font-size: 12.5px;
}

.pkg-includes-list {
  list-style: none;
  font-size: 12.5px;
  color: #2e7d32;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.pkg-note {
  font-size: 11.5px;
  color: #757575;
  margin-bottom: 16px;
  margin-top: auto;
}

.pkg-route-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pkg-expandable-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.pkg-expandable-content.show {
  max-height: 1000px;
  opacity: 1;
  margin-bottom: 14px;
}

.pkg-km-info {
  font-size: 12.5px;
  color: #1565c0;
  background-color: #e3f2fd;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.btn-toggle-details {
  background: none;
  border: 1px solid #ff9800;
  color: #e65100;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 12px;
  width: 100%;
  transition: all 0.2s ease;
}

.btn-toggle-details:hover {
  background-color: #fff3e0;
}

.btn-card-book {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.btn-card-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Floating WhatsApp Button - Just the Logo (No background box) */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: transparent;
  width: 56px;
  height: 56px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.whatsapp-svg {
  width: 56px;
  height: 56px;
}

/* --------------------------------------------------------------------------
   6. About Us Section
   -------------------------------------------------------------------------- */
.about-section {
  background-color: #ffffff;
  padding: 0 0 80px 0;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

/* Dedicated About Us Banner - Full Uncropped View Starting Cleanly Below Header */
.about-banner-header {
  position: relative;
  width: 100%;
  background-color: #f7b731;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 45px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-banner-header picture,
.about-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  max-width: 300px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  background: #fdfdfd;
  margin: 0 auto;
}

.about-image {
  width: 100%;
  max-height: 420px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}


.about-subtitle {
  color: #b71c1c;
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 12px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.about-heading-primary {
  color: #7b1fa2;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text {
  color: #4a5568;
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-heading-secondary {
  color: #7b1fa2;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 10px;
  margin-bottom: 16px;
}

@media (max-width: 992px) {
  .quick-booking-form {
    grid-template-columns: 1fr 1fr;
  }
  .about-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 36px;
  }
  .about-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .quick-booking-form {
    grid-template-columns: 1fr;
  }
  .about-heading-primary {
    font-size: 26px;
  }
  .about-heading-secondary {
    font-size: 20px;
  }
}

/* --------------------------------------------------------------------------
   7. Professional Modern Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 5% 24px 5%;
  font-size: 14px;
  border-top: 3px solid #ff9800;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333333;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 35px;
  height: 2px;
  background-color: #ff9800;
}

.footer-brand p {
  color: #a0aec0;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 13.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffca28;
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e0;
  line-height: 1.6;
}

.footer-contact-item a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #ffca28;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #718096;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 860px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Car Rentals Page Styles
   -------------------------------------------------------------------------- */
.car-rentals-banner-header,
.pickup-drop-banner-header {
  position: relative;
  width: 100%;
  background-color: #f7b731;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 35px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.car-rentals-banner-header picture,
.car-rentals-banner-img,
.pickup-drop-banner-header picture,
.pickup-drop-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.rentals-hero {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #ffffff;
  padding: 60px 5%;
  text-align: center;
}

.rentals-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffc107;
}

.rentals-hero p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 16px;
  color: #e2e8f0;
  line-height: 1.6;
}

.rentals-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 20px 80px 20px;
}

.rentals-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rental-tab-btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.25s ease;
}

.rental-tab-btn:hover {
  border-color: #ff5722;
  color: #ff5722;
}

.rental-tab-btn.active {
  background: #ff5722;
  color: #ffffff;
  border-color: #ff5722;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
}

.rental-info-banner {
  background: #fff8e1;
  border-left: 4px solid #ffa000;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 36px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rental-info-banner h3 {
  color: #e65100;
  font-size: 18px;
  margin-bottom: 10px;
}

.rental-info-banner ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

.rental-info-banner ul li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.fleet-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid #edf2f7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.fleet-img-wrapper {
  height: 200px;
  background: #f7fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 10px;
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-img {
  transform: scale(1.05);
}

.fleet-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.fleet-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
}

.fleet-tag {
  background: #e3f2fd;
  color: #1976d2;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.fleet-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
  font-size: 13.5px;
  color: #4a5568;
}

.fleet-pricing-box {
  background: #faf5ff;
  border: 1px solid #e9d8fd;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 18px;
}

.fleet-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.fleet-price-row:last-child {
  margin-bottom: 0;
}

.price-val {
  font-weight: 700;
  color: #6b46c1;
}

.fleet-btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.fleet-btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  color: #ffffff;
}

.rentals-terms {
  background: #f7fafc;
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid #e2e8f0;
}

.rentals-terms h3 {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 16px;
}

.rentals-terms ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

.rentals-terms li {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   Tirumala Taxi Packages Page Styles (Matching Reference Design)
   -------------------------------------------------------------------------- */
.packages-banner-header {
  position: relative;
  width: 100%;
  background-color: #f7b731;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.packages-banner-header picture,
.packages-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}



.pkg-page-intro {
  max-width: 980px;
  margin: 40px auto 30px auto;
  padding: 0 20px;
  text-align: center;
}

.pkg-page-intro p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}

.pkg-call-btn-wrap {
  margin: 24px 0 36px 0;
  display: flex;
  justify-content: center;
}

.pkg-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f59e0b;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  padding: 13px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  transition: all 0.25s ease;
}

.pkg-call-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
  color: #ffffff;
}

.pkg-page-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 36px;
}

.tml-cards-grid {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .tml-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tml-cards-grid {
    grid-template-columns: 1fr;
  }
}

.tml-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.tml-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.tml-card-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f7fafc;
}

.tml-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.tml-card:hover .tml-card-img {
  transform: scale(1.04);
}

.tml-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tml-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
  min-height: 44px;
  margin-bottom: 12px;
}

.tml-code-row {
  margin-bottom: 12px;
  font-size: 14.5px;
  font-weight: 700;
  color: #993300;
}

.tml-rates-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #374151;
}

.tml-rates-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #f3f4f6;
  padding-bottom: 4px;
}

.tml-rate-price {
  color: #e02b20;
  font-weight: 700;
}

.tml-card-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  width: 100%;
}

.tml-card-details-btn {
  flex: 1;
  background: #f8fafc;
  color: #1e3a8a;
  border: 1.5px solid #cbd5e1;
  padding: 10px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.tml-card-details-btn:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #0f172a;
}

.tml-card-book-btn {
  flex: 1.3;
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.tml-card-book-btn:hover {
  background: #1eb956;
  color: #ffffff;
}

/* Info & Policy Boxes */
.tml-info-section {
  max-width: 980px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tml-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
}

.tml-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}

.tml-box ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tml-box ul li {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.55;
}

/* ==========================================================================
   MOBILE-FIRST & RESPONSIVE DESIGN SYSTEM
   Supports: Mobile (<= 480px), Phablet/Tablet (481px - 860px), Laptop/Desktop (861px+)
   ========================================================================== */

/* Hamburger Button Base (Desktop hidden) */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.mobile-nav-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}

.mobile-nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Hamburger active animation to X */
.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Tablet & Mobile Shared Breakpoint (<= 860px)
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
  /* Top Bar */
  .top-bar {
    padding: 8px 16px;
    font-size: 12px;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .top-bar a {
    gap: 5px;
  }

  /* Header & Logo */
  .main-header {
    padding: 8px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo-brand img {
    height: 48px;
  }

  /* Hamburger Toggle Display - Pushed to Complete Right */
  .mobile-nav-toggle {
    display: flex !important;
    margin-left: auto;
    position: relative;
    z-index: 1002;
    cursor: pointer;
  }

  /* Slide-Down Mobile Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0 30px 0;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s;
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
  }

  .nav-item a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    color: #1f2937;
  }

  .nav-item a:hover,
  .nav-item.active > a {
    background: #fff8e1;
    color: #e65100;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    background: #fafafa;
    padding: 4px 0;
    width: 100%;
  }

  .nav-item.has-dropdown.dropdown-open .dropdown-menu {
    display: flex;
  }

  .dropdown-menu li a {
    padding: 10px 36px;
    font-size: 13.5px;
    color: #4b5563;
  }

  .dropdown-menu li a:hover {
    padding-left: 42px;
    background: #fff3e0;
    color: #d97706;
  }

  /* Hero Section */
  .hero-section {
    min-height: 440px;
    padding: 40px 20px 70px 20px;
    background-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, 
      rgba(247, 160, 26, 0.95) 0%, 
      rgba(245, 155, 20, 0.90) 65%, 
      rgba(243, 150, 15, 0.85) 100%
    );
  }

  .hero-title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* Quick Booking Inquiry Bar */
  .quick-booking-wrapper {
    margin: -35px auto 30px auto;
    padding: 0 16px;
  }

  .quick-booking-wrapper.pickup-drop-booking {
    margin: 15px auto 35px auto;
  }

  .quick-booking-card {
    padding: 20px 18px;
  }

  .quick-booking-title {
    font-size: 16px;
  }

  .quick-booking-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quick-booking-form .form-control {
    font-size: 16px; /* Prevents auto-zoom on iOS/Android focus */
    padding: 12px 14px;
    box-sizing: border-box;
  }

  .btn-whatsapp-submit {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  /* Tour Packages Grid */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pkg-card {
    border-radius: 12px;
  }

  .pkg-body {
    padding: 18px;
  }

  /* About Page Responsive */
  .about-banner-header {
    margin-bottom: 30px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-image-wrapper {
    max-width: 260px;
  }

  .about-heading-primary {
    font-size: 24px;
  }

  .about-heading-secondary {
    font-size: 18px;
  }

  .about-text {
    font-size: 14px;
    text-align: left;
  }

  /* Car Rentals Responsive */
  .rentals-hero {
    padding: 40px 16px;
  }

  .rentals-hero h1 {
    font-size: 28px;
  }

  .rentals-hero p {
    font-size: 14px;
  }

  .rentals-container {
    padding: 30px 16px 60px 16px;
  }

  .rentals-tabs {
    gap: 10px;
    margin-bottom: 28px;
  }

  .rental-tab-btn {
    padding: 10px 18px;
    font-size: 13.5px;
  }

  .rental-info-banner {
    padding: 16px 18px;
    margin-bottom: 24px;
  }

  .rental-info-banner ul {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rentals-terms {
    padding: 20px 18px;
  }

  .rentals-terms ul {
    grid-template-columns: 1fr;
  }

  /* Banners */
  .homepage-banner-header,
  .about-banner-header,
  .packages-banner-header,
  .car-rentals-banner-header,
  .pickup-drop-banner-header,
  .contact-banner-header {
    margin-bottom: 20px;
  }

  .pkg-page-intro {
    padding: 0 16px;
    margin: 28px auto 20px auto;
  }

  .pkg-page-intro p {
    font-size: 13.5px;
  }

  .pkg-call-btn {
    font-size: 15px;
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }

  .pkg-page-heading {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .tml-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .tml-info-section {
    padding: 0 16px;
  }

  .tml-box {
    padding: 20px 18px;
  }

  /* Floating WhatsApp Button on Mobile */
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-svg {
    width: 50px;
    height: 50px;
  }
}

/* --------------------------------------------------------------------------
   Small Mobile Devices (<= 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .top-bar {
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .main-header {
    padding: 6px 12px;
  }

  .logo-brand img {
    height: 42px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 13px;
  }

  .btn-book-now {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }

  .pkg-title {
    font-size: 16.5px;
  }

  .pkg-cost-inline {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* --------------------------------------------------------------------------
   Homepage Banner Styles
   -------------------------------------------------------------------------- */
.homepage-banner-header {
  position: relative;
  width: 100%;
  background-color: #f7b731;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.homepage-banner-header picture,
.homepage-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Contact Us Page Styles
   -------------------------------------------------------------------------- */
.contact-banner-header {
  position: relative;
  width: 100%;
  background-color: #f7b731;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 35px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-banner-header picture,
.contact-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.contact-page-container {
  max-width: 1240px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.contact-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px auto;
}

.contact-intro h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.contact-intro p {
  font-size: 15.5px;
  color: #4b5563;
  line-height: 1.7;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.contact-icon-bubble {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.contact-card-link {
  font-weight: 700;
  font-size: 14px;
  color: #ea580c;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}

.contact-card-link:hover {
  color: #c2410c;
  text-decoration: underline;
}

.contact-card-link.whatsapp-color {
  color: #16a34a;
}

.contact-card-link.whatsapp-color:hover {
  color: #15803d;
}

.contact-details-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-form-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 34px 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-top: 4px solid #ea580c;
}

.contact-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.contact-form-box p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.contact-inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-inquiry-form .form-group:nth-child(5),
.contact-inquiry-form button {
  grid-column: 1 / -1;
}

.btn-contact-submit {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  margin-top: 6px;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.contact-side-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 26px;
}

.contact-side-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
}

.contact-side-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-perks-list li {
  font-size: 14px;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-details-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-inquiry-form {
    grid-template-columns: 1fr;
  }
  .contact-form-box {
    padding: 24px 18px;
  }
  .contact-intro h2 {
    font-size: 24px;
  }
  .contact-banner-header {
    margin-bottom: 20px;
  }
}

/* --------------------------------------------------------------------------
   Car Rentals Page - Screenshot Exact Style
   -------------------------------------------------------------------------- */
.cr-page-container {
  max-width: 1200px;
  margin: 20px auto 60px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.cr-page-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
}

.cr-info-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 35px;
}

.cr-info-card {
  background-color: #e5e7eb;
  border-radius: 16px;
  padding: 28px 26px;
  color: #374151;
}

.cr-info-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.cr-intro-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

.cr-info-subtitle {
  font-size: 14.5px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.cr-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cr-info-list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: #4b5563;
}

.cr-cta-row {
  text-align: center;
  margin: 30px auto 45px auto;
}

.cr-btn-call {
  display: inline-block;
  background-color: #eab308;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 36px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cr-btn-call:hover {
  background-color: #ca8a04;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Dual Side Rates Board */
.cr-rates-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
}

.cr-board-col {
  padding: 40px 35px;
}

.cr-board-local {
  background-color: #fed7aa; /* Warm Peach */
}

.cr-board-outstation {
  background-color: #fdfbf7; /* Clean Off-White / Cream */
}

.cr-board-heading {
  font-size: 20px;
  font-weight: 800;
  color: #1e1b4b; /* Deep Indigo / Navy */
  margin-bottom: 28px;
}

.cr-car-rows {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cr-car-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cr-car-thumb {
  width: 72px;
  height: 52px;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cr-car-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cr-car-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cr-car-name {
  font-size: 13.5px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.cr-car-meta {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .cr-info-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cr-rates-board {
    grid-template-columns: 1fr;
  }
  .cr-board-col {
    padding: 30px 20px;
  }
  .cr-btn-call {
    font-size: 14px;
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* --------------------------------------------------------------------------
   SEO Components: Breadcrumbs, FAQ Accordion, Services & 404 Styles
   -------------------------------------------------------------------------- */
.seo-breadcrumb-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 5%;
  margin-bottom: 24px;
}

.seo-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.seo-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-breadcrumb-list a {
  color: #ea580c;
  text-decoration: none;
  font-weight: 500;
}

.seo-breadcrumb-list a:hover {
  text-decoration: underline;
}

.seo-breadcrumb-list span[aria-current="page"] {
  color: #1e293b;
  font-weight: 600;
}

/* Service & Destination Content Container */
.seo-page-container {
  max-width: 1140px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.seo-hero-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 35px;
}

.seo-hero-box h1 {
  font-size: 34px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.25;
  margin-bottom: 16px;
}

.seo-hero-box p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 900px;
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.seo-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ea580c;
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.seo-btn-cta:hover {
  background: #c2410c;
  transform: translateY(-2px);
  color: #ffffff;
}

.seo-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.seo-btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  color: #ffffff;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 45px;
}

.seo-main-article {
  background: #ffffff;
}

.seo-main-article h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 28px;
  margin-bottom: 14px;
  border-bottom: 2px solid #fed7aa;
  padding-bottom: 8px;
}

.seo-main-article h3 {
  font-size: 18px;
  font-weight: 700;
  color: #334155;
  margin-top: 20px;
  margin-bottom: 10px;
}

.seo-main-article p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 16px;
}

.seo-main-article ul, .seo-main-article ol {
  margin: 0 0 20px 24px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

.seo-main-article li {
  margin-bottom: 6px;
}

/* Sidebar Box */
.seo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.seo-side-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 22px;
}

.seo-side-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 8px;
}

.seo-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-links-list a {
  color: #2563eb;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.seo-links-list a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

/* FAQ Accordion Component */
.seo-faq-section {
  background: #fdfbf7;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 36px 32px;
  margin: 45px 0;
}

.seo-faq-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  text-align: center;
}

.seo-faq-subtitle {
  font-size: 14.5px;
  color: #64748b;
  text-align: center;
  margin-bottom: 28px;
}

.seo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.seo-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.seo-faq-question {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.seo-faq-question::-webkit-details-marker {
  display: none;
}

.seo-faq-question::after {
  content: '▾';
  font-size: 16px;
  color: #ea580c;
  transition: transform 0.2s ease;
}

.seo-faq-item[open] .seo-faq-question::after {
  transform: rotate(180deg);
}

.seo-faq-answer {
  padding: 0 20px 18px 20px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

/* 404 Page Styling */
.seo-404-container {
  max-width: 780px;
  margin: 60px auto 100px auto;
  padding: 0 20px;
  text-align: center;
}

.seo-404-badge {
  font-size: 88px;
  font-weight: 900;
  color: #ea580c;
  line-height: 1;
  margin-bottom: 12px;
}

.seo-404-container h1 {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.seo-404-container p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 35px;
  line-height: 1.6;
}

.seo-404-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.seo-404-link-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 18px 14px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.seo-404-link-card:hover {
  border-color: #ea580c;
  background: #fff7ed;
  color: #ea580c;
  transform: translateY(-3px);
}

@media (max-width: 860px) {
  .seo-content-grid {
    grid-template-columns: 1fr;
  }
  .seo-hero-box {
    padding: 26px 20px;
  }
  .seo-hero-box h1 {
    font-size: 26px;
  }
  .seo-404-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PHASE 5: ACCESSIBILITY (WCAG) & PERFORMANCE ENHANCEMENTS
   ============================================================ */

/* 1. Skip to main content link for keyboard & screen reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: #1a237e;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
  font-size: 14px;
  z-index: 99999;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: top 0.2s ease-in-out;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #ff9800;
  outline-offset: 2px;
}

/* 2. Global Accessible Focus Indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #ff9800 !important;
  outline-offset: 2px !important;
}

/* 3. Respect User Motion Preferences (WCAG 2.2.2 / 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .whatsapp-float,
  .btn-whatsapp-submit,
  .seo-btn-cta,
  .seo-btn-whatsapp,
  .tml-card-book-btn {
    transform: none !important;
    transition: none !important;
  }
}
