/* ==========================================================================
   PATEL TRAVELS - BUS RENTAL MUMBAI (busrentalmumbai.com)
   TravelBus Clean White & Deep Navy Theme with Vibrant Golden-Yellow CTAs
   ========================================================================== */

:root {
  --bg-body: #ffffff;
  --bg-surface: #f8fafc;
  --bg-ice: #f0f7ff;
  --bg-card: #ffffff;
  
  --navy-deep: #0b1528;
  --navy-dark: #0f1e36;
  --navy-primary: #152642;
  --navy-light: #243b61;
  
  --yellow-primary: #ffb703;
  --yellow-hover: #f59e0b;
  --yellow-light: #fff3cc;
  --yellow-glow: rgba(255, 183, 3, 0.4);
  
  --emerald-accent: #10b981;
  --blue-accent: #0284c7;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-card: rgba(15, 30, 54, 0.08);
  --border-hover: rgba(2, 132, 199, 0.35);
  
  --shadow-sm: 0 2px 8px rgba(15, 30, 54, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 30, 54, 0.07);
  --shadow-lg: 0 16px 40px rgba(15, 30, 54, 0.1);
  --shadow-float: 0 20px 50px rgba(15, 30, 54, 0.16);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy-dark);
  font-weight: 800;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

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

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Universal Golden-Yellow CTA Button (Used for ALL Get Quote & Booking CTAs)
   ========================================================================== */
.btn-yellow,
.btn-get-quote,
.fleet-card-footer .btn-book-bus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow-primary);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--yellow-glow);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-yellow:hover,
.btn-get-quote:hover,
.fleet-card-footer .btn-book-bus:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
  color: var(--navy-dark);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy-dark);
  border: 1.5px solid var(--border-light);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-navy:hover {
  border-color: var(--navy-dark);
  background: var(--bg-ice);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-accent);
  margin-bottom: 8px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-head.text-left {
  text-align: left;
  margin: 0 0 30px;
}

.section-title {
  font-size: 34px;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Header & Navigation (Clean White Theme)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(15, 30, 54, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.brand-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}



.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -0.3px;
}

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

.brand-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

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

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-dark);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--yellow-primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy-dark);
}

.header-phone svg {
  color: var(--blue-accent);
}



/* ==========================================================================
   Hero Section with Scenic Highway & Floating 1-Row Search Bar
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 560px;
  background: linear-gradient(90deg, rgba(11, 21, 40, 0.88) 0%, rgba(15, 30, 54, 0.72) 50%, rgba(15, 30, 54, 0.45) 100%),
              url('assets/images/scenic-highway-hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 90px;
  color: #ffffff;
}

.hero-content {
  max-width: 650px;
  margin-bottom: 45px;
}

.hero-eyebrow {
  font-size: 30px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #ffb703 !important;
  margin-bottom: 10px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
  display: inline-block;
  line-height: 1.25 !important;
}

.hero-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 14px !important;
  opacity: 0.95;
}

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

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  max-width: 580px;
}

/* Floating 1-Row Search & Quote Bar */
.hero-search-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.search-form-row {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

.search-field-col {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 6px 12px;
  border-right: 1px solid var(--border-light);
}

.search-field-col:last-of-type {
  border-right: none;
}

.search-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-input {
  border: none;
  background: transparent;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-dark);
  outline: none;
  width: 100%;
}

.search-input::placeholder {
  color: var(--text-light);
  font-weight: 500;
}

/* ==========================================================================
   4 Pillars Trust Strip
   ========================================================================== */
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-ice);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   1-Row Interactive Quote Calculator Section
   ========================================================================== */
.calc-section {
  padding: 60px 0;
  background: var(--bg-ice);
  border-bottom: 1px solid var(--border-light);
}

.calc-card-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-light);
}

.calc-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr auto;
  gap: 18px;
  align-items: center;
}

.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-field-group label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.calc-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  outline: none;
  transition: var(--transition);
}

