:root {
  --brand-blue: #1E3A8A;
  --brand-red: #EF4444;
  --brand-dark: #0F172A;
  --brand-light: #F8FAFC;
  --brand-border: #E5E7EB;
}

body {
  margin: 0;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-family: Arial, sans-serif;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-blue {
  color: var(--brand-blue);
}

.brand-red {
  color: var(--brand-red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.nav-link-custom {
  color: var(--brand-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav-link-custom:hover {
  color: var(--brand-red);
}

.nav-link-custom.active {
  color: var(--brand-blue);
}

/* Hero */
.hero-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.tab-btn,
.trip-btn {
  padding: 18px 24px;
  border-radius: 16px;
  color: #fff;
  background: rgba(31, 41, 55, 0.9);
  border: none;
  font-weight: 700;
}

.tab-btn.active,
.trip-btn.active {
  background: var(--brand-red);
}

.search-panel {
  background: rgba(15, 23, 42, 0.82);
}

.btn-search {
  background: var(--brand-blue);
  border: none;
}

.btn-search:hover {
  background: #17306f;
}

/* Promotions / cards */
.promo-card {
  border-radius: 24px;
  border: 1px solid var(--brand-border);
}

.section-title {
  color: var(--brand-blue);
  font-size: 2.2rem;
  font-weight: 800;
}

.offer-box {
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.offer-top {
  min-height: 240px;
  background: var(--brand-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.offer-top h3 {
  font-size: 2rem;
  font-weight: 800;
}

.offer-bottom {
  padding: 16px 18px;
  font-size: 1.6rem;
}

/* Filters / results */
.filter-box {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  overflow: hidden;
}

.result-card {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 20px;
}

.result-price {
  font-size: 2rem;
  font-weight: 800;
}

.select-btn {
  background: var(--brand-red);
  border: none;
  color: white;
  border-radius: 14px;
  padding: 12px 28px;
  font-weight: 700;
}

/* Lists */
.popular-list {
  padding-left: 18px;
}

.popular-list li {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

/* Stats */
.stats-section {
  background:
    linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.stats-number {
  color: var(--brand-red);
  font-size: 4rem;
  font-weight: 900;
}

/* Generic cards */
.benefit-card {
  background: white;
  border-left: 6px solid var(--brand-red);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.benefit-card p {
  font-size: 1.2rem;
  color: #475569;
}

/* Footer */
.site-footer {
  background: var(--brand-dark);
  color: white;
}

.site-footer h4 {
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-list a:hover {
  color: white;
}

.copyright {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.65);
}

/* About page */
.about-page {
  background: #f8fafc;
}

.about-hero {
  padding: 72px 0 36px;
}

.color-hero {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.06), rgba(239, 68, 68, 0.05));
  border-bottom: 1px solid #e5e7eb;
}

.about-hero-box {
  max-width: 980px;
}

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

.about-hero h1,
.section-head h2,
.commitment-box h2 {
  color: var(--brand-dark);
  font-weight: 900;
  line-height: 1.1;
}

.about-hero h1 {
  font-size: 62px;
  margin-bottom: 22px;
  max-width: 900px;
}

.hero-text {
  font-size: 22px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 18px;
  max-width: 950px;
}

.about-section {
  padding: 44px 0;
}

.light-section {
  background: #ffffff;
}

.commitment-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.section-head {
  margin-bottom: 30px;
}

.center-head {
  text-align: center;
}

.section-head h2 {
  font-size: 44px;
  margin: 0 0 12px;
}

.section-subtext {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
}

.about-grid {
  display: grid;
  gap: 26px;
}

.about-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-card,
.reason-card,
.commitment-box {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.info-card,
.feature-card,
.reason-card {
  padding: 30px 28px;
}

.commitment-box {
  padding: 42px 38px;
}

.info-card h2,
.feature-card h3,
.reason-card h3 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-weight: 900;
}

.info-card h2 {
  font-size: 34px;
}

.feature-card h3,
.reason-card h3 {
  font-size: 24px;
}

.info-card p,
.feature-card p,
.reason-card p,
.commitment-box p {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
}

.accent-blue {
  border-top: 6px solid var(--brand-blue);
}

.accent-red {
  border-top: 6px solid var(--brand-red);
}

.feature-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.reason-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.feature-top {
  width: 72px;
  height: 6px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.border-blue {
  background: var(--brand-blue);
}

.border-red {
  background: var(--brand-red);
}

.reason-card {
  position: relative;
  padding-left: 34px;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 8px;
  height: calc(100% - 52px);
  border-radius: 0 10px 10px 0;
}

.highlight-red::before {
  background: var(--brand-red);
}

.highlight-blue::before {
  background: var(--brand-blue);
}

.commitment-box {
  border-top: 8px solid var(--brand-blue);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.commitment-box h2 {
  font-size: 56px;
  margin: 0 0 18px;
  max-width: 1000px;
}

/* Responsive */
@media (max-width: 991px) {
  .header-inner {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 18px;
  }

  .logo-img {
    height: 56px;
  }

  .about-hero h1 {
    font-size: 46px;
  }

  .section-head h2,
  .commitment-box h2 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 19px;
  }

  .about-grid.two-col,
  .about-grid.three-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 46px 0 24px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .section-head h2,
  .commitment-box h2 {
    font-size: 30px;
  }

  .hero-text,
  .info-card p,
  .feature-card p,
  .reason-card p,
  .commitment-box p {
    font-size: 17px;
  }

  .info-card,
  .feature-card,
  .reason-card {
    padding: 24px 22px;
  }

  .commitment-box {
    padding: 28px 24px;
  }
} .small-icon {
  width: 52px;
  height: 52px;
  font-size: 22px;
  margin-bottom: 16px;
}

.reason-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  background: rgba(30, 58, 138, 0.08);
}/* ===== CONTACT PAGE ===== */
.contact-page {
  background: #f8fafc;
}

.contact-hero {
  padding: 72px 0 36px;
}

.contact-hero-box {
  max-width: 900px;
}

.contact-hero h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.contact-section {
  padding: 44px 0;
}

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

.contact-card {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--brand-dark);
}

.contact-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form .form-control {
  border-radius: 16px;
  border: 1px solid #cfd8e3;
  padding: 14px 16px;
}

.contact-form .form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.12);
}

@media (max-width: 991px) {
  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 46px 0 24px;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}/* Contact page improvements */
.card-icon {
  width: 64px;
  height: 64px;
  font-size: 28px;
  border-radius: 18px;
}

.contact-card {
  padding: 32px;
  border-radius: 26px;
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.color-hero {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.08),
    rgba(239, 68, 68, 0.08)
  );
}/* 🔥 Contact Icons Premium Style */
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

/* Individual icon colors */
.icon-location {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.icon-phone {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.icon-email {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.icon-partnership {
  background: linear-gradient(135deg, #10b981, #22c55e);
}/* FINAL FIX: Contact cards must show in 4 columns */
.contact-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  align-items: stretch;
}

.contact-card {
  width: 100% !important;
}

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

@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}/* ===== FINAL ABOUT PAGE SIZE FIX ===== */
.about-hero {
  padding: 52px 0 34px !important;
}

.about-hero h1 {
  font-size: 48px !important;
  max-width: 820px;
}

.hero-text {
  font-size: 18px !important;
  line-height: 1.65 !important;
  max-width: 850px;
}

.about-section {
  padding: 34px 0 !important;
}

.section-head h2,
.commitment-box h2 {
  font-size: 34px !important;
}

.section-subtext {
  font-size: 16px !important;
}

.info-card,
.feature-card,
.reason-card,
.commitment-box {
  padding: 24px !important;
  border-radius: 20px !important;
}

.info-card h2 {
  font-size: 26px !important;
}

.feature-card h3,
.reason-card h3 {
  font-size: 22px !important;
}

.info-card p,
.feature-card p,
.reason-card p,
.commitment-box p {
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.card-icon,
.reason-icon {
  width: 50px !important;
  height: 50px !important;
  font-size: 22px !important;
  margin-bottom: 14px !important;
}

.about-grid {
  gap: 22px !important;
}

.about-grid.two-col,
.about-grid.three-col {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.commitment-box {
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .about-hero h1 {
    font-size: 40px !important;
  }

  .section-head h2,
  .commitment-box h2 {
    font-size: 30px !important;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 32px !important;
  }

  .hero-text {
    font-size: 16px !important;
  }
}.send-btn {
  background-color: #1E3A8A;   /* brand blue */
  color: #ffffff !important;   /* make text white */
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.send-btn:hover {
  background-color: #162f6b;   /* darker on hover */
  color: #ffffff;
}/* FINAL BUTTON TEXT FIX */
.contact-form .send-btn,
.contact-form button.send-btn,
button.send-btn,
.btn-search.send-btn {
  background: #1E3A8A !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 800 !important;
  font-size: 18px !important;
}

.contact-form .send-btn:hover,
.contact-form button.send-btn:hover,
button.send-btn:hover,
.btn-search.send-btn:hover {
  background: #162f6b !important;
  color: #ffffff !important;
}/* HIDE MOBILE APPS COLUMN COMPLETELY */
.site-footer .footer-column:nth-child(3) {
  display: none;
}.footer-note {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}/* ===== HEADER STYLE ===== */
.top-header {
  background: linear-gradient(90deg, #1E3A8A, #EF4444);
  color: white;
  padding: 12px 0;
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-logo {
  height: 55px;
  background: white;
  padding: 6px;
  border-radius: 10px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-link,
.contact-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contact-link {
  background: white;
  color: #1E3A8A;
  padding: 8px 14px;
  border-radius: 20px;
}

.app-icon {
  background: white;
  color: #1E3A8A;
  padding: 8px;
  border-radius: 8px;
}/* ===== PROFESSIONAL HOME HEADER ===== */
.top-header {
  background: linear-gradient(90deg, #1E3A8A 0%, #7c3a78 55%, #EF4444 100%);
  padding: 10px 0;
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-logo {
  height: 50px;
  background: white;
  padding: 6px 10px;
  border-radius: 10px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  font-weight: 600;
}

.top-link {
  color: white;
  text-decoration: none;
}

.top-link:hover {
  color: #ffd7d7;
}

.contact-link {
  background: white;
  color: #1E3A8A;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}/* ===== HERO IMPROVEMENT ===== */
.hero-section {
  position: relative;
  padding-bottom: 120px;
}

.hero-content {
  padding-top: 80px;
}

.hero-title {
  font-size: 60px;
  font-weight: 900;
}

.hero-sub {
  font-size: 20px;
}

/* ===== BOOKING ===== */
.booking-wrapper {
  margin-top: -80px;
}

.booking-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-tabs button {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: rgba(31,41,55,0.9);
  color: white;
  font-weight: bold;
}

.booking-tabs .active {
  background: #EF4444;
}

.booking-card {
  background: rgba(15,23,42,0.9);
  padding: 20px;
  border-radius: 16px;
}

.advanced-link {
  display: inline-block;
  margin-top: 10px;
  color: #ffd7d7;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .top-actions {
    display: none;
  }

  .hero-title {
    font-size: 32px;
  }

  .booking-wrapper {
    margin-top: -60px;
  }

  .booking-tabs {
    flex-direction: column;
  }
}/* FINAL HOME PAGE FIX */
.hero-content {
  padding-top: 70px !important;
  padding-bottom: 90px !important;
}

.hero-title {
  font-size: 52px !important;
  line-height: 1.1 !important;
}

.booking-wrapper {
  margin-top: -60px !important;
}

.btn-search {
  color: #ffffff !important;
  background: #1E3A8A !important;
  font-weight: 800 !important;
}

.btn-search:hover {
  color: #ffffff !important;
  background: #162f6b !important;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 45px !important;
    padding-bottom: 50px !important;
  }

  .hero-title {
    font-size: 34px !important;
  }

  .booking-wrapper {
    margin-top: -20px !important;
  }
}/* ===== BRAND BOOST UPGRADE ===== */

/* Hero overlay stronger */
.hero-overlay {
  background: linear-gradient(
    rgba(15,23,42,0.7),
    rgba(15,23,42,0.85)
  ) !important;
}

/* Tabs (Bus / Flight / Train) */
.tab-btn {
  background: rgba(15,23,42,0.7) !important;
  border-radius: 30px !important;
  font-size: 18px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: linear-gradient(90deg, #EF4444, #ff6b6b) !important;
  box-shadow: 0 6px 20px rgba(239,68,68,0.5);
}

/* Booking Card */
.search-panel,
.booking-card {
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.95),
    rgba(30,58,138,0.85)
  ) !important;

  backdrop-filter: blur(10px);
  border-radius: 20px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Inputs */
.form-control,
.form-select {
  border-radius: 12px !important;
  padding: 14px;
}

/* Search button FIX (important) */
.btn-search {
  background: linear-gradient(90deg, #1E3A8A, #3b82f6) !important;
  color: white !important;
  font-weight: 800;
  border-radius: 12px;
}

.btn-search:hover {
  background: linear-gradient(90deg, #17306f, #2563eb) !important;
}

/* One way / round */
.trip-btn {
  background: rgba(255,255,255,0.1) !important;
  border-radius: 20px !important;
}

.trip-btn.active {
  background: #EF4444 !important;
}

/* Title stronger */
.hero-title {
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Sub text */
.hero-sub {
  opacity: 0.9;
}/* ===== HOMEPAGE PREMIUM UPGRADE ===== */

/* HERO IMPROVEMENT */
.hero-section {
  padding-bottom: 120px;
}

.hero-overlay {
  background: linear-gradient(
    rgba(15,23,42,0.6),
    rgba(15,23,42,0.85)
  );
}

.hero-section h1 {
  font-size: 54px;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.hero-section p {
  font-size: 20px;
  opacity: 0.9;
}

/* TAB BUTTONS */
.tab-btn {
  border-radius: 30px !important;
  font-size: 18px;
  background: rgba(15,23,42,0.8);
}

.tab-btn.active {
  background: linear-gradient(90deg, #EF4444, #ff6b6b);
  box-shadow: 0 6px 20px rgba(239,68,68,0.4);
}

/* SEARCH PANEL */
.search-panel {
  border-radius: 22px !important;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.95),
    rgba(30,58,138,0.85)
  );
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* INPUTS */
.form-control,
.form-select {
  border-radius: 12px !important;
  padding: 14px;
}

/* SEARCH BUTTON */
.btn-search {
  background: linear-gradient(90deg, #1E3A8A, #3b82f6) !important;
  color: #fff !important;
  font-weight: 800;
  border-radius: 12px;
}

.btn-search:hover {
  background: linear-gradient(90deg, #162f6b, #2563eb) !important;
}

/* ONE WAY / ROUND */
.trip-btn {
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
}

.trip-btn.active {
  background: #EF4444 !important;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .search-panel {
    padding: 16px !important;
  }

}/* SAFE HOMEPAGE UPGRADE FOR CURRENT WORKING INDEX */
.site-header {
  background: #ffffff !important;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08);
}

.hero-section {
  padding-bottom: 90px !important;
}

.hero-overlay {
  background: linear-gradient(
    rgba(15, 23, 42, 0.62),
    rgba(15, 23, 42, 0.86)
  ) !important;
}

.hero-section h1 {
  font-size: 52px !important;
  font-weight: 900 !important;
  text-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.search-panel {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.96),
    rgba(30, 58, 138, 0.88)
  ) !important;
  border-radius: 24px !important;
  box-shadow: 0 22px 55px rgba(0,0,0,0.35);
}

.tab-btn {
  border-radius: 20px !important;
}

.tab-btn.active,
.trip-btn.active {
  background: #EF4444 !important;
}

.btn-search {
  background: #1E3A8A !important;
  color: #ffffff !important;
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 34px !important;
  }

  .search-panel {
    padding: 18px !important;
  }
}