/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/* ========== Topbar & Header ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: rgb(31, 58, 80);
  color: #fff;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
}

.logo h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(217, 144, 9);
  margin-top:15px;
}

/* ========== Navigation / Links ========== */
.hamburger {
  display: none;
  font-size: 44px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navBar {
  display: block;
}

.navLinks {
  width: 100%;
  /* overflow-x: hidden; */ /* removed to allow dropdown to show */
}

.linkRight {
  display: flex;
  flex-direction: row;
  gap: 27px;
  align-items: center;
  list-style: none;
}

.linkRight a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.linkRight a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.linkRight a:hover {
  color: rgb(217, 144, 9);
}

.linkRight a:hover::after {
  width: 100%;
}

.linkRight button {
  padding: 6px 12px;
  background: rgb(217, 144, 9);
  width: 120px;
  color: black;
  border: none;
  height: 40px;
  border-top-right-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.linkRight button:hover {
  background: white;
  color: rgb(31, 58, 80);
}

/* ========== Dropdown Menu ========== */
.linkRight li.dropdown {
  position: relative; /* parent reference for absolute menu */
}

/* Dropdown appears ABOVE parent link */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* show above the link */
  left: 0;
  margin-top: 5px;
  background: white;
  min-width: 150px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: rgb(31, 58, 80);
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgb(217, 144, 9);
  color: black;
  font-weight: bold;
}


/* .linkRight li.dropdown:hover > .dropdown-menu {
  display: block;
} */

/* Desktop: show on hover */
@media (min-width: 451px) {
  .linkRight li.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* ========== Mobile / Responsive ========== */
@media (max-width: 450px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 15px;
    gap: 10px;
  }

  .logo {
    margin-left: 0;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
    margin-left: 40px;
    margin-bottom: 10px;
  }

  .navBar {
    display: none;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .navBar.active {
    display: block !important;
  }

  .linkRight {
    flex-direction: column;
    gap: 20px;
    padding: 10px 20px;
  }

  .linkRight button {
    background-color: rgb(223, 181, 104);
    color: #555;
    width: 100%;
    border-radius: 6px;
  }

  .linkRight a {
    color: #fff !important;
    font-size: 18px;
  }

  /* Mobile dropdown shows below parent (clickable) */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    background-color: rgb(31, 58, 80);
    border-radius: 0;
    box-shadow: none;
    display: none; /* hidden initially */
  }

  .dropdown-menu li a {
    background-color: rgb(223, 181, 104) !important;
    color: #555 !important;
  }

  /* Show dropdown when parent gets focus */
  .linkRight li.dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}









/* Base styles for your section */
.how-it-works {
  /* background: linear-gradient(135deg, #f7f9fc, #eaf1f8); */
  background-color: rgb(239, 154, 145);
  padding: 80px 20px;
  text-align: center;
  color: #333;
  /* font-family: "Poppins", sans-serif; */
}

/* Container starts off-screen left and invisible */
.how-it-works .container {
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(-100%);
  /* Animation setup */
  animation: slideInContainer 0.9s ease-out forwards;
  /* you can add delay if you want it to wait a bit after load */
  animation-delay: 0.2s;
}

/* Keyframes for container sliding in */
@keyframes slideInContainer {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.how-it-works h2 {
  font-size: 2.5rem;
  /* font-weight: 700; */
  margin-bottom: 40px;
  color: #1f3a50;
  position: relative;
}

.how-it-works h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background:rgb(31, 58, 80) ;
  margin: 15px auto 0;
  border-radius: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

.step {
  background: linear-gradient(145deg, #1f3a50, #29465f);
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.step:hover::before {
  transform: scale(1);
}

.step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.step-icon {
  font-size: 3rem;
  color: #ffb26b;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.step h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #ff7b54;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 1rem;
  color: #e8e8e8;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Hover glow effect */
.step:hover .step-icon {
  color: #ffe6cc;
  text-shadow: 0 0 10px rgba(255, 178, 107, 0.8);
}



/* Steps items hidden initially, slightly lower and transparent */
.how-it-works .step {
  opacity: 0;
  transform: translateY(20px);
  
  /* Animation settings (same animation name for all, but use delay for stagger) */
  animation: fadeUpStep 0.6s ease-out forwards;
}

/* Staggered delays for steps */
.how-it-works .step:nth-child(1) {
  animation-delay: 0.6s; /* container delay + some extra */
}
.how-it-works .step:nth-child(2) {
  animation-delay: 0.75s;
}
.how-it-works .step:nth-child(3) {
  animation-delay: 0.9s;
}
.how-it-works .step:nth-child(4) {
  animation-delay: 1.05s;
}

/* Keyframes for steps fade up */
@keyframes fadeUpStep {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== How It Works Section - Mobile / 450px ====== */
@media (max-width: 450px) {
  .how-it-works {
    padding: 50px 15px;
  }

  .how-it-works h2 {
    font-size: 2rem;
  }

  .how-it-works h2::after {
    width: 50px;
    height: 3px;
  }

  .steps {
    grid-template-columns:0.9fr; /* stack steps vertically */
    gap: 20px;
  }

  .step {
    padding: 25px 15px;
    border-radius: 12px;
    margin-left: 45px;
  }

  .step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .step p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}














/* ===== Sophisticated Hero Search Styles ===== */
.hero-search {
  position: relative;
  background: url('./5.jpg')no-repeat center center / cover fixed;
  background-size: 1600px 600px; /* Width: 800px, Height adjusts automatically */

  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.hero-search::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: brightness(0.7);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInScale 1s ease-out;
}

.hero-content h1 {
  font-size:3rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color:white;
}

.hero-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color:rgb(228, 159, 29);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s 0.5s ease-out forwards;
}

.hero-search-form {
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 30px 40px;
  display: inline-block;
  animation: fadeInUp 1s 0.8s ease-out forwards;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  flex: 1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.hero-search-form button {
  padding: 14px 36px;
  font-size: 1.1rem;
  width: 200px;
  color: #fff;
  background:rgb(31, 58, 80);
  border: none;
  border-top-right-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-search-form button:hover {
  background:salmon;
  color: #555;
  transform: translateY(-2px) scale(1.02);
}

/* ===== Keyframes ===== */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero Search Section - Mobile / 450px ====== */
@media (max-width: 450px) {
  .hero-search {
    height: 110vh; /* shorter hero on small screens */
    background-size: cover; /* cover the area */
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .hero-search-form {
    padding: 20px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-row {
    flex-direction: column; /* stack fields vertically */
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-group {
    min-width: 100%;
  }

  .hero-search-form button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
}












.featured-routes{
  background-color: rgb(31, 58, 80);
}
.featured-routes h2 {
  color:salmon;
  padding-top:50px;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}
.featured-routes .subtitle {
  text-align: center;
  font-size: 18px;
  color:rgb(217, 144, 9);
  margin-top: 1.5rem;
  margin-bottom: 20px;
}

/* Outer container for sliding, hides overflow */
.featured-routes .routes-grid {
  position: relative;
  overflow: hidden;
  /* optional height, or padding to contain cards */
  padding: 1rem 0;
}

/* Inner slider that moves */
.featured-routes .routes-slider {
  display: inline-flex;
  white-space: nowrap;
  /* animate sliding left continuously */
  animation: slide-left 25s linear infinite;
  padding-bottom: 50px;
}

/* Pause on hover to let user see */
.featured-routes .routes-slider:hover {
  animation-play-state: paused;
}

/* Each card */
.featured-routes .route-card {
  display: inline-block;
  margin-right: 1rem;
  border-radius: 8px;
  border: 3px solid white;
  padding: 1rem;
  min-width: 220px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
}

/* Hover effect for card */
.featured-routes .route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Image styling inside card */
.featured-routes .route-card .route-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
}

/* Info styling */
.featured-routes .route-card .route-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color:rgba(255, 255, 255, 0.901);
 
}

/* Keyframes for sliding */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}










/* ====== Why Choose Us Section ====== */
.key-benefits {
  background-color: rgb(31, 58, 80);
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.key-benefits h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color:white;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.benefits-subtitle {
  color:rgb(217, 144, 9);
  font-size: 1.1rem;
  margin-bottom: 50px;
  margin-top:30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
  margin: 0 auto;
}

.benefit-item {
  background:salmon;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
}

.benefit-item:hover{
  background-color: white;
}

.benefit-item:hover h3{
  color:#1abc9c;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(rgb(232, 25, 3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-item:hover::before {
  transform: scaleX(2);

}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.benefit-item h3 {
  font-size: 1.25rem;
  color:rgba(0, 0, 0, 0.796);
  margin-bottom: 10px;
  font-weight: 600;

}

.benefit-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Key Benefits Section - Mobile / 450px ===== */
@media (max-width: 450px) {
  .key-benefits {
    padding: 50px 15px;
  }

  .key-benefits h2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .benefits-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr; /* stack items vertically */
    gap: 20px;
  }

  .benefit-item {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .benefit-item h3 {
    font-size: 1.1rem;
  }

  .benefit-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}










/* Bus results section */
.bus-results {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f9f9f9;
}

.bus-results h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #333;
}

/* Each bus card */
.bus-card {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  grid-gap: 1rem;
  align-items: center;
  background:rgb(31, 58, 80);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Bus info block */
.bus-card .bus-info {
  /* first column */
}
.bus-card .bus-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color:salmon;
}
.bus-card .bus-info .operator,
.bus-card .bus-info .rating,
.bus-card .bus-info .distance {
  margin: 0.2rem 0;
  color:white;
  font-size: 0.95rem;
}

/* Timing block */
.bus-card .bus-timing {
  /* second column */
}
.bus-card .bus-timing p {
  margin: 0.3rem 0;
  color:white;
  font-size: 0.95rem;
}

/* Price block */
.bus-card .bus-price {
  text-align: right;
  margin-right: 80px;
}
.bus-card .bus-price .price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  color:salmon;
}
.bus-card .bus-price .currency {
  margin: 0;
  font-size: 0.9rem;
  color:salmon;
}

/* Seats / booking block */
.bus-card .bus-seats {
  text-align: right;
  margin-left: 30px;
}
.bus-card .bus-seats .seats-left {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color:rgb(217, 144, 9);
  margin-right: 15px;
}
.bus-card .bus-seats .book-now {
  background-color:white;
  width: 120px;
  font-weight: bold;
  color:rgb(31, 58, 80);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.bus-card .bus-seats .book-now:hover {
  background-color:rgb(3, 23, 39);
  color: white;
}

/* ===== Bus Results Section - Mobile / 450px ===== */
@media (max-width: 450px) {
  .bus-results {
    padding: 1.5rem 0.5rem;
  }

  .bus-results h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .bus-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .bus-card .bus-info h3 {
    font-size: 1.2rem;
  }

  .bus-card .bus-info .operator,
  .bus-card .bus-info .rating,
  .bus-card .bus-info .distance,
  .bus-card .bus-timing p {
    font-size: 0.85rem;
  }

  .bus-card .bus-price {
    text-align: left;
    margin-right: 0;
    margin-top: 5px;
  }

  .bus-card .bus-price .price {
    font-size: 1.3rem;
  }

  .bus-card .bus-price .currency {
    font-size: 0.8rem;
  }

  .bus-card .bus-seats {
    text-align: left;
    margin-left: 0;
    margin-top: 5px;
  }

  .bus-card .bus-seats .seats-left {
    font-size: 0.85rem;
    margin-right: 0;
  }

  .bus-card .bus-seats .book-now {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.95rem;
  }
}












.checkout-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  padding: 30px;
  box-sizing: border-box;
  margin-left:90px;
  border:5px solid rgb(31, 58, 80);
}

.form-step h2{
  color: salmon;
}

h2 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color:rgb(31, 58, 80);
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid salmon;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus {
  border-color: #007bff;
  outline: none;
}

#passengerForm button{
  margin-left: 170px;

}

button {
  width: 32%;
  padding: 12px;
  font-weight: bold;
  background-color:salmon;
  color:#555;
  border: none;
  border-top-right-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color:rgb(31, 58, 80);
  color: white;
}

.fare-summary {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color:white;
}

.payment-step {
  display: none;
}

.payment-step.active {
  display: block;
}






.confirmation {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color:rgb(31, 58, 80);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color:rgb(217, 144, 9);
  margin-bottom: 20px;
}

.details, .qr-code, .contact {
  margin-bottom: 20px;
}

.details h2{
  color: salmon;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: -110px;
}

.details p strong{
  color:rgba(0, 0, 0, 0.884);
}

.inform{
  margin-left:150px;
}

h2, h3 {
  color:salmon;
}

p {
  color:white;
  line-height: 1.6;
  /* margin-left: 50px; */
}

.qr-code img{
  height: 90px;
  margin: 20px 20px 20px 200px;

}

.qr-code p{
  margin-left: 150px;
}

.contact h3{
  margin-bottom: 20px;
}

.footer p{
  margin-left:50px;
}

/* ===== Checkout / Confirmation Section - Mobile / 450px ===== */
@media (max-width: 450px) {
  .checkout-section {
    padding: 15px;
    min-height: auto;
    flex-direction: column;
  }

  .form-container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 20px;
    border-width: 3px;
  }

  #passengerForm button,
  button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }

  h2, h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  label {
    font-size: 0.9rem;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select {
    font-size: 0.95rem;
    padding: 8px;
  }

  .fare-summary {
    font-size: 1rem;
    text-align: center;
  }

  .confirmation {
    max-width: 100%;
    padding: 15px;
    margin: 50px 0;
  }

  .details h2,
  .details p,
  .qr-code p,
  .contact h3,
  .footer p {
    margin-left: 0;
    text-align: center;
  }

  .qr-code img {
    margin: 20px auto;
    display: block;
    height: 70px;
  }

  .contact h3{
    margin-right:200px;
  }

  .inform {
    margin-left: 0;
  }
}











/* ===== Support / FAQ & Contact Section Styles ===== */
#support {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: start;
  padding: 60px 20px;
  background-color: salmon;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

#support .faq,
#support .contact {
  background:rgb(31, 58, 80);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
  max-width: 480px;
}

#support .faq h2,
#support .contact h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color:white;
  position: relative;
}

#support details {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

#support details[open] {
  border-color: #2563eb;
  background-color: #eff6ff;
}

#support summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

#support summary:hover {
  background-color: #f1f5f9;
}