.calc-select:focus {
  border-color: var(--blue-accent);
  background: #ffffff;
}

.calc-result-box {
  background: var(--bg-ice);
  border: 1px dashed var(--blue-accent);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
}

.calc-result-box .est-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.calc-result-box .est-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy-dark);
}

/* ==========================================================================
   Fleet Section (Clean White Cards with Seat Filter Pills)
   ========================================================================== */
.fleet-section {
  padding: 75px 0;
  background: #ffffff;
}

.fleet-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.fleet-pill {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  color: var(--navy-dark);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.fleet-pill.active,
.fleet-pill:hover {
  background: var(--navy-dark);
  color: #ffffff;
  border-color: var(--navy-dark);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.fleet-img-box {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--bg-surface);
}

.fleet-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-img-box img {
  transform: scale(1.06);
}

.fleet-capacity-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 30, 54, 0.85);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.fleet-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-card-body h3 {
  font-size: 17.5px;
  margin-bottom: 10px;
}

.fleet-features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.fleet-features-list span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fleet-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.fleet-price-tag {
  display: flex;
  flex-direction: column;
}

.fleet-price-tag .from-text {
  font-size: 11px;
  color: var(--text-muted);
}

.fleet-price-tag .amount {
  font-size: 16.5px;
  font-weight: 900;
  color: var(--navy-dark);
}

/* ==========================================================================
   Why Choose Us & Stats
   ========================================================================== */
.why-section {
  padding: 70px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.why-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-ice);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px;
}

.stat-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Travel Ecosystem & Occasions Hub (SEO Targeted)
   ========================================================================== */
.occasions-section {
  padding: 75px 0;
  background: #ffffff;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.occasion-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.occasion-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-md);
}

.occasion-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.occasion-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.occasion-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.occasion-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   Comparison Section (Bus vs Train vs Cabs)
   ========================================================================== */
.comparison-section {
  padding: 75px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.comparison-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.comp-table th {
  background: var(--navy-dark);
  color: #ffffff;
  font-weight: 800;
}

.comp-table tr:hover td {
  background: var(--bg-ice);
}

.comp-badge-highlight {
  color: var(--emerald-accent);
  font-weight: 800;
}

/* ==========================================================================
   Popular Destinations
   ========================================================================== */
.destinations-section {
  padding: 75px 0;
  background: #ffffff;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.dest-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.dest-img-box {
  height: 140px;
  overflow: hidden;
}

.dest-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.dest-body {
  padding: 14px;
}

.dest-body h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.dest-body span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Customer Reviews (Clean White Cards on Navy Background)
   ========================================================================== */
.reviews-section {
  padding: 75px 0;
  background: var(--navy-deep);
  color: #ffffff;
}

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

.reviews-section .section-subtitle {
  color: var(--text-light);
}

.reviews-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card-white {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}

.reviewer-info h4 {
  font-size: 15px;
  color: var(--navy-dark);
}

.reviewer-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.review-stars {
  color: #f59e0b;
  font-size: 14px;
}

.review-card-white p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-body);
  font-style: italic;
}

/* ==========================================================================
   Bus Rental Guides FAQ Section (10 Guide Questions)
   ========================================================================== */
.faq-section {
  padding: 75px 0;
  background: #ffffff;
}

.faq-accordion-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-chevron {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ==========================================================================
   Pre-Footer CTA Banner ("Planning a Group Trip?")
   ========================================================================== */
.pre-footer-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: #ffffff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-banner-text h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-banner-text p {
  font-size: 15px;
  color: var(--text-light);
}

.cta-action-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cursive-doodle {
  font-family: 'Segoe Script', cursive, sans-serif;
  font-size: 17px;
  color: var(--yellow-primary);
  transform: rotate(-6deg);
}

/* ==========================================================================
   Fixed "🚍 Get Quote" WhatsApp Button (Bottom Right)
   ========================================================================== */


