/********** Template CSS **********/
:root {
  --primary: #348e38;
  --secondary: #525368;
  --light: #e8f5e9;
  --dark: #0f4229;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 80px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(15, 66, 41, 0.6);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background:
    linear-gradient(rgba(15, 66, 41, 0.6), rgba(15, 66, 41, 0.6)),
    url(../img/carousel-11.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
    position: relative;
    margin-top: -80px;
    z-index: 1;
  }
}

/*** Facts & Quote ***/
.facts,
.quote {
  background: rgba(15, 66, 41, 0.6);
}

/*** Service ***/
.service-item {
  position: relative;
  text-align: center;
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: 0.3s;
  z-index: -1;
}

.service-item:hover .service-img img {
  transform: scale(1);
}

.service-item .service-text {
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-item:hover .service-text {
  background: rgba(15, 66, 41, 0.6);
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: 0.3;
}

.service-item:hover .service-text h4 {
  color: #ffffff;
}

.service-item:hover .service-text p {
  color: var(--light);
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: 0.5s;
}

.service-item:hover .service-text .btn-square {
  background: var(--light);
}

.service-item .service-text .btn {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
}

.service-item:hover .service-text .btn {
  width: 112px;
}

/*** Project Portfolio ***/
#portfolio-flters {
  display: inline-block;
  background: var(--light);
  padding: 10px 15px;
}

#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--dark);
  border-color: var(--dark);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 66, 41, 0.6);
  transition: 0.5s;
}

.portfolio-inner::after {
  left: auto;
  right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
  width: 50%;
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
  transition-delay: 0.3s;
  opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
  background: var(--light);
  color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
  background: var(--primary);
  color: var(--light);
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
}

.team-item .team-text {
  position: absolute;
  width: calc(100% - 45px);
  left: -100%;
  bottom: 45px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  background: var(--light);
  color: var(--primary);
}

.team-item .team-social .btn:hover {
  background: var(--primary);
  color: var(--light);
}

.team-item .team-img .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.team-item:hover .team-img .team-social {
  transition-delay: 0.3s;
  opacity: 1;
}

/*** Testimonial ***/

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 4px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: var(--light);
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: var(--light);
  background: #072a19;
}

.copyright a {
  color: #ffffff;
}

.copyright a:hover {
  color: var(--primary);
}