#support summary::marker {
  /* hide default arrow */
  display: none;
}

#support summary::after {
  content: "+";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

#support details[open] summary::after {
  transform: rotate(45deg); /* becomes "×" */
}

#support details p {
  padding: 0 16px 16px;
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

#support .contact p {
  font-size: 1rem;
  color:salmon;
  margin-bottom: 16px;
}

#support .contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#support .contact li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color:white;
  margin-bottom: 12px;
}

#support .contact li::before {
  content: "📌";
  margin-right: 10px;
  color: #2563eb;
}

/* ===== Support / FAQ & Contact Section - Mobile / 450px ===== */
@media (max-width: 450px) {
  #support {
    flex-direction: column;
    gap: 20px;
    padding: 40px 10px;
  }

  #support .faq,
  #support .contact {
    max-width: 100%;
    padding: 20px;
  }

  #support .faq h2,
  #support .contact h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  #support summary {
    font-size: 1rem;
    padding: 12px 14px;
  }

  #support details p {
    font-size: 0.9rem;
    padding: 0 12px 12px;
  }

  #support .contact p,
  #support .contact li {
    font-size: 0.9rem;
  }

  #support .contact li::before {
    margin-right: 8px;
  }
}












#testimonials {
  background-color:salmon;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 40px auto;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  margin-top: -20px;
  margin-bottom: -20px;
}