.fixed-quote-btn:hover {
  transform: scale(1.06) translateY(-3px);
  background: var(--yellow-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  color: var(--navy-dark);
}

@keyframes pulse-quote {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   Footer (Deep Midnight Navy)
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 45px;
}

.footer-brand h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 13.5px;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--yellow-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */
@media (max-width: 1024px) {
  .search-form-row {
    grid-template-columns: 1fr 1fr;
  }
  .search-field-col {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .calc-grid-row {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-row-grid {
    grid-template-columns: 1fr;
  }
  .why-split-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .header-phone {
    display: none;
  }
  
  .hero-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 14px !important;
  opacity: 0.95;
}
  .search-form-row {
    grid-template-columns: 1fr;
  }
  .calc-grid-row {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .occasions-grid {
    grid-template-columns: 1fr;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .why-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   Page Loading Effect (Brand Logo + Name + Loading Row Effect)
   ========================================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0b1528;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
}



.loader-bus-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


  50% { transform: scale(1.06); box-shadow: 0 0 30px rgba(255, 183, 3, 0.6); }
}

.loader-brand-title {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.loader-brand-title span {
  color: var(--yellow-primary);
}

.loader-brand-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 22px;
}

.loader-progress-track {
  width: 220px;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f59e0b, #ffb703, #fde047);
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.8);
  border-radius: 999px;
  animation: loadProgressRow 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadProgressRow {
  0% { width: 0%; }
  50% { width: 68%; }
  100% { width: 100%; }
}

/* ==========================================================================
   Real Bus Logo in Header
   ========================================================================== */


/* ==========================================================================
   Premium Animated Mobile Menu Toggler & Drawer
   ========================================================================== */


.mobile-toggle-btn:hover {
  border-color: var(--navy-dark);
  background: var(--bg-surface);
}



.mobile-toggle-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 10000;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px 30px;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 21, 40, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.mobile-drawer-links a {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-links a:hover {
  color: var(--blue-accent);
  padding-left: 6px;
}

/* ==========================================================================
   Testimonials Auto-Moving Marquee Track & Dots Carousel
   ========================================================================== */
.reviews-marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 15px 0 10px;
  width: 100%;
}

.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollMarquee 42s linear infinite;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.google-review-card {
  width: 360px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: var(--transition);
}

.google-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.google-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name-box h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
}

.reviewer-name-box span {
  font-size: 11.5px;
  color: var(--text-muted);
}

.google-badge-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-star-row {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-trip-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-ice);
  color: var(--blue-accent);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.review-quote-p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.review-verified-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Dots Carousel Navigation */
.testimonial-dots-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
  width: 24px;
  border-radius: 999px;
  background: var(--yellow-primary);
}

/* ==========================================================================
   Fixed Floating WhatsApp Button (Replacing Get Quote)
   ========================================================================== */


.fixed-whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-float-ripple {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.8;
  animation: pulse-whatsapp-ripple 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes pulse-whatsapp-ripple {
  0% { transform: scale(0.95); opacity: 0.9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   Below Footer SEO Keywords Hub (80+ Links in 6 Columns)
   ========================================================================== */
.seo-keywords-hub {
  background: #080f1d;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 55px 0 35px;
}

.seo-hub-header {
  margin-bottom: 32px;
  text-align: center;
}

.seo-hub-header h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}

.seo-hub-header p {
  font-size: 13.5px;
  color: var(--text-light);
  max-width: 780px;
  margin: 0 auto;
}

.seo-hub-columns-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.seo-kw-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.3);
  padding-bottom: 6px;
}

.seo-kw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.seo-kw-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  display: block;
  line-height: 1.4;
  transition: var(--transition);
}

.seo-kw-link:hover {
  color: var(--yellow-primary);
  transform: translateX(3px);
}

/* ==========================================================================
   Enhanced Mobile Responsiveness
   ========================================================================== */
