* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fafafa;
}

.book-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1366&q=80") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.3s ease;
}

.book-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

/* MAIN BOOKING SECTION */
.booking-main {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  gap: 40px;
  flex-wrap: wrap;
}

.booking-form,
.price-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 48%;
  box-shadow: 0 0 18px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.booking-form:hover,
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0,0,0,0.15);
}

.form-group {
  margin-bottom: 18px;
}

label {
  font-weight: 600;
}

input, select {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* BUTTONS */
.book-btn,
.pay-btn {
  width: 100%;
  padding: 14px;
  background: #d8232a;
  border: none;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.book-btn:hover,
.pay-btn:hover {
  background: #b71c23;
  transform: scale(1.03);
}

/* PRICE CARD */
.price-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
}

.total-price {
  text-align: center;
  padding: 20px;
  background: #ffe5e6;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* FAQ SECTION */
.faq-section {
  padding: 50px;
  text-align: center;
}

.faq-section h2 {
  margin-bottom: 20px;
  font-size: 35px;
  color: #d8232a;
}

.faq {
  max-width: 850px;
  margin: auto;
}

.faq-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* CONTACT CARD */
.contact-card {
  background: #d8232a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  
}

.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #fff;
  color: #d8232a;
  border-radius: 8px;
  font-weight: 600;
 
}
.contact-card a{
   text-decoration: none;
}


/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .booking-form,
  .price-card {
    width: 100%;
  }
}