h2 {
  color:rgb(31, 58, 80);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.testimonial {
  border-left: 5px solid rgb(31, 58, 80);
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.testimonial:hover {
  background-color: #e0f7fa;
}

.testimonial p {
  font-style: italic;
  color:black;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial cite {
  display: block;
  font-weight: bold;
  color: #388196;
}

@media (max-width: 450px) {
  #testimonials {
    padding: 20px;
    margin: 20px auto;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .testimonial {
    padding: 15px;
    border-left-width: 3px;
    margin-bottom: 15px;
  }

  .testimonial p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .testimonial cite {
    font-size: 0.9rem;
  }
}












/* Footer Styles */
.site-footer {
  background-color:rgb(31, 58, 80);   /* dark background */
  color: #f9f9f9;            /* light text */
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
  margin-left:100px;
}


.footer-contact{
  color:rgb(217, 144, 9);
}

.col{
  display: flex;
  flex-direction: row;
  margin-left: -50px;
  margin-top: -25px;
}

.col p{
  margin-top: 30px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-contact a {
  color: #f9f9f9;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.3s;
  /* font-weight: bold; */
}

.footer-contact a:hover {
  color: #1abc9c;  /* accent color */
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgb(217, 144, 9);
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: rgb(217, 144, 9);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: bold;
}

.footer-column ul li a:hover {
  color: #1abc9c;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #333;
  border-radius: 50%;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
  background-color: #1abc9c;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaaaaa;
}

.footer-bottom a {
  color: #cccccc;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #1abc9c;
}

/* ====== Mobile / Responsive Footer for 450px ====== */
@media (max-width: 450px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
  }

  .footer-column {
    margin-left: 0; /* remove extra left margin */
    text-align: center;
    margin-top: -20px;
  }

  .footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    margin-top: -80px;
  }

  .footer-bottom a {
    margin: 0 5px;
  }

  .col {
    flex-direction:row;
    margin-left: 0;
    margin-top: 0;
  }

  .col p {
    margin-top:30px;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
  }
}