@media (max-width: 1200px) {
  .seo-hub-columns-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-subtitle {
    display: none;
  }
  .header-actions .btn-yellow {
    display: none;
  }
  .header-phone {
    display: none;
  }
  
  .hero-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 14px !important;
  opacity: 0.95;
}
  .hero-eyebrow {
  font-size: 30px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #ffb703 !important;
  margin-bottom: 10px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
  display: inline-block;
  line-height: 1.25 !important;
}
  .seo-hub-columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: inset -10px 0 10px -10px rgba(0,0,0,0.15);
  }
  .comp-table {
    min-width: 620px;
  }
}

@media (max-width: 480px) {
  .seo-hub-columns-6 {
    grid-template-columns: 1fr;
  }
  .hero-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 14px !important;
  opacity: 0.95;
}
  .hero-eyebrow {
  font-size: 30px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #ffb703 !important;
  margin-bottom: 10px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
  display: inline-block;
  line-height: 1.25 !important;
}
}


/* ==========================================================================
   Logo & Brand Styling (Transparent Bus Icon, Close Gap, Premium Colors)
   ========================================================================== */
.brand-logo-area {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-real-bus-img {
  width: auto !important;
  height: auto !important;
  max-height: 32px !important;
  object-fit: contain !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 5px rgba(15, 30, 54, 0.18));
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 21px;
  font-weight: 900;
  color: #0f1e36;
  letter-spacing: -0.4px;
  line-height: 1.1;
  display: block;
}

.brand-title span {
  color: #f59e0b;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

/* ==========================================================================
   Preloader Bus Icon (Clean Transparent, No Yellow Circle)
   ========================================================================== */
.loader-bus-badge {
  width: 96px;
  height: 56px;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  animation: pulse-loader-logo 1.8s infinite ease-in-out;
}

.loader-bus-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 183, 3, 0.6));
}

@keyframes pulse-loader-logo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ==========================================================================
   Hero Eyebrow (Larger) & Hero Title (Smaller)
   ========================================================================== */
.hero-eyebrow {
  font-size: 30px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #ffb703 !important;
  margin-bottom: 10px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
  display: inline-block;
  line-height: 1.25 !important;
}

.hero-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 14px !important;
  opacity: 0.95;
}

.hero-title span {
  color: #ffb703 !important;
}

/* ==========================================================================
   Mobile Toggler (Clean, Reliable, Professional SVG Button)
   ========================================================================== */
.mobile-toggle-btn {
  display: none;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #0f1e36;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 10001;
  flex-shrink: 0;
}

.mobile-toggle-btn:hover,
.mobile-toggle-btn.active {
  background: var(--yellow-primary);
  border-color: var(--yellow-primary);
  color: #0f1e36;
}

/* ==========================================================================
   Dual Floating Action Dock (Dialer on Top, WhatsApp on Bottom)
   ========================================================================== */
.floating-actions-dock {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999999;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-action-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
}

.floating-action-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.btn-floating-dialer {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 2px solid #ffffff;
}

.ring-dialer {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #0284c7;
  opacity: 0.8;
  animation: pulseFloatingRing 2.4s infinite ease-out;
  pointer-events: none;
}

.btn-floating-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.ring-whatsapp {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.8;
  animation: pulseFloatingRing 2.2s infinite ease-out 0.4s;
  pointer-events: none;
}

@keyframes pulseFloatingRing {
  0% { transform: scale(0.95); opacity: 0.85; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  .hero-title {
    font-size: 19px !important;
    line-height: 1.3 !important;
  }
  .mobile-toggle-btn {
    display: flex !important;
  }
  .brand-subtitle {
    display: block !important;
    font-size: 8.5px !important;
    letter-spacing: 0.4px !important;
  }
  .brand-title {
    font-size: 18px !important;
  }
  .floating-actions-dock {
    bottom: 20px !important;
    right: 16px !important;
    gap: 10px !important;
  }
  .floating-action-btn {
    width: 52px !important;
    height: 52px !important;
  }
}

/* Mobile Drawer Header & Close Button */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-drawer-close {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: #0f1e36;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.mobile-drawer-close:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #ef4444;
}

@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: flex !important;
  }
  .header-phone {
    display: none !important;
  }
}


