/* --------------------------------------------------------------------------
   SILIGURI CAR BOOKING & TOURS - ULTIMATE DESIGN SYSTEM
   Modern, Premium, High-Converting UI with Glassmorphism & Micro-animations
   -------------------------------------------------------------------------- */

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

:root {
  /* Brand Palette */
  --primary-dark: #0f172a;
  --primary-blue: #1e3a8a;
  --primary-blue-hover: #172554;
  --primary-blue-light: #eff6ff;

  --brand-orange: #f97316;
  --brand-orange-dark: #ea580c;
  --brand-orange-hover: #c2410c;
  --brand-orange-light: #fff7ed;

  --accent-gold: #eab308;
  --accent-gold-dark: #ca8a04;

  --status-green: #10b981;
  --status-green-hover: #059669;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Layout & Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-bg-dark: rgba(15, 23, 42, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-border-dark: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
}

/* Base Resets & Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--slate-900);
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.text-orange {
  color: var(--brand-orange);
}

.text-blue {
  color: var(--primary-blue);
}

.text-gold {
  color: var(--accent-gold-dark);
}

.text-green {
  color: var(--status-green);
}

.bg-white {
  background-color: #ffffff;
}

.bg-slate {
  background-color: var(--slate-50);
}

.bg-dark {
  background-color: var(--primary-dark);
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--brand-orange-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

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

.section-description {
  font-size: 1.1rem;
  color: var(--slate-600);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }

  .section-description {
    font-size: 0.95rem;
  }
}

/* Top Announcement Bar */
.top-bar {
  background: var(--primary-dark);
  color: var(--slate-300);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-info-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item i {
  color: var(--brand-orange);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-phone-btn,
.top-wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.top-phone-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.top-phone-btn:hover {
  background: var(--brand-orange);
  color: #ffffff;
}

.top-wp-btn {
  background: #25d366;
  color: #ffffff;
}

.top-wp-btn:hover {
  background: #128c7e;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.brand-logo img {
  /* width: 100%; */
  height: 65px;
}

.logo-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-title span {
  color: var(--brand-orange);
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--slate-700);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--brand-orange);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-hover));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.25);
  transition: var(--transition-normal);
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.35);
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--slate-800);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 4.5rem;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .header-cta-btn {
    display: none;
  }
}

/* HERO SECTION WITH GLASSMORPHIC BOOKING WIDGET */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%),
    url('../assets/img/background_hero.webp') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-section {
    padding: 3rem 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: #ffedd5;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #fdba74, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--slate-200);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin-bottom: 2.25rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f1f5f9;
}

.hero-feature-item i {
  color: var(--brand-orange);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #fb923c, var(--brand-orange-dark));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features-list {
    grid-template-columns: 1fr;
  }
}

/* DUAL TABBED BOOKING WIDGET */
.booking-widget-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  color: var(--slate-800);
  width: 450px;
  margin-left: auto;
  margin-right: 0px;
}

@media (max-width: 1000px) {
  .booking-widget-card {
    width: 100%;
  }
}

.widget-tabs-header {
  display: flex;
  background: rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid var(--slate-200);
}

.widget-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-600);
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 3px solid transparent;
}

.widget-tab-btn i {
  font-size: 1.1rem;
}

.widget-tab-btn:hover {
  color: var(--brand-orange);
}

.widget-tab-btn.active {
  color: var(--brand-orange-dark);
  background: #ffffff;
  border-bottom-color: var(--brand-orange);
}

.widget-tab-content {
  padding: 1.75rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Booking Form Elements */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group-phone.full-width {
  grid-column: span 1 !important;
}

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

  .form-group.full-width {
    grid-column: span 1;
  }
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-label i {
  color: var(--brand-orange);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--slate-800);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

select.form-control,
input[type="date"].form-control {
  cursor: pointer;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.1rem;
  padding-right: 2.25rem;
}


.widget-submit-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
  transition: var(--transition-normal);
  margin-top: 0.5rem;
}

.widget-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.45);
  background: linear-gradient(135deg, #fb923c, var(--brand-orange-dark));
}

/* FARE CALCULATOR ESTIMATE BOX */
.calc-result-box {
  margin-top: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius-md);
  display: none;
}

.calc-result-box.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.calc-route-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.calc-fares-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.calc-fare-item {
  background: #ffffff;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}

.calc-car-type {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
}

.calc-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-orange-dark);
}

/* QUICK ROUTE PILLS BAR */
.route-pills-section {
  background: #ffffff;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pills-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.pill-label {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary-blue);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-right: 0.5rem;
}

.route-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--slate-200);
  transition: var(--transition-fast);
  cursor: pointer;
}

.route-pill:hover {
  background: var(--brand-orange-light);
  color: var(--brand-orange-dark);
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}

.route-pill i {
  color: var(--brand-orange);
  font-size: 0.75rem;
}

/* FLEET SHOWCASE SECTION */
.fleet-section {
  background: #ffffff;
}

