/* ==== GLOBAL STYLES ==== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #222;
}

/* ==== HEADER ==== */
header {
  background: #1e293b;
  color: #fff;
  text-align: center;
  padding: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* ==== SEARCH BAR ==== */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  padding: 1rem;
  gap: 0.8rem;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

select, button {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  background: #2563eb;
  color: white;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

button:hover {
  background: #1d4ed8;
}

/* ==== CONTAINER ==== */
.container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* ==== CAB SECTION THEMES ==== */
.cab-section {
  padding: 40px;
  border-radius: 16px;
  margin: 30px auto;
  max-width: 1100px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.outstation {
  background-image: url('images/outstation-bg.jpg');
}

.airport {
  background-image: url('images/airport-bg.jpg');
}

/* ==== DISCOUNT TAG ==== */
.discount-tag {
  background: #ff8c00;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 6px;
  font-weight: 600;
  color: white;
}

/* ==== BUTTONS ==== */
.btn {
  background: #ff6f3c;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16px;
}
.btn:hover {
  background: #e65c2a;
}

/* ==== CAB GRID ==== */
.cab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

/* ==== CAB CARD ==== */
.cab-card {
  background: rgba(255,255,255,0.95);
  color: #222;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cab-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.cab-info {
  padding: 10px 15px;
}

.cab-info h2 {
  font-size: 18px;
  margin: 0;
}

.tag {
  font-size: 12px;
  background: #ff6f3c;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.details p {
  margin: 4px 0;
  font-size: 14px;
  color: #555;
}

/* ==== PRICE SECTION ==== */
.price-section {
  background: #f4f4f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #ff6f3c;
}

/* ==== BOOK BUTTON ==== */
.book-btn {
  background: #16a34a;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #15803d;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .cab-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
