/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar img {
  max-height: 75px;
}

.btn-brand {
  background: #ff6a00;
  color: #fff;
  border-radius: 6px;
  padding: 8px 15px;
}

.btn-brand:hover {
  background: #ff6a00;
  color: #fff;
}

/* HERO SECTION */
.hero-slider {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

/* SLIDER */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-img.active {
  opacity: 1;
}

/* DARK OVERLAY */
.hero-slider::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 2;
}

/* HERO INFO (LEFT) */
.hero-info {
  position: absolute;
  bottom: 250px;
  left: 60px;
  color: #fff;
  z-index: 3;
  max-width: 500px;
}

.hero-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-info p {
  font-size: 16px;
}

/* ICON GRID */
.icon-grid {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.icon-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .hero-slider {
    height: auto;
  }

  .booking-form {
    position: static;
    transform: none;
    width: 90%;
    margin: 20px auto;
  }

  .hero-info {
    position: static;
    margin: 20px;
    color: #000;
  }

  .hero-slider::after {
    display: none;
  }

  .icon-grid {
    justify-content: center;
  }
}

/* Service GRID */
.services-section {
    background: #f8fafc;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.service-icon i {
    font-size: 30px;
    color: #ff6600;
}
/* Custom Outline Button */
.btn-outline-custom {
    border: 2px solid #ff6600;
    color: #ff6600;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline-custom:hover {
    background: #e07f3e;
    color: #fff;
}

.service-card:hover .service-icon {
    background: #ff6600;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #6c757d;
}

.service-highlights {
  background: #f5f5f5;
  padding: 60px 20px;
}

.service-highlights .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.highlight-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 0px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: 0.3s;
}

.highlight-card:hover {
  transform: translateY(-8px);
}

/* Top Image */
.card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

/* Icon Circle */
.icon-circle {
  width: 50px;
  height: 50px;
  background: #6a1b9a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #fff;
}

/* Title */
.highlight-card h3 {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
}

/* Description */
.highlight-card p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .service-highlights .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-highlights .container {
    grid-template-columns: 1fr;
  }
}
/* Why Choose */
.why-choose {
  position: relative;
  background: url('../img/whych.jpg') center center / cover no-repeat;
  min-height: 500px;
  width: 100%;
}
/* Dark Overlay */
.why-choose .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* black overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-booking{
  position: relative;
  background: url('../img/whych.jpg') center center / cover no-repeat;
  min-height: 100px;
  width: 100%;
}
.why-booking .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* black overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-booking .content {
  max-width: 800px;
  text-align: center;
  color: #fff;
  padding: 20px;
}
/* Content */
.why-choose .content {
  max-width: 800px;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* Subtitle */
.subtitle {
  color: #ff6a00;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Heading */
.why-choose h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Description */
.desc {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ddd;
}

/* Features List */
.features {
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
}

.features li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Button */
.btn-book {
  display: inline-block;
  margin-top: 20px;
  background: #ff6a00;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-book:hover {
  background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 26px;
  }
}

/* BOOKING FORM start*/
.booking-form {
  position: absolute;
  top: 56%;
  right: 60px;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  width: 360px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.booking-form h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: #007bff;
  border: none;
  color: #fff;
  border-radius: 6px;
}

.submit-btn:hover {
  background: #0056b3;
}

/* Row layout */
.form-group.row {
  display: flex;
  gap: 0px;
}

.form-group .half {
  width: 50%;
}
@media (max-width: 576px) {
  .form-group.row {
    flex-direction: column;
  }
  .form-group .half {
    width: 100%;
  }
}
/* Outline Button */
.outline-btn {
  padding: 12px 15px;
  border: 5px solid #ff6a00;
  background: transparent;
  color: #ff6a00;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 800;
}

.outline-btn:hover {
  background: #575323;
  color: white;
}

/* SHOW */
.form-box.active {
  opacity: 1;
  min-height: 640px; /* adjust based on form height */
  transform: translateY(0);
}

/* BOOKING FORM end*/

/* HERO INFO WRAPPER */
.hero-info {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: -60px 10px;
  padding: 20px 10px;
  text-align: center;
  color: #fff;
}

/* Watercolor Overlay */
.hero-info::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 30%, rgba(164, 153, 2, 0.65), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(225, 200, 7, 0.65), transparent 50%),
    linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,0,0,0.45));
  z-index: -1;
}

/* Clear & Premium Typography */
.hero-info h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-info p {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto 30px;
}
.icon-grid {
  display: flex;
  justify-content: center;  
  align-items: center;       
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;           
}

/* ===============================
   MOBILE HERO FIX
================================= */
@media (max-width: 768px) {

  .hero-slider {
    height: auto;
    position: relative;
  }

  .slider-wrapper {
    height: 300px; /* mobile slider height */
  }

  .hero-img {
    height: 300px;
  }

  /* Remove overlay if needed */
  .hero-slider::after {
    display: none;
  }

  /* Make hero content normal block */
  .hero-section {
    position: static;
  }

  .hero-info {
    position: static;
    text-align: center;
    padding: 30px 20px;
    max-width: 100%;
    color: #000;
  }

  .hero-info h1 {
    font-size: 24px;
  }

  .hero-info p {
    font-size: 15px;
  }

  .icon-grid {
    justify-content: center;
  }

  /* Booking form below hero info */
  .booking-form {
    position: static;
    transform: none;
    width: 90%;
    margin: 20px auto 40px;
  }

}
.hero-section {
  padding-bottom: 20px;
}