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

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

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

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

/* 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;
}

/* 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;
}


/* 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;
  }
}


/* 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;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  height: 210px; /* Short height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 70, 0.65); /* Dark overlay */
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding-top: 76px;
}

.page-banner h1 {
  font-weight: 700;
  font-size: 36px;
  margin: 0;
}

.page-banner p {
  font-size: 16px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }

  .page-banner h1 {
    font-size: 26px;
  }
}