/* <!-- Add Custom CSS for Animations --> */
/* Ensure smooth transitions for hover effects */
.room-item {
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Hover effect: slight scale and shadow */
.room-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Initial state for room image (hidden to the left) */
.room-image {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-in-out;
}

/* Initial state for room content (hidden to the right) */
.room-content {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-in-out;
}

/* Initial state for room price (hidden downward) */
.room-price {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

/* Animation when the room item becomes visible */
.wow.fadeInUp .room-image,
.wow.fadeInUp .room-content,
.wow.fadeInUp .room-price {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Button hover effect */
.room-price .btn {
  transition: all 0.3s ease-in-out;
}

.room-price .btn:hover {
  background-color: #0056b3;
  /* Darker shade of primary color */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ensure images don't shrink too much and maintain aspect ratio */
.room-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Ensures the image covers the area without distortion */
  min-height: 200px;
  /* Minimum height to prevent shrinking too much */
}

/* Default layout adjustments for better spacing */
.room-item {
  flex-direction: row;
  align-items: center;
}

.room-price {
  text-align: right;
}

/* Media Queries for Responsiveness */

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .room-item {
    flex-direction: column;
    /* Stack elements vertically */
    text-align: center;
  }

  .room-image {
    width: 100%;
    /* Full width for the image */
    margin-bottom: 20px;
  }

  .room-image img {
    min-height: 250px;
    /* Slightly larger image on tablets */
  }

  .room-content {
    width: 100%;
    /* Full width for the content */
    margin-bottom: 20px;
  }

  .room-price {
    width: 100%;
    /* Full width for the price section */
    text-align: center;
    /* Center the price and button */
  }

  .room-price .btn {
    width: 100%;
    /* Full-width button on smaller screens */
    max-width: 200px;
    /* Limit button width for aesthetics */
  }

  .room-content h3 {
    font-size: 1.5rem;
    /* Slightly smaller heading */
  }

  .room-content p {
    font-size: 0.9rem;
    /* Adjust font size for readability */
  }

  .room-price h4 {
    font-size: 1.25rem;
    /* Adjust price font size */
  }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
  .room-image img {
    min-height: 200px;
    /* Ensure image doesn't shrink too much on mobile */
  }

  .room-content h3 {
    font-size: 1.25rem;
    /* Smaller heading for mobile */
  }

  .room-content p {
    font-size: 0.85rem;
    /* Smaller text for mobile */
  }

  .room-price h4 {
    font-size: 1.1rem;
    /* Smaller price font size */
  }

  .room-price .btn {
    max-width: 150px;
    /* Smaller button on mobile */
  }

  .d-flex.flex-wrap span {
    font-size: 0.9rem;
    /* Smaller icons and text for amenities */
    margin-bottom: 10px;
    /* Add spacing between wrapped items */
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
    /* Reduce padding on mobile for more space */
  }
}

/* Extra small devices (below 400px) */
@media (max-width: 400px) {
  .room-image img {
    min-height: 180px;
    /* Slightly smaller image for very small screens */
  }

  .room-content h3 {
    font-size: 1.1rem;
    /* Even smaller heading */
  }

  .room-content p {
    font-size: 0.8rem;
    /* Even smaller text */
  }

  .room-price h4 {
    font-size: 1rem;
    /* Even smaller price */
  }
}

/* RESERVATION STYLING */

/* Progress Bar Styling */
.progress-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

.progress-step {
  display: flex;
  align-items: center;
  background-color: #f1f1f1;
  padding: 10px 20px;
  border-radius: 25px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.progress-step.active {
  background-color: #348e38;
  color: white;
}

.step-number {
  width: 30px;
  height: 30px;
  background-color: white;
  color: #348e38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

.progress-step.active .step-number {
  background-color: #348e38;
  color: white;
}

.step-label {
  font-size: 1.1rem;
  font-weight: 500;
}

.progress-arrow {
  width: 30px;
  height: 30px;
  background-color: #348e38;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin: 0 -5px;
  z-index: 1;
}

/* Form Styling */
.reservation-form {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.form-label {
  font-weight: 500;
  color: #333;
}

.form-control {
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #348e38;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.btn-primary {
  background-color: #348e38;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #348e38;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .progress-step {
    padding: 8px 15px;
  }

  .step-label {
    font-size: 0.9rem;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }

  .progress-arrow {
    width: 20px;
    height: 20px;
  }

  .reservation-form {
    padding: 20px;
  }

  .form-control {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .progress-step {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .progress-arrow {
    width: 20px;
    height: 20px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    margin: 5px 0;
  }

  .progress-bar-container {
    flex-direction: column;
  }
}

/* PAYMENT NOTICE STYLING */
.payment-notice {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.payment-notice h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

.payment-notice .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.payment-notice .text-muted {
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .payment-notice {
    padding: 20px;
  }

  .payment-notice h3 {
    font-size: 1.5rem;
  }

  .payment-notice .lead {
    font-size: 1rem;
  }

  .payment-notice .text-muted {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .payment-notice h3 {
    font-size: 1.25rem;
  }

  .payment-notice .lead {
    font-size: 0.9rem;
  }

  .payment-notice .text-muted {
    font-size: 0.85rem;
  }

  .payment-notice .btn-primary {
    width: 100%;
    max-width: 200px;
  }
}

/* OCCUPANCY NOTICE STYLING */
.occupancy-notice {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.occupancy-notice h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

.occupancy-notice .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.occupancy-notice .text-muted {
  font-size: 0.95rem;
}

.occupancy-notice .btn-primary {
  background-color: #348e38;
  border: none;
  transition: all 0.3s ease;
}

.occupancy-notice .btn-primary:hover {
  background-color: #348e38;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .occupancy-notice {
    padding: 20px;
  }

  .occupancy-notice h3 {
    font-size: 1.5rem;
  }

  .occupancy-notice .lead {
    font-size: 1rem;
  }

  .occupancy-notice .text-muted {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .occupancy-notice h3 {
    font-size: 1.25rem;
  }

  .occupancy-notice .lead {
    font-size: 0.9rem;
  }

  .occupancy-notice .text-muted {
    font-size: 0.85rem;
  }

  .occupancy-notice .btn-primary {
    width: 100%;
    max-width: 200px;
  }
}

/* CONTACT STYLING */
.contact-info {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-info h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-info p {
  font-size: 1rem;
  color: #333;
}

.contact-info a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-info {
    padding: 20px;
  }

  .contact-info h5 {
    font-size: 1.1rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .contact-info .fa-2x {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-info h5 {
    font-size: 1rem;
  }

  .contact-info p {
    font-size: 0.85rem;
  }

  .contact-info .fa-2x {
    font-size: 1.25rem;
  }
}

/* CHECKOUT STYLING */
.reservation-summary {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.reservation-summary h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.reservation-summary h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.reservation-summary p {
  font-size: 1rem;
  color: #555;
}

/* Ensure the form styling remains consistent */
.reservation-form {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.form-label {
  font-weight: 500;
  color: #333;
}

.form-control {
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .reservation-summary {
    margin-bottom: 20px;
  }

  .reservation-summary h3 {
    font-size: 1.25rem;
  }

  .reservation-summary h5,
  .reservation-summary p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .reservation-form {
    padding: 20px;
  }

  .reservation-form h2 {
    font-size: 1.5rem;
  }

  .reservation-form h5 {
    font-size: 0.9rem;
  }

  .form-control {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .reservation-summary h3 {
    font-size: 1.1rem;
  }

  .reservation-summary h5,
  .reservation-summary p {
    font-size: 0.85rem;
  }

  .reservation-form h2 {
    font-size: 1.25rem;
  }

  .reservation-form h5 {
    font-size: 0.85rem;
  }
}

/* RECEIPT STYLING */
.success-checkout {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.receipt {
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.receipt h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.receipt h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

.receipt p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.receipt p strong {
  color: #333;
}

.receipt .text-muted {
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #348e38;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #348e38;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Print Styles */
@media print {
  body,
  html {
    margin: 0;
    padding: 0;
    background: #fff;
  }

  body * {
    visibility: hidden;
    display: none;
  }

  .receipt,
  .receipt * {
    visibility: visible;
    display: block;
  }

  .receipt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 800px;
    /* Standard width for printed receipts */
    margin: 0 auto;
    border: none;
    box-shadow: none;
    padding: 20px;
    background: #fff;
  }

  .receipt .row {
    display: flex;
    flex-wrap: wrap;
  }

  .receipt .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .receipt h3,
  .receipt h5,
  .receipt p {
    color: #000 !important;
    /* Ensure text is black for printing */
  }

  .receipt .text-success {
    color: #28a745 !important;
    /* Retain green for payment status */
  }

  .receipt .text-muted {
    color: #6c757d !important;
    /* Retain muted color for hotel info */
  }

  /* Ensure no page breaks within the receipt */
  .receipt {
    page-break-inside: avoid;
  }
}

/* GRNMA ALERT STYLING */
.grnma-alert {
  background-color: transparent;
}

.alert-banner {
  border-left: 5px solid #28a745;
  /* Green border on the left */
  border-radius: 5px;
  background-color: #343a40;
  /* Dark background */
  color: #ffffff;
  /* White text */
}

.alert-banner p {
  font-size: 1rem;
  line-height: 1.5;
}

.alert-banner a {
  color: #28a745;
  /* Green link color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.alert-banner a:hover {
  color: #218838;
  /* Darker green on hover */
}

.alert-banner .btn-close {
  filter: invert(1);
  /* Makes the close button white */
  opacity: 0.8;
}

.alert-banner .btn-close:hover {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .alert-banner {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .alert-banner p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .alert-banner .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .alert-banner p {
    font-size: 0.85rem;
  }
}

/* CLOSED DATES STYLING */
.flatpickr-day.closed-date {
  background: #ffcccc !important;
  /* Light red for closed */
  color: #ff0000 !important;
  border: 1px solid #ff0000 !important;
  cursor: not-allowed !important;
}

.flatpickr-day.available-date {
  background: #ccffcc !important;
  /* Light green for available */
  color: #008000 !important;
  border: 1px solid #008000 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #007bff !important;
  /* Blue for selected dates */
  color: #fff !important;
  border: 1px solid #007bff !important;
}

.availability-message {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff3f3;
  border: 2px solid #ffcccc;
  border-radius: 8px;
  padding: 15px;
  max-width: 400px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.availability-message .icon {
  font-size: 24px;
  margin-right: 10px;
  color: #ff3333;
}

.availability-message p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.highlight-red {
  color: #ff3333;
  font-weight: bold;
}
/* ========================================
   DYNAMIC ROOM LISTING & BOOKING STYLES
   ======================================== */

/* Room Cards Enhanced */
.room-item-enhanced {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.room-item-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-item-enhanced .room-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.room-item-enhanced .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-item-enhanced:hover .room-img img {
  transform: scale(1.1);
}

.room-item-enhanced .room-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.room-item-enhanced .room-badge .badge {
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 25px;
}

.room-item-enhanced .room-price-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  padding: 12px 20px;
  border-radius: 15px 0 0 0;
}

.room-item-enhanced .room-content {
  padding: 25px;
}

.room-item-enhanced .room-content h4 {
  color: var(--dark);
  margin-bottom: 15px;
}

.room-item-enhanced .room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.room-item-enhanced .amenity-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--dark);
}

.room-item-enhanced .amenity-item i {
  color: var(--primary);
}

/* Availability & Member Badges */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.availability-badge.available {
  background-color: #d4edda;
  color: #155724;
}

.availability-badge.limited {
  background-color: #fff3cd;
  color: #856404;
}

.availability-badge.full {
  background-color: #f8d7da;
  color: #721c24;
}

.member-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ffd700, #ffcc00);
  color: #333;
}

/* Room Pricing CTA Section */
.room-pricing-cta {
  background: var(--light);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
}

.room-pricing-cta .original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.room-pricing-cta .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.room-pricing-cta .per-night {
  font-size: 0.85rem;
  color: #666;
}

/* Room Filter Buttons */
.room-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.room-filter-buttons .filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.room-filter-buttons .filter-btn:hover,
.room-filter-buttons .filter-btn.active {
  background: var(--primary);
  color: #fff;
}

/* Special Offers Banner */
.special-offers-banner {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: 15px;
  padding: 30px;
  color: #fff;
  margin-bottom: 40px;
}

.special-offers-banner h3 {
  color: #fff;
  margin-bottom: 10px;
}

.special-offers-banner p {
  margin-bottom: 0;
  opacity: 0.9;
}

/* ========================================
   RESERVATION VIEW STYLES
   ======================================== */

/* Progress Bar Steps */
.progress-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.progress-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: var(--primary);
  color: #fff;
}

.progress-step.completed .step-number {
  background: #28a745;
  color: #fff;
}

.progress-step .step-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
  color: var(--dark);
}

.progress-arrow {
  color: #dee2e6;
  font-size: 1.2rem;
}

/* Room Selector Card */
.room-selector-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
}

.room-selector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.room-selector-card.selected {
  border-color: var(--primary);
}

.room-selector-card .card-img {
  height: 180px;
  overflow: hidden;
}

.room-selector-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pricing Summary Card */
.pricing-summary-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 25px;
  position: sticky;
  top: 100px;
}

.pricing-summary-card .summary-header {
  border-bottom: 2px solid var(--light);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.pricing-summary-card .summary-header h4 {
  color: var(--dark);
  margin-bottom: 5px;
}

.pricing-summary-card .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.pricing-summary-card .summary-row:last-child {
  border-bottom: none;
}

.pricing-summary-card .total-row {
  background: var(--light);
  margin: 15px -25px -25px;
  padding: 20px 25px;
  border-radius: 0 0 15px 15px;
}

.pricing-summary-card .total-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

/* Guest Counter Controls */
.guest-counter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.guest-counter .counter-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.guest-counter .counter-btn:hover {
  background: var(--primary);
  color: #fff;
}

.guest-counter .counter-value {
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 40px;
  text-align: center;
}

/* Member Notice */
.member-notice {
  background: linear-gradient(135deg, #fff9e6, #fff3cd);
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
}

.member-notice i {
  color: #ffc107;
}

/* Date Picker Enhancements */
.flatpickr-day.closed-date {
  background: #ffebee !important;
  color: #c62828 !important;
  border-color: #ffcdd2 !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
}

.flatpickr-day.available-date:not(.selected):not(.startRange):not(.endRange) {
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  border-color: #c8e6c9 !important;
}

/* ========================================
   CHECKOUT VIEW STYLES
   ======================================== */

/* Reservation Summary */
.reservation-summary {
  border-left: 4px solid var(--primary);
}

.reservation-summary .summary-header {
  display: flex;
  flex-direction: column;
}

.reservation-summary .room-type-display {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: 10px;
}

.reservation-summary .summary-row {
  transition: background 0.3s ease;
}

.reservation-summary .summary-row:hover {
  background: var(--light);
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.reservation-summary .pricing-breakdown {
  border: 1px solid #dee2e6;
}

/* Checkout Form */
.checkout-form {
  border-top: 4px solid var(--primary);
}

.checkout-form .form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.checkout-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52, 142, 56, 0.15);
}

.checkout-form .form-label {
  color: var(--dark);
  margin-bottom: 8px;
}

.checkout-form .security-notice {
  border-left: 4px solid #28a745;
}

/* Info Cards */
.info-card {
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--primary);
}

/* Payment Button States */
#payBtn {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#payBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 142, 56, 0.3);
}

#payBtn:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 991.98px) {
  .pricing-summary-card {
    position: relative;
    top: 0;
    margin-top: 30px;
  }

  .progress-bar-container {
    flex-direction: column;
    gap: 10px;
  }

  .progress-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 767.98px) {
  .room-item-enhanced .room-content {
    padding: 20px;
  }

  .room-item-enhanced .room-amenities {
    gap: 8px;
  }

  .room-item-enhanced .amenity-item {
    padding: 4px 10px;
    font-size: 0.8rem;
  }

  .special-offers-banner {
    padding: 20px;
    text-align: center;
  }

  .guest-counter {
    justify-content: center;
  }

  .checkout-form {
    padding: 20px !important;
  }
}

@media (max-width: 575.98px) {
  .room-filter-buttons .filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .pricing-summary-card .total-amount {
    font-size: 1.5rem;
  }
}
/* ========================================
   PROFESSIONAL ROOM CARDS
   ======================================== */

.room-card-pro {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Room Card Image */
.room-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card-pro:hover .room-card-image img {
  transform: scale(1.08);
}

.room-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.room-type-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-price-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  padding: 12px 18px;
  border-radius: 16px 0 0 0;
  text-align: center;
}

.room-price-badge .price-from {
  display: block;
  font-size: 0.7rem;
  opacity: 0.85;
  text-transform: uppercase;
}

.room-price-badge .price-amount {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.room-price-badge .price-period {
  font-size: 0.7rem;
  opacity: 0.85;
}

/* Room Card Content */
.room-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.room-card-desc {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Room Card Features */
.room-card-features {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.room-card-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
}

.room-card-features .feature-item i {
  color: var(--primary);
  font-size: 1rem;
}

/* Room Card Amenities */
.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--light);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.amenity-tag i {
  color: var(--primary);
  font-size: 0.85rem;
}

.amenity-tag:hover {
  background: var(--primary);
  color: #fff;
}

.amenity-tag:hover i {
  color: #fff;
}

.amenity-tag.more {
  background: transparent;
  border: 1px dashed var(--primary);
  color: var(--primary);
}

/* Room Card Action */
.room-card-action {
  margin-top: auto;
}

.btn-book-room {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-book-room:hover {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 142, 56, 0.35);
}

.btn-book-room.disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-book-room.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Responsive Adjustments for Room Cards */
@media (max-width: 991.98px) {
  .room-card-image {
    height: 200px;
  }

  .room-card-content {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .room-card-pro {
    margin-bottom: 20px;
  }

  .room-card-image {
    height: 180px;
  }

  .room-card-title {
    font-size: 1.15rem;
  }

  .room-card-features {
    flex-wrap: wrap;
    gap: 12px;
  }

  .room-card-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .room-card-content {
    padding: 16px;
  }

  .room-price-badge {
    padding: 10px 14px;
  }

  .room-price-badge .price-amount {
    font-size: 1.1rem;
  }

  .btn-book-room {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