/* ==========================================================================
   High-Contrast Explicit Styling for Transparent Comparison Section
   ========================================================================== */
.comparison-section {
  padding: 75px 0 !important;
  background: #f8fafc !important;
  color: #0f1e36 !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  position: relative !important;
}

.comparison-section .section-tag {
  color: #0284c7 !important;
  font-weight: 800 !important;
}

.comparison-section .section-title {
  color: #0f1e36 !important;
}

.comparison-section .section-title span {
  color: #0284c7 !important;
}

.comparison-section .section-subtitle {
  color: #475569 !important;
}

.comparison-table-wrapper {
  background: #ffffff !important;
  border-radius: 14px !important;
  border: 1px solid #cbd5e1 !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  box-shadow: 0 4px 20px rgba(15, 30, 54, 0.08) !important;
  margin-bottom: 30px !important;
}

.comp-table {
  width: 100% !important;
  border-collapse: collapse !important;
  text-align: left !important;
}

.comp-table th {
  background: #0f1e36 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 16px 20px !important;
  border-bottom: 2px solid #0284c7 !important;
}

.comp-table td {
  padding: 16px 20px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  font-size: 14px !important;
  color: #334155 !important;
  background: #ffffff !important;
}

.comp-table td strong {
  color: #0f1e36 !important;
  font-weight: 700 !important;
}

.comp-table tr:hover td {
  background: #f1f5f9 !important;
}

.comp-badge-highlight {
  color: #059669 !important;
  font-weight: 800 !important;
  background: #ecfdf5 !important;
}


/* ==========================================================================
   Moving Testimonials Infinite Marquee & Card Dimensions
   ========================================================================== */
.reviews-section {
  padding: 75px 0 60px !important;
  background: #0b1528 !important;
  color: #ffffff !important;
  overflow: hidden !important;
}

.reviews-marquee-wrapper {
  position: relative !important;
  overflow: hidden !important;
  padding: 10px 0 20px !important;
  width: 100% !important;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important;
}

.reviews-marquee-track {
  display: flex !important;
  gap: 24px !important;
  width: max-content !important;
  animation: scrollMarquee 42s linear infinite !important;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
  animation-play-state: paused !important;
}

.reviews-marquee-track .review-card-white {
  width: 360px !important;
  max-width: 85vw !important;
  flex-shrink: 0 !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  padding: 24px !important;
  color: #1e293b !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

.reviews-marquee-track .review-card-white p {
  color: #475569 !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
}

.reviews-marquee-track .reviewer-info h4 {
  color: #0f1e36 !important;
  font-size: 15px !important;
}

.reviews-marquee-track .reviewer-info span {
  color: #64748b !important;
  font-size: 12px !important;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Custom Bus Emblem Logo Styling */
.brand-real-bus-img {
  width: auto !important;
  height: auto !important;
  max-height: 44px !important;
  max-width: 60px !important;
  object-fit: contain !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 6px rgba(15, 30, 54, 0.2)) !important;
  display: block;
}

.loader-bus-badge {
  width: auto !important;
  height: auto !important;
  max-height: 90px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 auto 16px !important;
}

.loader-bus-badge img {
  max-height: 80px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25)) !important;
}

/* Minimalist Occasions Grid Styling */
.occasions-minimal-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}

.occasion-minimal-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 18px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  min-height: 125px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  cursor: pointer;
}

.occasion-minimal-card:hover {
  transform: translateY(-4px) !important;
  border-color: #f59e0b !important;
  box-shadow: 0 8px 20px rgba(15, 30, 54, 0.1) !important;
}

.occasion-minimal-card .occasion-icon {
  font-size: 26px !important;
  margin-bottom: 8px !important;
}

.occasion-minimal-card h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0f1e36 !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
}

.occasion-minimal-card .occasion-link {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #0284c7 !important;
  margin-top: auto !important;
}

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

@media (max-width: 480px) {
  .occasions-minimal-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}
