/* =========================================
   Global Styles
========================================= */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f6f7f9;
  color: #222;
}

h1, h2, h3 {
  font-weight: bold;
}

section {
  padding: 40px 20px;
}

/* =========================================
   Header Navigation
========================================= */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  background: #fdf6e8;
  border-bottom: 3px solid #cc0000;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar a {
  margin-left: 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #444;
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.navbar a:hover {
  color: #cc0000;
  border-bottom: 3px solid #cc0000;
}

.logo {
  width: 130px;
}

/* =========================================
   Hero Banner
========================================= */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 40px;
  background: white;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
}

.hero-text {
  width: 50%;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 36px;
  color: #cc0000;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-img {
  width: 29%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* CTA Button */
.cta-btn {
  background: #cc0000;
  padding: 14px 28px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #a30000;
}

/* =========================================
   Welcome Section
========================================= */

.welcome {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.welcome h2 {
  font-size: 30px;
  color: #cc0000;
}

.welcome p {
  margin-top: 10px;
  font-size: 18px;
}

.contact-highlight {
  margin-top: 25px;
  background: #ffe6e6;
  padding: 15px 20px;
  border-radius: 12px;
  border-left: 6px solid #cc0000;
}

.phone-number {
  font-size: 20px;
  color: #cc0000;
}

/* =========================================
   About Section
========================================= */

.about {
  background: white;
  max-width: 850px;
  margin: 40px auto;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about h2 {
  color: #cc0000;
  text-align: center;
  margin-bottom: 15px;
}

.about p {
  font-size: 18px;
  line-height: 1.6em;
}

/* =========================================
   Pricing Section
========================================= */

.prices {
  text-align: center;
  background: white;
  max-width: 700px;
  margin: 40px auto;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.prices h2 {
  color: #cc0000;
  font-size: 28px;
  margin-bottom: 15px;
}

.prices ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prices li {
  font-size: 18px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.prices li:last-child {
  border-bottom: none;
}

/* =========================================
   Features Section
========================================= */

.features {
  text-align: center;
}

.features h2 {
  font-size: 28px;
  color: #cc0000;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.feature-card {
  width: 300px;
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.feature-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.feature-card h3 {
  color: #cc0000;
}

/* =========================================
   Reviews Section
========================================= */

.reviews {
  background: white;
  padding: 50px 25px;
  margin-top: 40px;
}

.reviews h2 {
  text-align: center;
  color: #cc0000;
  font-size: 28px;
  margin-bottom: 30px;
}

.review-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.review-card {
  background: #f9f9f9;
  width: 300px;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-top: 4px solid #cc0000;
}

.review-stars {
  color: #ffcc00;
  font-size: 20px;
  margin-bottom: 8px;
}

.review-card h3 {
  margin-bottom: 5px;
  font-size: 20px;
  color: #333;
}

.review-card p {
  font-size: 16px;
  line-height: 1.4em;
}

/* =========================================
   Footer
========================================= */

footer {
  background: #cc0000;
  padding: 20px;
  text-align: center;
  color: white;
  margin-top: 40px;
  font-size: 16px;
}

/* =========================================
   Responsive Layout
========================================= */

@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .hero-text, .hero-img {
    width: 100%;
  }

  .navbar a {
    font-size: 16px;
    margin-left: 15px;
  }

  .feature-card {
    width: 90%;
  }

  .review-card {
    width: 90%;
  }

  .hero-text h1 {
    font-size: 28px;
  }
}
/* =========================================
   Booking Form Layout
========================================= */

.booking-container {
  max-width: 850px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-container label {
  font-weight: bold;
  margin-top: 15px;
  display: block;
}

.booking-container input,
.booking-container select,
.booking-container textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.booking-container textarea {
  height: 100px;
  resize: none;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row > div {
  flex: 1;
}

.delivery-label {
  margin: 15px 0 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

#deliveryAddressContainer {
  margin-top: 10px;
  padding: 15px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 10px;
}

/* Submit Button */
.booking-container button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  font-size: 18px;
  background: #cc0000;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.booking-container button:hover {
  background: #a30000;
}

/* Terms & Conditions Modal */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-wrapper {
  background: #ffffff;
  width: 90%;
  max-width: 650px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  max-height: 80vh;
  overflow: hidden;
}

.modal-scroll {
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 10px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #eee;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.tnc-check a {
  color: #cc0000;
  text-decoration: underline;
  cursor: pointer;
}
