/* Extra Services — Light Theme */
.extra-services {
  background-color: #f9f9f9;
  color: #222222;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.mb-4, .my-4 {
 overflow-x: auto;
}

.extra-services .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-box h3 {
  font-size: 1.4rem;
  color: #FFD700; /* gold accent */
  margin-bottom: 15px;
}

.service-box p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.service-icon {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 20px;
}

/* Hover effect */
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Responsive: 3 columns on desktop */
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}




.form-check-input {
    width: 15px;
    height: 15px;
}
.customer-page .customer-body {
    padding-top: 150px;
}





/* ===== Rooms Section ===== */
.rooms-section {
  padding: 60px 20px;
  text-align: center;
}

/* Section Header */
.section-header h2 {
  font-size: 80px;
  margin: 10px 0 40px;
  color: #222;
  font-weight: bold;
  line-height: 1.1;
}

.section-header p {
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Responsive heading */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 42px;
  }
}

/* ===== Rooms Grid ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Room Card */
.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover Zoom on Image */
.room-card img:hover {
  transform: scale(1.05);
}

/* Room Title */
.room-card h3 {
  font-weight: 700; /* bold */
  font-size: 22px;
  margin: 15px 0 12px;
  color: #222;
  text-align: center;
}

/* ===== Book Now Button ===== */
.book-button-custom {
  display: inline-block;
  padding: 14px 28px;
  background-color: #bead8e; /* primary color */
  color: #fff;
  font-weight: 700; /* bold */
  font-size: 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.book-button-custom:hover {
  background-color: #a8926f; /* darker shade of primary */
  transform: translateY(-2px); /* lift on hover */
}

/* ===== View All Button ===== */
.view-all-wrapper {
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #bead8e; /* primary color */
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.view-all-btn:hover {
  background: #a8926f;
  transform: translateY(-2px);
}

/* ===== Responsive Grid ===== */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}





/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin: 0 0 15px;
}

a {
  text-decoration: none;
}

/* ===== Hero Section ===== */
.about-hero {
  position: relative;
  background: url('/storage/about/hotel-hero.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.about-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 56px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 20px;
  color: #f1f1f1;
}

/* ===== About Content ===== */
.about-content {
  padding: 80px 20px;
}

.about-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== Mission & Vision ===== */
.mission-vision {
  background: #f9f7f4;
  padding: 60px 20px;
}

.mission-vision .container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

.mission-vision h3 {
  color: #bead8e; /* primary color */
  font-size: 24px;
  margin-bottom: 15px;
}

.mission-vision p {
  font-size: 16px;
  color: #444;
}

/* ===== Call to Action ===== */
.about-cta {
  text-align: center;
  padding: 80px 20px;
  background: #bead8e; /* primary color */
  color: #fff;
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #bead8e;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
  background: #a8926f;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-content .container {
    grid-template-columns: 1fr;
  }

  .mission-vision .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 36px;
  }
  .about-hero p {
    font-size: 16px;
  }
  .about-text h2 {
    font-size: 28px;
  }
}





.section-title h2 {
  font-size: 75px; 
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 55px; 
  }
}






.reviews-section {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
}

.reviews-section .section-header p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #444;
  margin-bottom: 10px;
}

.reviews-section .section-header h2 {
  font-size: 78px; 
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 60px 25px;  /* top & bottom = 60px, sides = 25px */
  margin: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  min-height: 80px;   /* updated from 120px */
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  text-align: center;
}

.review-footer .stars {
  color: #bead8e;
  font-size: 18px;
  margin-bottom: 6px;
}

.review-footer h4 {
  font-size: 18px;
  font-weight: bold;
  color: #bead8e;
  margin: 0;
  text-align: center;
}

/* Slick Dots */
.reviews-section .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  list-style: none;
}

.reviews-section .slick-dots li {
  width: auto;
  height: auto;
}

.reviews-section .slick-dots button {
  background: #eee;
  border: 1px solid #bead8e;
  color: #333;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.reviews-section .slick-dots li.slick-active button {
  background: #bead8e;
  color: #fff;
}

.reviews-section .slick-dots li button:before {
  display: none;
}

/* Custom SVG Arrows */
.reviews-section .slick-prev,
.reviews-section .slick-next {
  background: #bead8e;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  color: #fff;
}

.reviews-section .slick-prev { left: -60px; }
.reviews-section .slick-next { right: -60px; }

.reviews-section .slick-prev svg,
.reviews-section .slick-next svg {
  width: 18px;
  height: 18px;
}

.reviews-section .slick-prev:hover,
.reviews-section .slick-next:hover {
  background: #a8946f;
  transform: translateY(-50%) scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-section .section-header h2 {
    font-size: 35px;
  }
  .review-card h4 {
    font-size: 16px;
  }
  .review-card p {
    min-height: 80px; /* keep same on mobile */
  }
  .reviews-section .slick-prev,
  .reviews-section .slick-next {
    width: 36px;
    height: 36px;
  }
  .reviews-section .slick-prev svg,
  .reviews-section .slick-next svg {
    width: 14px;
    height: 14px;
  }
  .reviews-section .slick-prev { left: -28px; }
  .reviews-section .slick-next { right: -28px; }
}