.category-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  background: var(--slate-100);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: var(--slate-200);
}

.filter-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.25);
}

/* FLEET CARDS GRID */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.car-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
}

.car-img-box {
  position: relative;
  height: 200px;
  background: var(--slate-100);
  overflow: hidden;
}

.car-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.car-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.car-rating-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #ffffff;
  color: var(--slate-800);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.car-rating-badge i {
  color: var(--accent-gold);
}

.car-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
}

.car-service-desc {
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.car-specs-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.car-spec-item {
  font-size: 0.85rem;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.car-spec-item i {
  color: var(--brand-orange);
  width: 1.1rem;
}

.car-card-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

.btn-card-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  background: #ffffff;
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.btn-card-call:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.btn-card-wp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  background: var(--status-green);
  color: #ffffff;
  border: 1.5px solid var(--status-green);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.btn-card-wp:hover {
  background: var(--status-green-hover);
  border-color: var(--status-green-hover);
}

/* TOUR PACKAGES SECTION */
.packages-section {
  background: var(--slate-50);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(30, 58, 138, 0.3);
}

.package-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.package-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.package-duration-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.package-title-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  color: #ffffff;
}

.package-title-overlay h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.package-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.package-tag {
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}

/* SHOW MORE BUTTON CONTAINER */
.show-more-container {
  text-align: center;
  margin-top: 3rem;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  background: #ffffff;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.btn-show-more:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

/* TRANSPARENT FARE MATRIX SECTION */
.fare-matrix-section {
  background: #ffffff;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #ffffff;
}

.fare-table th,
.fare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--slate-200);
}

.fare-table th {
  background: var(--primary-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fare-table tr:hover td {
  background: var(--slate-50);
}

.fare-table td.route-cell {
  font-weight: 700;
  color: var(--primary-blue);
}

.fare-table td.price-cell {
  font-weight: 800;
  color: var(--brand-orange-dark);
  font-size: 14px;
}

/* WHY CHOOSE US SECTION */
.why-us-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-box {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-orange);
}

.feature-icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem auto;
  border-radius: var(--radius-md);
  background: var(--brand-orange-light);
  color: var(--brand-orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: var(--transition-normal);
}

.feature-box:hover .feature-icon-wrapper {
  background: var(--brand-orange);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: var(--primary-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-title {
  color: #ffffff;
}

.testimonials-section .section-description {
  color: var(--slate-300);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(249, 115, 22, 0.5);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  display: flex;
  gap: 0.25rem;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--slate-200);
  font-style: italic;
  line-height: 1.6;
  flex-grow: 1;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--slate-400);
}

/* POPULAR ROUTES SEO GRID */
.popular-routes-section {
  background: #ffffff;
}

.route-category-group {
  margin-bottom: 1.5rem;
}

.route-category-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--slate-100);
}

.route-category-heading i {
  color: var(--brand-orange);
}

.routes-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .routes-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .routes-links-grid {
    grid-template-columns: 1fr;
  }
}

.route-link-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: #ffffff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-800);
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  text-align: left;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.route-link-item:hover {
  background: #f0fdf4;
  color: #15803d;
  border-color: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.2);
}

.route-link-item i:not(.wp-icon) {
  color: var(--brand-orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.route-link-item i.wp-icon {
  color: #25D366;
  font-size: 1.1rem;
  margin-left: auto;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.route-link-item:hover i.wp-icon {
  transform: scale(1.25);
}

.route-link-item .route-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}



/* FAQ ACCORDION SECTION */
.faq-section {
  background: var(--slate-50);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question-btn:hover {
  color: var(--brand-orange);
}

.faq-question-btn i {
  color: var(--brand-orange);
  transition: var(--transition-normal);
}

.faq-item.active .faq-question-btn i {
  transform: rotate(180deg);
}

.faq-answer-pane {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer-pane {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* MODAL DIALOG COMPONENT */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 550px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  background: var(--primary-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--brand-orange);
}

.modal-body {
  padding: 1.5rem;
}

/* MOBILE FLOATING CTA BAR */
.mobile-floating-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 999;
  border-top: 1px solid var(--slate-200);
}

.floating-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .mobile-floating-bar {
    display: block;
  }

  body {
    padding-bottom: 4rem;
  }
}

/* FOOTER SECTION */
.site-footer {
  background: var(--primary-dark);
  color: var(--slate-300);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 4px solid var(--brand-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--brand-orange);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item a {
  color: var(--slate-400);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link-item a:hover {
  color: var(--brand-orange);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate-300);
}

.footer-contact-item i {
  color: var(--brand-orange);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--slate-400);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--brand-orange);
  transform: translateY(-2px);
}

/* WEBHUBS CREDIT FOOTER UTILITY CLASSES */
.flex {
  display: flex;
}

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

.ml-2 {
  margin-left: 0.5rem;
}

.inline-block {
  display: inline-block;
}


.starting_css {
  font-size: 10px;
  color: #059669;
  font-weight: 500;
}