/* ===== BOOKING SECTION ===== */
.booking-container {
  width: 80%;
  margin: auto;

  background: linear-gradient(to bottom, #0b0b0b, #111);
  padding: 100px 0;

  border-top: 1px solid #222;
  border-bottom: 1px solid #222;

  color: #fff;
}

/* ===== SERVICE ROW ===== */
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #161616;
  border: 1px solid #222;
  border-radius: 10px;

  padding: 20px;
  margin-bottom: 15px;

  transition: all 0.3s ease;
}

/* HOVER */
.service-row:hover {
  background: #1c1c1c;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* TEXT */
.service-info h3 {
  margin: 0;
  color: #fff;
  transition: 0.3s;
}

.service-info p {
  color: #aaa;
}

.service-meta {
  text-align: right;
  color: #ddd;
}

/* OPTIONAL TITLE HOVER */
.service-row:hover h3 {
  color: #3a6cf4; /* matches gallery accent */
}

/* ===== BUTTON ===== */
.book-btn {
  background: #0f5c6e;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  margin-left: 20px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

/* BUTTON HOVER */
.book-btn:hover {
  background: #0c4a57;
  transform: scale(1.05);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  /* Container spacing */
  .booking-container {
    width: 90%;
    padding: 60px 0;
  }

  /* Stack service row */
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Service info full width */
  .service-info {
    width: 100%;
  }

  /* Move price + button below */
  .service-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Button full width feel */
  .book-btn {
    margin-left: 0;
    padding: 10px 18px;
    font-size: 14px;
  }

  /* Titles slightly smaller */
  .service-info h3 {
    font-size: 18px;
  }

  .service-info p {
    font-size: 13px;
  }
}