/* ============================
   Booking Page (Train/Bus/Flight Tickets)
   Mirrors the rent-a-car.html visual language:
   royal gold/maroon hero, card grid, split "why" section, booking form card.
   ============================ */

:root{
  --booking-gold: #c9a227;
  --booking-gold-dark: #a5811c;
  --booking-maroon: #7a1f2b;
  --booking-red: #b3382c;
  --booking-ink: #2b2320;
  --booking-cream: #faf6ee;
}

/* ---------- Hero ---------- */
.booking-hero{
  position: relative;
  background: #2b1c05;
  text-align: center;
  line-height: 0;
}

.booking-hero-img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.booking-hero-buttons{
  line-height: normal;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--booking-maroon) 0%, #5a1620 60%, #3d0f16 100%);
}

.booking-hero-buttons .btn-outline{
  border-color: #fff;
  color: #fff !important;
}

.btn{
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-gold{
  background: var(--booking-gold);
  color: #2b1c05 !important;
}
.btn-gold:hover{
  background: var(--booking-gold-dark);
  transform: translateY(-1px);
}

.btn-outline{
  background: transparent;
}
.btn-outline:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.btn-primary{
  background: var(--booking-maroon);
  color: #fff !important;
  width: 100%;
  cursor: pointer;
}
.btn-primary:hover{
  background: #611722;
}
.btn-primary:disabled{
  opacity: .6;
  cursor: not-allowed;
}

/* ---------- Services (Train / Flight / Bus) ---------- */
.services-section{
  padding: 70px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.services-head{
  text-align: center;
  margin-bottom: 42px;
}

.eyebrow-red{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--booking-red);
  margin-bottom: 10px;
}

.services-head h2{
  font-size: 32px;
  color: var(--booking-ink);
  margin: 0;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.service-card .thumb{
  position: relative;
  aspect-ratio: 4/3;
  background: var(--booking-cream);
}
.service-card .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card .badge{
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--booking-maroon);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

.service-card .body{
  padding: 22px 22px 24px;
}

.service-card h3{
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--booking-ink);
}

.service-card p{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #5c5148;
}

.service-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.service-tags span{
  font-size: 12px;
  background: var(--booking-cream);
  color: var(--booking-maroon);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.service-price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.service-price{
  font-size: 18px;
  font-weight: 700;
  color: var(--booking-ink);
}
.service-price span{
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #8a7f74;
}

.enquire{
  font-weight: 600;
  font-size: 14px;
  color: var(--booking-maroon);
  text-decoration: none;
}
.enquire:hover{
  text-decoration: underline;
}

/* ---------- Why Book ---------- */
.why-book-section{
  background: var(--booking-cream);
  padding: 70px 24px;
}

.why-book-inner{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.why-book-text h2{
  font-size: 30px;
  color: var(--booking-ink);
  margin: 0 0 30px;
}

.why-book-item{
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.why-book-item .ic{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--booking-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.why-book-item .ic svg{
  width: 22px;
  height: 22px;
}

.why-book-item h4{
  margin: 2px 0 6px;
  font-size: 17px;
  color: var(--booking-ink);
}
.why-book-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5c5148;
}

.why-book-image img{
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  display: block;
}

/* ---------- Booking / Enquiry form ---------- */
.booking-section{
  padding: 70px 24px 90px;
  max-width: 1180px;
  margin: 0 auto;
}

.booking-card{
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
}

.booking-info{
  background: linear-gradient(160deg, var(--booking-maroon), #4a1319);
  color: #fff;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.booking-info h2{
  font-size: 26px;
  margin: 0 0 14px;
}

.booking-info p{
  font-size: 14px;
  line-height: 1.6;
  color: #efe3d8;
  margin: 0;
}

.contact-row{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}
.contact-row svg{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--booking-gold);
}

.booking-form{
  padding: 44px 38px;
}

.booking-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}

.booking-field.full{
  grid-column: 1 / -1;
}

.booking-field label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--booking-ink);
  margin-bottom: 6px;
}

.booking-field input,
.booking-field select,
.booking-field textarea{
  width: 100%;
  border: 1px solid #ddd3c8;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  color: var(--booking-ink);
  background: #fff;
  box-sizing: border-box;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus{
  outline: none;
  border-color: var(--booking-maroon);
  box-shadow: 0 0 0 3px rgba(122,31,43,.12);
}

.booking-field textarea{
  min-height: 90px;
  resize: vertical;
}

.booking-submit{
  grid-column: 1 / -1;
  margin-top: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-book-inner{ grid-template-columns: 1fr; }
  .why-book-image{ order: -1; }
  .booking-card{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .booking-hero-img{ max-height: 320px; }
  .services-grid{ grid-template-columns: 1fr; }
  .booking-form-grid{ grid-template-columns: 1fr; }
  .booking-form, .booking-info{ padding: 30px 24px; }
}