/* Fonts are now loaded in header.php for better performance */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  overflow-x: visible;
}

body {
  overflow-x: clip;
  /* clip is safer for sticky than hidden in some browsers */
  position: relative;
  width: 100%;
}


body {
  line-height: 1.5;
  color: #333;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px;
  user-select: none;
}

/* Prevent text selection */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection in form fields */
input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(15, 179, 126, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}



/* Header Styles - Modified for right alignment */
.header-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 0;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  margin-right: auto;
}

.logo img {
  height: 35px;
  margin-right: 8px;
}

.logo span {
  color: #0fb37e;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 15px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
}

nav ul li a.active {
  color: #156c4b;
}

nav ul li a:hover {
  color: #156c4b;
  transform: translateY(-3px);
}

.auth-buttons {
  display: flex;
  gap: 8px;
}

/* Hide mobile auth buttons on desktop */
.auth-buttons-mobile {
  display: none;
}

.auth-btn {
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  white-space: nowrap;
}

.signin-btn {
  background: transparent;
  color: #333;
}

.signin-btn:hover {
  color: #156c4b;
  transform: translateY(-3px);
  display: inline-block;
  /* Ensure transform works if not flex item */
}

/* Desktop Logout Button */
.navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navigation .button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 13px;
  white-space: nowrap;
  background: transparent;
  color: #333;
  border: none;
  cursor: pointer;
}

.navigation .button:hover {
  color: #156c4b;
  transform: translateY(-3px);
}

.navigation .button i {
  font-size: 14px;
}

.navigation .logout {
  font-size: 13px;
  font-weight: 500;
}

/* Dropdown Menu Styles */
.dropdown-menu-item {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-trigger i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown-menu-item:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
}

.dropdown-menu-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background-color: rgba(15, 179, 126, 0.1);
  border-left-color: #0fb37e;
  color: #156c4b;
  transform: translateX(5px);
}

.signup-btn {
  background: #0fb37e;
  color: white;
  border: 1px solid #0fb37e;
}

.signup-btn:hover {
  background: #156c4b;
  border-color: #156c4b;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Responsive Media Queries */
@media screen and (max-width: 992px) {

  /* Show mobile menu toggle button */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide navigation by default on mobile */
  .main-nav {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Show navigation when active */
  .main-nav.active {
    max-height: calc(100vh - 55px);
    overflow-y: auto;
  }

  /* Stack navigation items vertically */
  .main-nav ul {
    flex-direction: column;
    /* padding: 20px 0; */
    gap: 0;
  }

  .main-nav ul li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .main-nav ul li a {
    display: block;
    padding: 10px 30px;
    font-size: 16px;
  }

  .main-nav ul li a:hover,
  .main-nav ul li a.active {
    background-color: rgba(15, 179, 126, 0.1);
  }

  /* Hide desktop auth buttons on mobile */
  .header-container .auth-buttons {
    display: none !important;
  }

  /* Show mobile auth buttons at bottom */
  .auth-buttons-mobile {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    /* padding: 0px 30px !important; */
    border: 1px solid rgba(15, 179, 126, 0.8) !important;
    box-shadow: 0 -4px 20px rgba(15, 179, 126, 0.1) !important;
    z-index: 100 !important;
    justify-content: center !important;
    gap: 8px;
  }

  .auth-buttons-mobile .auth-btn {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b !important;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1.5px solid #000000;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
  }

  .auth-buttons-mobile .profile-btn i,
  .auth-buttons-mobile .logout-btn i {
    font-size: 16px;
    color: #1e293b;
  }

  .auth-buttons-mobile .logout-btn:hover,
  .auth-buttons-mobile .profile-btn:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu-item {
    position: relative;
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(15, 179, 126, 0.05);
  }

  .dropdown-menu-item:hover .dropdown-content,
  .dropdown-menu-item.active .dropdown-content {
    max-height: 1000px;
  }

  .dropdown-content a {
    padding: 10px 30px 10px 50px;
    font-size: 14px;
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown-content a:hover {
    transform: none;
    padding-left: 55px;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  /* Hotel Listings Responsive */
  .hotel-listings {
    flex-direction: column;
  }

  .hotel-cards-container,
  .hotel-filters {
    width: 100% !important;
  }

  .hotel-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Section containers */
  .about-content,
  .contact-content,
  .service-row {
    flex-direction: column;
  }

  .service-img,
  .service-content,
  .about-text,
  .about-img,
  .contact-info {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    height: 30px;
  }

  .header-container {
    gap: 15px;
  }

  .hero {
    padding: 80px 0 100px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .booking-form {
    padding: 15px;
  }

  .form-group label {
    font-size: 11px;
  }

  .form-control {
    font-size: 12px;
  }


}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 18px;
  }

  .logo img {
    height: 28px;
    margin-right: 6px;
  }

  .hotel-cards {
    grid-template-columns: 1fr !important;
  }

  .hero {
    padding: 60px 0 80px;
  }


  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 13px;
    padding: 0 15px;
  }

  .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-group {
    width: 100%;
  }

  .booking-form {
    padding: 10px;
  }

  .section-title h2 {
    font-size: 1.3rem !important;
  }

  .container {
    padding: 0 15px;
  }

  .hotel-name {
    font-size: 14px !important;
  }

  .hotel-address {
    font-size: 10px !important;
  }

  .price-val {
    font-size: 16px !important;
  }
}

/* Page Content */
.page-content {
  flex: 1;
  margin-top: 0px;
  /* Default for desktop */
}

@media screen and (max-width: 992px) {
  .page-content {
    /* margin-top: 58px; */
    /* Match mobile header height */
  }
}

.page-hero {
  background:
    linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)),
    url("https://images.unsplash.com/photo-1528543606781-2f6e6857f318?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjF8fHRyYXZlbHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=800");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-bottom: 20px;
}

.page-hero-services {
  background:
    linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)),
    url("https://images.unsplash.com/photo-1611892440504-42a792e24d32?q=80&w=1470&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-hero-about {
  background:
    linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1632&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-hero-contact {
  background:
    linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)),
    url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?q=80&w=1632&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Home Page Styles */
.hero {
  background: url("https://images.unsplash.com/photo-1627027245988-45d09bf20e1b?q=80&w=1507&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 160px 0 175px;
  text-align: center;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 20px;
}

.booking-form {
  background: white;
  border-radius: 8px;
  padding: 8px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #333;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
  align-items: center;
}

.form-group {
  position: relative;
}

.form-group.searchloc {
  flex: 4;
}

.form-group.nationality-group {
  flex: 2;
}

.form-group.date-group {
  flex: 2;
}

.form-group.guest-group {
  flex: 2;
}

.form-group.btn-group {
  flex: 2;
  display: flex;
  align-items: flex-end;
}

.form-control {
  width: 100%;
  padding: 3px 5px;
  font-size: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  cursor: pointer;
  height: 28px;
}

.form-group label {
  font-size: 10.5px;
  margin-bottom: 1px;
  display: block;
  color: #64748b;
  font-weight: 600;
}

.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

.input-with-icon .form-control {
  padding-right: 30px !important;
}

/* Ensure flatpickr alt input (the visible one) also gets the padding */
.input-with-icon .flatpickr-input+input {
  padding-right: 30px !important;
}

/* Running Board Animation for Offline Notification */
@keyframes running-board {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.offline-notification {
  background: transparent;
  /* background: linear-gradient(90deg, #ff6b6b, #ffa726, #4ecdc4, #45b7d1); */
  color: white;
  padding: 12px 0;
  margin: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  border: none;
  border-radius: 0;
}

.offline-notification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 25%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.1) 75%,
      transparent 100%);
  animation: running-board 30s linear infinite;
  z-index: 1;
}

.offline-notification .content-wrapper {
  position: relative;
  z-index: 2;
  display: inline-block;
  animation: running-board 30s linear infinite;
  padding-left: 100%;
}

.offline-notification i {
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.offline-notification p {
  display: inline-block;
  margin: 0;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Location Dropdown Styles */
.location-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.location-dropdown.active {
  display: block;
}

.location-option {
  padding: 3px 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
  font-size: 12px;
  justify-content: space-between;
}

.location-option:hover {
  background-color: #b7b7b7;
}

.location-option .location-left {
  display: flex;
  flex: 1;
}

.location-option i {
  margin-right: 8px;
  color: #0fb37e;
  width: 16px;
  font-size: 12px;
}

.location-option .location-name {
  font-weight: 500;
}

.location-option .location-type {
  font-size: 10px;
  color: #7f8c8d;
  margin-left: 4px;
}

/* Guest Selector Styles Redesign */
/* Guest Selector Styles Redesign - Pixel Perfect Match */
.guest-input-wrapper {
  display: flex;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  color: #333;
  font-family: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
  width: 100%;
  height: 28px;
  align-items: center;
}

.guest-input-wrapper-2 {
  display: flex;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  padding: 6px 3px;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  color: #333;
  font-family: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
  width: 100%;
}

.guest-input-wrapper .user-icon {
  font-size: 16px;
  color: #333;
  margin-right: 10px;
}

.guest-input-wrapper .chevron-icon {
  font-size: 11px;
  color: #94a3b8;
  margin-left: auto;
}

.guest-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.guest-label-internal {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 1px;
  font-weight: 500;
}

.guest-display-input {
  border: none !important;
  padding: 0 !important;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  background: transparent;
  cursor: pointer;
  width: 100%;
}

.guest-display-input:focus {
  outline: none;
}

.guest-selector-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 320px;
  /* Reduced slightly for smaller screens */
  max-width: calc(100vw - 40px);
  /* Ensure it fits within viewport */
  background: white;
  /* border: 2px solid #156C4B; */
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  /* High z-index */
  display: none;
}

.guest-selector-dropdown.active {
  display: block;
}

.guest-option-main-rooms {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  margin-bottom: 5px;
}

.guest-option-main-rooms .guest-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.guest-option-main-rooms select {
  width: 85%;
  padding: 4px 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  background-color: #fff;
  cursor: pointer;
}

.rooms-container {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 0px;
}

.room-row {
  margin-bottom: 10px;
}

.room-main-selectors {
  display: grid;
  grid-template-columns: 96px 1fr 1fr auto;
  align-items: center;
  justify-content: space-between;
}

.room-row .room-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.room-row select {
  width: 100%;
  padding: 4px 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.room-main-selectors .selector-group {
  margin-left: 4px;
}

.child-age-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  align-items: center;
  margin-top: 10px;
}

.child-age-row .child-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.guest-selector-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}

.done-btn {
  background-color: #0fb37e;
  color: white;
  border: none;
  padding: 4px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.remove-room-btn {
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  padding: 0px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-room-btn:hover {
  color: #e74c3c;
}

/* Specific styling for the guest group in search bar */
.form-group.guest-group {
  position: relative;
  width: 100%;
}

/* Search button styling to match image */

#searchHotels:hover {
  background-color: #156c4b !important;
}

.btn {
  background-color: #0fb37e;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background-color: #0a8f63;
}

/* Sticky Booking Summary */
.sticky-summary {
  position: sticky;
  top: 60px;
  background: white;
  border-radius: 0;
  color: #333;
  z-index: 100;
  max-width: 100%;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.booking-summary-details {
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #0fb37e;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.summary-label {
  font-weight: 600;
  color: #2c3e50;
}

.summary-value {
  color: #7f8c8d;
}

.edit-summary-btn {
  background: #f39c12;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}

.edit-summary-btn:hover {
  background: #e67e22;
}

/* Filter Tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 5px;
}

.filter-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #0fb37e;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.filter-tag-remove {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hotel Listings */
.hotel-listings {
  display: none;
  gap: 15px;
}

.hotel-cards-container {
  width: 80%;
  scrollbar-width: none;
}

.hotel-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.hotel-filters {
  width: 20%;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

/* Mobile Filter Toggle Button */
.mobile-filter-toggle {
  display: none;
  margin-bottom: 15px;
}

.filter-toggle-btn {
  background: #0fb37e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.filter-toggle-btn:hover {
  background: #0a8f63;
}

/* Filters Overlay (Mobile) */
.filters-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.filters-overlay.active {
  display: block;
}

/* Mobile Filter Close Button */
.mobile-filter-close {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  color: #555;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-filter-close {
    display: flex;
  }

  .hotel-cards-container {
    width: 100% !important;
    overflow-y: unset !important;
    max-height: none !important;
  }

  .hotel-filters {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 85% !important;
    max-width: 320px;
    height: 100vh;
    overflow-y: auto;
    z-index: 999;
    border-radius: 0;
    transition: right 0.3s ease;
    padding-top: 50px !important;
  }

  .hotel-filters.mobile-active {
    right: 0;
  }

  .hotel-listings {
    flex-direction: column;
  }
}

.filter-section {
  margin-bottom: 20px;
}

.filter-section h3 {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid #eee;
}

.filter-option {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.filter-option input {
  margin-right: 8px;
}

.filter-option label {
  font-size: 13px;
  color: #555;
  cursor: pointer;
}

.price-range-inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hotel-img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.hotel-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.hotel-info-top {
  flex: 1;
}

.hotel-price-section {
  margin-top: auto;
  padding-top: 10px;
}

.hotel-name {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 0;
}

.hotel-address {
  color: #7f8c8d;
  font-size: 11px;
  margin-bottom: 6px;
}

.hotel-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: -20px;
}

.hotel-city,
.hotel-category {
  font-size: 11px;
  color: #555;
}

.hotel-reviews {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.hotel-rating {
  background: #0fb37e;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  margin-right: 6px;
}

.hotel-review-count {
  font-size: 10px;
  color: #7f8c8d;
}

.hotel-price {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

.price-range {
  font-weight: bold;
  color: #2c3e50;
  font-size: 12px;
  display: block;
}

.meal-plan {
  color: #7f8c8d;
  font-size: 11px;
  display: block;
  margin-top: 2px;
}

/* Destinations Section */
.section {
  padding-bottom: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 8px;
  text-align: center;
}

.section-title p {
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  font-size: 13px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.destination-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-img {
  height: 130px;
  width: 100%;
  object-fit: cover;
}

.destination-info {
  padding: 12px;
}

.destination-info h3 {
  margin-bottom: 4px;
  color: #2c3e50;
  font-size: 1rem;
}

.destination-info p {
  color: #7f8c8d;
  font-size: 11px;
}

/* Services Section */
.services {
  background-color: #f1f8ff;
  border-radius: 20px;
  margin: 20px 10px;
  padding: 40px 20px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 0px;
}


.service-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 12px;
}

.service-content p {
  margin-bottom: 12px;
  color: #555;
  font-size: 13px;
}

.features-list {
  list-style: none;
  margin-bottom: 12px;
}

.features-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  font-size: 13px;
}

.features-list li:before {
  content: "✓";
  color: #0fb37e;
  font-weight: bold;
  margin-right: 6px;
}

/* Services Page Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #0fb37e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 25px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 12px;
}

.service-card p {
  color: #7f8c8d;
  margin-bottom: 15px;
  font-size: 13px;
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  text-align: left;
  margin-top: 12px;
}

.service-details.active {
  max-height: 500px;
}

/* About Us Page Styles */
.about-content {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.about-text p {
  margin-bottom: 10px;
  color: #555;
  font-size: 13px;
}

.about-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.milestone-container {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.milestone {
  text-align: center;
  flex: 1;
  min-width: 180px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.milestone-icon {
  width: 60px;
  height: 60px;
  background: #0fb37e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-size: 25px;
}

.milestone h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 8px;
}

.milestone p {
  color: #7f8c8d;
  font-size: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.team-info {
  padding: 15px;
}

.team-info h3 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 4px;
}

.team-info p {
  color: #0fb37e;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 12px;
}

.team-info .social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.team-info .social-links a {
  width: 30px;
  height: 30px;
  background: #f1f8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0fb37e;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s;
}

.team-info .social-links a:hover {
  background: #0fb37e;
  color: white;
}

/* Contact Page Styles */
.contact-content {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 15px;
  color: #555;
  font-size: 13px;
}

.contact-details {
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: #0fb37e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 4px;
}

.contact-text p {
  margin-bottom: 0;
  color: #7f8c8d;
  font-size: 12px;
}

.contact-form {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Conclusion Section */
.conclusion {
  text-align: center;
  padding: 30px 0;
  background: linear-gradient(135deg, #0fb37e, #2c3e50);
  color: white;
}

.conclusion h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.conclusion p {
  max-width: 700px;
  margin: 0 auto 15px;
  font-size: 13px;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 30px 0 15px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1;
  min-width: 160px;
}

.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #0fb37e;
}

.footer-column p,
.footer-column a {
  color: #bdc3c7;
  margin-bottom: 6px;
  display: block;
  text-decoration: none;
  font-size: 12px;
}

.footer-column a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecf0f1;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #0fb37e;
}

.copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
  font-size: 11px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: none;
  width: 90%;
  max-width: 650px;
  margin: auto;
  padding: 0;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0fb37e, #9b59b6, #e74c3c);
  border-radius: 15px 15px 0 0;
}

.modal-inner {
  background: white;
  padding: 20px;
  border-radius: 0 0 12px;
}

.modal h2 {
  color: white;
  text-align: center;
  margin: 0;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
}

.modal .form-group {
  margin-bottom: 8px;
}

.modal .form-control {
  border: 2px solid #e3f2fd;
  border-radius: 8px;
  padding: 5px 6px;
  transition: all 0.3s;
  height: 30px;
  width: 100%;
}

.modal .form-control:focus {
  border-color: #0fb37e;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.modal textarea.form-control {
  height: 80px;
  resize: vertical;
  min-height: 80px;
}

.modal .btn {
  background: linear-gradient(135deg, #0fb37e, #0a8f63);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  margin-top: 5px;
  transition: all 0.3s;
  height: 46px;
}

.modal .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.close-modal {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 18px;
  cursor: pointer;
  color: #7f8c8d;
  background: rgba(0, 0, 0, 0.05);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.close-modal:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #2c3e50;
}

/* Authentication Modal Styles */
.auth-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.auth-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.auth-close {
  position: absolute;
  right: 15px;
  top: 3px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #7f8c8d;
  z-index: 1;
}

.auth-close:hover {
  color: #2c3e50;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.auth-tab {
  flex: 1;
  padding: 8px;
  text-align: center;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #7f8c8d;
  transition: all 0.3s;
}

.auth-tab.active {
  color: #0fb37e;
  border-bottom: 3px solid #0fb37e;
}

.auth-content {
  padding: 10px 20px;
}

.auth-fieldset {
  display: none;
}

.auth-fieldset.active {
  display: block;
}

.auth-fieldset h3 {
  margin-bottom: 10px;
  color: #2c3e50;
  text-align: center;
  font-size: 16px;
}

.auth-options {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.auth-option-btn {
  flex: 1;
  padding: 5px;
  border: 2px solid #0fb37e;
  background: white;
  color: #0fb37e;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.auth-option-btn:hover {
  background: #0fb37e;
  color: white;
}

.google-signin {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  font-size: 14px;
}

.google-signin:hover {
  background: #f8f9fa;
  border-color: #ccc;
}

.auth-divider {
  text-align: center;
  position: relative;
  color: #7f8c8d;
  font-size: 14px;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
  z-index: 1;
}

.auth-divider span {
  background: white;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.otp-option {
  text-align: center;
  margin: 8px 0;
}

.otp-link {
  color: #0fb37e;
  text-decoration: none;
  font-size: 13px;
  cursor: pointer;
}

.otp-link:hover {
  text-decoration: underline;
}

.success-message {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.success-message i {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.success-message h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.success-message p {
  font-size: 13px;
  margin: 0;
}

.required::after {
  content: " *";
  color: #e74c3c;
}

/* Search Results Header */
.search-results-header {
  display: none;
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #0fb37e;
}

.search-results-header.active {
  display: block;
}

.search-results-title {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-results-title i {
  color: #0fb37e;
}

.search-results-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  align-items: center;
}

.search-results-detail {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-results-detail i {
  color: #0fb37e;
  font-size: 12px;
}

.search-results-detail span {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}

.search-results-count {
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 500;
}

/* Page Navigation */
.page-navigation {
  display: none;
}

#home-page {
  display: block;
}

.search-results-view .hero {
  display: none;
}

.search-results-view .hotel-listings {
  display: flex;
}

.search-results-view .destinations-section,
.search-results-view .services-section,
.search-results-view .conclusion-section {
  display: none;
}

/* Modify Form Styles */
.modify-search-form {
  width: 100% !important;
  max-width: 100% !important;
}

.modify-search-form .guest-group {
  position: relative;
}

.modify-search-form .guest-selector-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 340px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}

.modify-search-form .guest-selector-dropdown.active {
  display: block;
}

.modify-search-form .guest-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.modify-search-form .guest-option:last-child {
  margin-bottom: 0;
}


.modify-search-form .guest-counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modify-search-form .counter-btn {
  width: 25px;
  height: 25px;
  border: 1px solid #0fb37e;
  background: white;
  color: #0fb37e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
}

.modify-search-form .counter-btn:disabled {
  border-color: #ddd;
  color: #ddd;
  cursor: not-allowed;
}

.modify-search-form .counter-value {
  min-width: 25px;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
}

.modify-search-form .child-age-container {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #eee;
  display: none;
}

.modify-search-form .child-age-container.active {
  display: block;
}

.modify-search-form .child-age-inputs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.modify-search-form .child-age-inputs .form-group {
  flex: 1;
  min-width: 70px;
}

.modify-search-form .form-control {
  height: 27px;
  padding: 5px 12px;
  font-size: 14px;
}

.modify-search-form .input-with-icon .form-control {
  padding-right: 32px !important;
}

.modify-search-form .input-with-icon i {
  font-size: 13px;
  color: #94a3b8;
}

.guest-input-wrapper-2 {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 0 10px;
  height: 27px;
  background: white;
  cursor: pointer;
}

.guest-input-wrapper-2 .guest-info {
  flex: 1;
}

.guest-input-wrapper-2 .guest-display-input {
  border: none;
  width: 100%;
  font-size: 12px;
  padding: 0;
  height: 25px;
  cursor: pointer;
}

.modify-search-form .btn {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Date Input Enhancement */
input[type="date"] {
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 5px;
  margin-right: 2px;
}

/* Loading Animation */
.loading-dots {
  display: inline-block;
}

.loading-dots::after {
  content: "...";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {

  0%,
  20% {
    content: ".";
  }

  40% {
    content: "..";
  }

  60%,
  100% {
    content: "...";
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 0px solid transparent;
  outline-offset: 2px;
}

/* Print Styles */
@media print {

  .modal,
  .auth-buttons,
  .sticky-booking-summary,
  .hotel-filters {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hotel-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hotel-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  nav ul {
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 4px 6px;
  }

  .hero {
    padding: 25px 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group.searchloc,
  .form-group.date-group,
  .form-group.guest-group,
  .form-group.btn-group {
    width: 100%;
  }

  .service-row,
  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
  }

  .guest-selector-dropdown {
    width: 100%;
    left: 0;
  }

  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .hotel-listings {
    flex-direction: column;
  }

  .hotel-cards-container {
    width: 100%;
  }

  .hotel-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-summary {
    gap: 10px;
  }

  .summary-row {
    gap: 8px;
  }

  .search-results-details {
    flex-direction: column;
    gap: 8px;
  }

  .modal-content {
    width: 95%;
    margin: auto;
  }

  .auth-type-buttons {
    flex-direction: column;
  }

  .registration-options {
    gap: 10px;
  }

  .reg-option-btn {
    padding: 15px;
  }

  .modify-search-form .guest-selector-dropdown {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hotel-cards {
    grid-template-columns: 1fr;
  }

  .auth-buttons {
    /* flex-direction: column; */
    width: -webkit-fill-available;
  }

  .auth-btn {
    text-align: center;
  }

  .modal-inner {
    padding: 15px;
  }

  .tab-btn {
    font-size: 14px;
    padding: 10px;
  }

  .compact-form {
    padding: 12px !important;
  }

  .auth-type-btn {
    min-width: auto;
  }

  .registration-options {
    gap: 8px;
  }

  .reg-option-btn {
    padding: 12px;
  }

  .reg-option-btn i {
    font-size: 18px;
  }

  .reg-option-btn span {
    font-size: 13px;
  }

  .child-age-inputs {
    grid-template-columns: 1fr;
  }

  .modify-search-form .child-age-inputs {
    flex-direction: column;
  }

  .modify-search-form .child-age-inputs .form-group {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .wallet-modal-content {
    width: 95%;
    max-width: none !important;
    border-radius: 12px;
  }

  .wallet-modal-body {
    padding: 15px !important;
  }

  .wallet-modal-header h3 {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .modal-content {
    width: 98%;
    margin: auto;
  }

  .compact-form {
    padding: 10px !important;
  }

  .auth-tabs {
    flex-direction: column;
  }

  .tab-btn {
    padding: 8px;
    font-size: 13px;
  }

  .guest-selector-dropdown {
    width: 280px;
  }

  .modify-search-form .guest-selector-dropdown {
    width: 280px;
  }
}

/* =========================================
   Hotel Details Page Styles
   (Moved from hotel-details.php)
   ========================================= */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

.hotel-page-container {
  width: 100%;
  max-width: 1140px;
  margin: 10px auto;
  display: flex;
  gap: 20px;
  padding: 0 15px;
  /* Added padding for mobile */
  align-items: flex-start;
  font-family: "Roboto", sans-serif;
}

.room-config-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.config-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
}

.config-select,
.config-select1 {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
}

.Adults-flex {
  display: flex;
  gap: 15px;
}

.Adults-flex .config-field {
  flex: 1;
}

.child-ages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* === LEFT COLUMN === */
.left-content {
  flex: 1;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}

/* Header */
.hotel-header {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.hotel-header h1 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hotel-header .stars {
  font-size: 12px;
  color: #0FB37E;
  margin-left: 8px;
  margin-top: 2px;
}

.selection-summary-bar {
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  position: sticky;
  top: 10px;
  z-index: 10;
}

@media (max-width: 768px) {
  .selection-summary-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: static;
  }
}

.hotel-header .stars i {
  margin-right: 1px;
}

/* Gallery */
.gallery-container {
  display: flex;
  gap: 12px;
  height: 380px;
  margin-bottom: 12px;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-large {
  flex: 1.8;
  position: relative;
}

.gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-small-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-small-col img {
  width: 100%;
  height: calc(50% - 6px);
  object-fit: cover;
}

.photos-pill {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

/* About */
.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
  margin-top: 0;
  text-align: start;
}

.about-section {
  margin-bottom: 15px;
}

.about-text {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
  margin: 0;
}

.read-more {
  color: #0fb37e;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* Amenities */
.amenities-section {
  margin-top: 10px;
}

.amenities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 500;
}

.amenity-item i {
  color: #9b9b9b;
  font-size: 16px;
}

.more-amenities-link {
  color: #0fb37e;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* === RIGHT SIDEBAR === */
.right-sidebar {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

/* Booking Widget Specifics */
.room-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.room-subtitle {
  font-size: 13px;
  color: #000;
  margin-bottom: 8px;
}

.room-feature-list {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  padding-left: 0;
  list-style: none;
}

.room-feature-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 4px;
  height: 4px;
  background: #999;
  border-radius: 50%;
}

.price-strike {
  font-size: 13px;
  color: red;
  text-decoration: line-through;
  text-decoration-color: red;
  margin-bottom: 2px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.final-price {
  font-size: 24px;
  font-weight: 800;
  color: #000;
}

.taxes-fee {
  font-size: 13px;
  color: #666;
}

.book-btn-blue {
  width: 100%;
  background: #0fb37e;
  color: white;
  border: none;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.book-btn-blue:hover {
  background: #0a8f63;
}

.options-box {
  background: #f4f9ff;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e1eeff;
}

.options-text span {
  display: block;
}

.opt-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  margin-bottom: 2px;
}

.opt-value {
  font-size: 12px;
  color: #333;
}

.view-all-btn {
  background: white;
  color: #0fb37e;
  border: 1px solid #0fb37e;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

/* Rating Widget */
.rating-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-badge {
  background: #244093;
  color: white;
  font-size: 18px;
  font-weight: 700;
  width: 45px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-score-text {
  color: #244093;
  font-weight: 700;
  font-size: 14px;
}

.rating-count {
  font-size: 12px;
  color: #666;
}

.review-link {
  margin-left: auto;
  color: #0fb37e;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

/* Map Widget */
.map-container {
  display: flex;
  /* align-items: center; */
  gap: 12px;
  padding: 6px;
}

.map-thumb {
  width: 48px;
  height: 48px;
  background: #eef7ff url("https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Marker_icon.svg/1200px-Marker_icon.svg.png") center/18px no-repeat;
  border-radius: 8px;
  border: 1px solid #dceeff;
}

.location-info h5 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 700;
}

.location-info p {
  margin: 0 0 4px 0;
  font-size: 11px;
  color: #666;
  /* white-space: nowrap; */
}

.map-link {
  font-size: 11px;
  color: #0fb37e;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 991px) {
  .hotel-page-container {
    flex-direction: column;
  }

  .right-sidebar {
    width: 100%;
  }

  .gallery-container {
    height: auto;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .hotel-header h1 {
    font-size: 18px;
  }

  .gallery-container {
    flex-direction: column;
    height: auto;
    aspect-ratio: auto;
  }

  .gallery-large {
    flex: none;
    height: 250px;
  }

  .gallery-small-col {
    flex: none;
    flex-direction: row;
    height: 120px;
  }

  .gallery-small-col img {
    width: calc(50% - 6px);
    height: 100%;
  }
}

/* Amenities Modal */
.amenities-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.amenities-modal .modal-content-wide {
  background-color: #fff;
  margin: 5% auto;
  width: 100%;
  max-width: 1100px;
  border-radius: 8px;
  position: relative;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.amenities-modal .modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.amenities-modal .modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.amenities-modal .close-modal {
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.amenities-modal .modal-body {
  padding: 20px;
  overflow-y: auto;
}

.guest-feedback-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  background: #fff;
}

.guest-feedback-box h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 700;
}

.guest-rating-row {
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.guest-feedback-text {
  font-size: 12px;
  color: #444;
  line-height: 1.5;
  display: flex;
  gap: 8px;
}

.amenities-grid-modal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.amenities-category h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.amenities-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-category li {
  font-size: 13px;
  color: #444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenities-category li i {
  color: #999;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.amenities-category li .more-count {
  color: #0fb37e;
  font-weight: 600;
  font-size: 12px;
}

/* Update Search Section */
.update-search-container {
  background: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 10px 14px;
  /* Changed from 20px to 24px to match .left-content padding */
  margin: 10px auto;
  width: 100%;
  max-width: 1140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  /* Prevent wrapping unless mobile */
  gap: 15px;
}

.update-search-left h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.update-search-left p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.update-search-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.date-select-fake,
.guest-select-fake {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  /* Reduced gap */
  cursor: pointer;
  background: #fff;
  min-width: 140px;
  /* Force minimum width */
  height: 32px;
  /* Fixed height */
  justify-content: space-between;
  /* Space out text and icon */
}

.guest-select-fake {
  min-width: 160px;
  /* Slightly wider for guest text */
}

.date-select-fake i,
.guest-select-fake i {
  color: #0fb37e;
  font-size: 12px;
  margin-left: 0;
  /* Handled by justify-content */
}

.update-btn {
  border: 1px solid #0fb37e;
  background: #fff;
  color: #0fb37e;
  font-weight: 700;
  font-size: 13px;
  /* Slightly smaller text */
  padding: 0 20px;
  /* Horizontal padding only */
  height: 32px;
  /* Match input height */
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.update-btn:hover {
  background: #f0f7ff;
}

@media (max-width: 768px) {
  .update-search-container {
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
  }

  .update-search-left {
    margin-bottom: 10px;
  }

  .update-search-right {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .date-select-fake,
  .guest-select-fake,
  .update-btn {
    width: 100%;
    min-width: 0;
    flex: none;
  }
}

/* Guest Dropdown Styles */
.guest-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 15px;
  z-index: 100;
  margin-top: 5px;
}

.guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.guest-label {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.guest-sublabel {
  font-size: 11px;
  color: #666;
}

.counter-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 5px;
}

.count-btn {
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  width: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.count-val {
  font-size: 14px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.guest-note {
  font-size: 11px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.4;
}

.guest-dropdown-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.apply-guest-btn {
  background: #0fb37e;
  color: white;
  border: none;
  padding: 8px 30px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

/* Room List Styles */
.room-list-container {
  width: 100%;
  max-width: 1140px;
  margin: 20px auto;
}

.room-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 768px) {


  .custom-dropdown-wrapper {
    width: fit-content;
  }
}

.room-card-wide-one {
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  overflow: hidden;
  padding: 15px;
}

.room-types-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-filters {
  display: flex;
  gap: 10px;
}

.filter-btn {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: #0fb37e;
  color: #0fb37e;
}

/* Room Card (Wide) */
.room-card-wide {
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  display: flex;
  margin-bottom: 12px;
  overflow: hidden;
}

/* Left Column: Room Info */
.room-info-col {
  width: 350px;
  /* Fixed width for left column */
  padding: 15px;
  border-right: 1px solid #eaeaea;
  flex-shrink: 0;
}

.room-config-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 10px;
}

.config-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
}

.config-select,
.config-select1 {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  color: #333;
  background: #fff;
}

.Adults-flex {
  display: flex;
  gap: 15px;
}

.Adults-flex .config-field {
  flex: 1;
}

.child-ages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.room-img-slider {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.room-img-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photos-pill-small {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.room-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.room-meta-info {
  font-size: 12px;
  color: #4a4a4a;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.room-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.room-amenities-list li {
  font-size: 11px;
  color: #333;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-amenities-list li::before {
  content: "•";
  color: #999;
}

.more-details-link {
  font-size: 12px;
  color: #0fb37e;
  font-weight: 700;
  text-decoration: none;
}

/* Right Column: Rates */
.room-rates-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: auto;
  /* width: 800px; */
}

.rate-plan-row {
  padding: 12px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
}

.rate-plan-row:last-child {
  border-bottom: none;
}

.rate-plan-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #333;
}

.nfr-badge {
  color: #d9534f;
  /* Red for non-refundable */
}

.free-cancellation-badge {
  color: #008489;
  /* Teal for free cancellation */
}

.rate-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.rate-features li {
  font-size: 12px;
  color: #4a4a4a;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rate-pricing {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 180px;
}

.strike-price-sm {
  font-size: 16px;
  color: red;
  text-decoration: line-through;
  text-decoration-color: red;
  margin-bottom: 6px;
}

.final-price-lg {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin: 2px 0;
}

.taxes-sm {
  font-size: 11px;
  color: #666;
  margin-bottom: 10px;
}

.select-room-btn {
  background: #0fb37e;
  color: white;
  border: none;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.discount-tag {
  background: #e5f7fe;
  color: #0fb37e;
  /* Match screenshot blue text in light box */
  font-size: 10px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 10px;
  text-align: left;
  max-width: 200px;
}

.login-offer-text {
  color: #0fb37e;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 991px) {
  .room-info-col {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .room-card-wide {
    flex-direction: column;
  }

  .room-info-col {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }

  .rate-plan-row {
    gap: 15px;
  }

  .rate-pricing {
    text-align: left;
    min-width: 0;
    padding-top: 10px;
  }

  .room-config-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .Adults-flex {
    gap: 10px;
  }

  .room-img-slider {
    height: 150px;
  }

  .selection-summary-bar {
    padding: 10px;
    font-size: 13px;
  }

  .room-selectors-row {
    /* flex-direction: column; */
    width: 100%;
  }

  .custom-dropdown-wrapper {
    min-width: fit-content !important;
  }

  .custom-dropdown-trigger {
    width: fit-content !important;
  }

  .custom-dropdown-wrapper {
    width: fit-content !important;
  }
}

/* Location Section Large (Main Content) */
.location-section-container {
  background: white;
  padding: 24px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  width: 100%;
  max-width: 1140px;
  margin: 30px auto;
  margin-top: 0 !important;
}

.section-title-left {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.location-content-wrapper {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  height: 450px;
}

.location-map-area {
  flex: 3;
  position: relative;
  background: #eef;
}

.map-controls {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  z-index: 10;
  display: flex;
  gap: 10px;
  pointer-events: none;
  /* Allow clicking through container */
}

.map-search-box {
  background: white;
  padding: 0 12px;
  height: 40px;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  pointer-events: auto;
}

.map-search-box i {
  color: #999;
  margin-right: 10px;
  font-size: 14px;
}

.map-search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 13px;
  color: #333;
}

.nearby-checkbox {
  background: white;
  padding: 0 12px;
  height: 40px;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  pointer-events: auto;
}

.location-landmarks-list {
  flex: 1;
  background: white;
  border-left: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  overflow-y: auto;
}

.landmark-group {
  border-bottom: 1px solid #eee;
}

.landmark-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: background 0.2s;
}

.landmark-header:hover {
  background: #f9f9f9;
}

.landmark-header.active {
  background: #f9f9f9;
  /* Optional: keep hover bg or change */
}

/* Active state for text and icons */
.landmark-header.active .header-left span {
  color: #0fb37e;
  font-weight: 700;
}

.landmark-header.active i {
  color: #0fb37e !important;
  /* Force override generic icon colors if needed */
}

.landmark-header .header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landmark-header i.icon-type {
  color: #555;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.landmark-header span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.landmark-content {
  background: #fff;
  /* display: none handled inplace or default */
}

.landmark-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.landmark-content li {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #333;
  border-top: 1px solid #f5f5f5;
  gap: 15px;
}

.landmark-checkbox-wrapper {
  display: flex;
  align-items: center;
}

.landmark-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
}

.landmark-icon-box {
  width: 40px;
  height: 40px;
  background: #eaf6ff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landmark-icon-box i {
  color: #0fb37e;
  font-size: 18px;
}

.landmark-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landmark-name {
  font-weight: 600;
  font-size: 11px;
  color: #000;
  margin-bottom: 2px;
}

.landmark-category {
  font-size: 11px;
  color: #666;
}

.landmark-distance {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.nav-arrow-icon {
  width: 22px;
  height: 22px;
  background: #eaf6ff;
  border-radius: 50%;
  color: #0fb37e;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.distance-text {
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

/* Custom overlay for "This Hotel" marker mock */
.map-marker-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60px);
  /* Adjust based on map center */
  pointer-events: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-bubble {
  background: #0fb37e;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 6px;
  white-space: nowrap;
}

.marker-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #0fb37e;
}

.marker-dot {
  width: 12px;
  height: 12px;
  background: #0fb37e;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .location-content-wrapper {
    flex-direction: column;
    height: auto;
  }

  .location-map-area {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .map-controls {
    flex-direction: column;
    left: 10px;
    right: 10px;
    align-items: flex-start;
  }
}

/* Property Rules Section */
.property-rules-container {
  background: white;
  padding: 24px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.rules-header {
  margin-bottom: 20px;
}

.rules-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.check-times {
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.check-times span {
  margin-right: 15px;
}

.rules-columns {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}

.rules-left-col {
  flex: 6;
}

.rules-right-col {
  flex: 6;
}

.couple-rule-box {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 15px 15px;
  position: relative;
  margin-bottom: 20px;
}

.couple-rule-tag {
  position: absolute;
  top: -12px;
  left: 15px;
  background: #eaf9f2;
  color: #0d4632;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.couple-rule-tag i {
  color: #ff6b6b;
  font-size: 10px;
}

.couple-rule-text {
  font-size: 13px;
  color: #4a4a4a;
}

.rule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rule-list li {
  font-size: 13px;
  color: #333;
  margin-bottom: 12px;
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
}

.rule-list li::before {
  content: "○";
  /* Hollow circle bullet */
  position: absolute;
  left: 0;
  color: #666;
  font-size: 10px;
  top: 3px;
}

.rules-tags-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.rule-tag-btn {
  border: 1px solid #ddd;
  background: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.read-all-link {
  color: #0fb37e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .rules-columns {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .location-content-wrapper {
    flex-direction: column;
    height: auto;
  }

  .location-map-area {
    height: 300px;
  }
}

/* Property Rules Modal */
/* Property Rules Modal */
.property-rules-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Prevent background scroll */
  background-color: rgba(0, 0, 0, 0.5);
  /* Flex centering works even if JS sets display:flex, but JS sets display:block. 
       We will handle centering via absolute positioning or margin with max-height 
       Use flex layout for modern centering if possible, need to override JS inline style behavior or assume it works 
       Since JS sets display: 'block', we can't rely on flex properties on the parent easily without !important or changing JS.
       Sticking to margin auto for block, but with constrained height.
    */
}

.modal-content-rules {
  background-color: #fefefe;
  margin: 5vh auto;
  /* Use vh for dynamic top margin */
  padding: 30px;
  /* Reduced padding slightly to save space */
  border: 1px solid #888;
  width: 90%;
  max-width: 800px;
  height: 90vh;
  /* Fixed height relative to viewport */
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.close-rules-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 10;
}

.close-rules-modal:hover,
.close-rules-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.rules-modal-body {
  flex: 1;
  /* Take remaining space */
  overflow-y: auto;
  /* Internal scrolling */
  padding-right: 10px;
  margin-top: 10px;
  scrollbar-width: none;
}

.rules-modal-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  margin-top: 24px;
}

.rules-modal-body h3:first-child {
  margin-top: 0;
}

.rules-modal-body ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.rules-modal-body ul li {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Guest Photos Section */
.guest-photos-container {
  background: white;
  padding: 24px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.guest-photos-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.guest-photos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.guest-photo-item {
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.guest-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.guest-photo-item:hover img {
  transform: scale(1.05);
}

.more-photos-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .guest-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .guest-photo-item:nth-child(4),
    .guest-photo-item:nth-child(5) {
        display: none;
    } */
}

/* User Ratings & Reviews Section */
.reviews-section-container {
  background: white;
  padding: 24px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.reviews-header-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

/* Tabs */
.review-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.review-tab {
  padding: 12px 0;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  border-bottom: 3px solid transparent;
}

.review-tab.active {
  color: #0fb37e;
  font-weight: 700;
  border-bottom: 3px solid #0fb37e;
}

/* Review Layout */
.reviews-layout {
  display: flex;
  gap: 30px;
}

.reviews-left-col {
  width: 300px;
  flex-shrink: 0;
  border-right: 1px solid #eaeaea;
  padding-right: 30px;
}

.reviews-right-col {
  flex: 1;
}

/* Rating Box */
.overall-rating-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.big-rating-badge {
  background: #244093;
  color: white;
  width: 50px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.rating-text-group {
  display: flex;
  flex-direction: column;
}

.rating-verdict {
  color: #244093;
  font-weight: 700;
  font-size: 14px;
}

.rating-count-text {
  color: #666;
  font-size: 12px;
}

/* Progress Bars */
.rating-bars {
  margin-bottom: 25px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: #333;
}

.bar-label {
  width: 70px;
}

.bar-track {
  flex: 1;
  height: 4px;
  background: #e0e0e0;
  margin: 0 10px;
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #244093;
  border-radius: 2px;
}

.bar-percent {
  width: 30px;
  text-align: right;
  color: #666;
}

/* Last 10 Ratings */
.last-10-section {
  margin-bottom: 25px;
}

.last-10-title {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.last-10-grid {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.mini-rating-box {
  width: 24px;
  height: 24px;
  background: white;
  border: 1px solid #0fb37e;
  color: #0fb37e;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* Rating Categories (Location, Cleanliness etc) */
.rating-categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #333;
}

.cat-score {
  padding: 2px 6px;
  border: 1px solid #0fb37e;
  color: #0fb37e;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}

/* Review Summary (Myra.AI) */
.ai-summary-box {
  background: #fff;
  margin-bottom: 20px;
}

.ai-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ai-icon {
  color: #0fb37e;
  /* Sparkle color */
}

.ai-title {
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.ai-powered {
  font-size: 10px;
  color: #999;
}

.ai-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-summary-list li {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
}

.ai-summary-list li::before {
  content: "○";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 10px;
  color: #666;
}

.read-more-link {
  font-size: 12px;
  color: #0fb37e;
  font-weight: 600;
  text-decoration: none;
  margin-top: 5px;
  display: inline-block;
}

/* Filters and Sort */
.filter-sort-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
}

.filter-label {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-tag {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  background: white;
  cursor: pointer;
}

.filter-tag.active {
  border-color: #0fb37e;
  color: #0fb37e;
  background: #f0f8ff;
}

.sort-dropdown {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  font-size: 13px;
}

/* Individual Reviews */
.review-card {
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
  margin-top: 20px;
}

.review-card-header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-score-box {
  background: white;
  border: 1px solid #244093;
  color: #244093;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.review-score-box.low {
  border-color: #d32f2f;
  color: #d32f2f;
}

.review-header-text {
  display: flex;
  flex-direction: column;
}

.review-title {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  margin-bottom: 2px;
}

.review-author {
  font-size: 12px;
  color: #666;
}

.review-body {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 12px;
}

.review-meta {
  font-size: 12px;
  color: #000;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-meta span {
  font-weight: 400;
  color: #333;
}

.review-actions {
  margin-top: 10px;
}

.helpful-btn {
  background: none;
  border: none;
  color: #0fb37e;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.review-photos {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.review-photos img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .reviews-layout {
    flex-direction: column;
  }

  .reviews-left-col {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .review-tabs {
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Room Details Modal */
.room-details-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.room-details-content {
  background-color: #fff;
  margin: 5% auto;
  width: 90%;
  max-width: 900px;
  height: 90vh;
  /* Fixed height container */
  overflow-y: auto;
  /* Scrollable content */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 0;
  scrollbar-width: none;
}

.room-details-content2 {
  background-color: #fff;
  margin: auto auto;
  width: 90%;
  max-width: 900px;
  height: fit-content;
  /* Fixed height container */
  overflow-y: auto;
  /* Scrollable content */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 0;
}

.room-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

.room-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.close-room-modal {
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  line-height: 1;
}

.room-modal-body {
  padding: 25px;
}

/* Modal Slider */
.modal-slider-container {
  position: relative;
  height: 400px;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

.modal-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  z-index: 2;
}

.modal-slider-arrow.left {
  left: 15px;
}

.modal-slider-arrow.right {
  right: 15px;
}

/* Modal Quick Info */
.room-quick-stats {
  display: flex;
  flex-direction: column;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.stat-item i {
  color: #666;
  font-size: 16px;
}

/* Modal Sections */
.modal-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.amenities-grid-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.amenity-column h4 {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.amenity-list-modal {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-list-modal li {
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenity-list-modal li i {
  font-size: 12px;
  color: #666;
}

/* Guest Reviews in Modal */
.modal-review-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

.modal-review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.modal-review-title {
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.modal-review-badge {
  border: 1px solid #009ead;
  color: #009ead;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  height: 100%;
}

.modal-review-badge.red {
  border-color: #d32f2f;
  color: #d32f2f;
}

.modal-review-meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.modal-review-body {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 10px;
}

.modal-review-help {
  font-size: 12px;
  color: #0fb37e;
  cursor: pointer;
}

.modal-review-images {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.modal-review-images img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  object-fit: cover;
}

/* Rate Plan Table */
.rate-plan-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

.rate-plan-table th {
  background: #f5f5f5;
  text-align: left;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #ccc;
  color: #333;
  text-transform: uppercase;
}

.rate-plan-table td {
  border: 1px solid #ccc;
  padding: 15px;
  vertical-align: top;
}

.rate-option-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.rate-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rate-features-list li {
  font-size: 13px;
  color: #0fb37e;
  /* Blue for Free Cancellation */
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.more-details-blue {
  color: #0fb37e;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 5px;
  display: block;
}

.discount-green-box {
  background: #e8f9e6;
  color: #0a7f1a;
  padding: 8px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.rate-select-link {
  color: #0fb37e;
  cursor: pointer;
}

.price-display {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.price-sub {
  font-size: 11px;
  color: #666;
  text-decoration: line-through;
}

.taxes-text {
  font-size: 11px;
  color: #666;
  margin-bottom: 10px;
}

.book-now-blue-btn {
  background: #0fb37e;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

/* Cancellation Policy Modal */
.cancel-policy-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
}

.cancel-policy-content {
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 25px;
  margin: auto;
}

.cancel-modal-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cancel-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.close-cancel-modal {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  line-height: 1;
}

.cp-section {
  margin-bottom: 20px;
}

.cp-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.cp-green-text {
  color: #0a7f1a;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.cp-timeline-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
}

.cp-bar-container {
  height: 30px;
  background: #e0f2f1;
  border-radius: 15px;
  position: relative;
  margin: 10px 0;
}

.cp-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #23A775;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.cp-dot {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cp-dot.left {
  left: 10px;
}

.cp-dot.right {
  right: 10px;
}

.cp-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #333;
  font-weight: 700;
  margin-top: 5px;
}

.cp-label-right {
  text-align: right;
}

.cp-date-sub {
  font-weight: 400;
  color: #666;
  display: block;
}

.cp-text-desc {
  font-size: 13px;
  color: #333;
  margin-bottom: 20px;
}

.cp-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.cp-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.cp-table th {
  background: #f1f3f6;
  text-align: left;
  padding: 10px;
  font-size: 12px;
  color: #666;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}

.cp-table td {
  padding: 10px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #eee;
}

.cp-footer-note {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* Hotel Multimedia Page Styles */
.multimedia-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.mm-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
  color: #000;
}

.mm-section:first-child .mm-title {
  margin-top: 0;
}

.mm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.mm-item {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.mm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.mm-item:hover img {
  transform: scale(1.02);
}

.overlay-container {
  cursor: pointer;
}

.mm-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .mm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mm-grid {
    grid-template-columns: 1fr;
  }
}

/* Image Viewer Modal (Lightbox) */
.image-viewer-modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  flex-direction: column;
  justify-content: space-between;
}

.iv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  color: white;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  z-index: 10;
}

.iv-back-btn {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.iv-center-info {
  text-align: center;
}

.iv-user-name {
  font-size: 14px;
  font-weight: 700;
}

.iv-date {
  font-size: 11px;
  color: #ccc;
}

.iv-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.iv-select-room-btn {
  background-color: #003b95;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.iv-close-btn {
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iv-main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.iv-image-container {
  max-width: 80%;
  max-height: 80vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.iv-image-container img {
  max-width: 100%;
  height: 65vh;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.iv-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
}

.iv-nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.iv-nav-arrow.left {
  left: 20px;
}

.iv-nav-arrow.right {
  right: 20px;
}

.iv-footer {
  padding: 10px 20px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 10;
}

.iv-categories {
  display: flex;
  gap: 15px;
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.iv-cat {
  cursor: pointer;
}

.iv-cat.active {
  color: white;
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}

.iv-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  justify-content: center;
}

.iv-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.iv-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.iv-thumb {
  width: 60px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
  border: 2px solid transparent;
}

.iv-thumb.active {
  opacity: 1;
  border-color: white;
}

.iv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: #0071c2;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav .separator {
  margin: 0 8px;
  color: #999;
}

.breadcrumb-nav .current {
  color: #333;
  font-weight: 400;
}

/* Booking Page Styles */
.booking-page-wrapper {
  background-color: #f4f5f9;
  min-height: 100vh;
  padding-bottom: 50px;

  /* Better Font Family */
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: #0fb37e;
}

.booking-header-section {
  background: #333333;
  /* Dark gray to match logo theme */
  color: white;
  padding: 30px 0 70px 0;
  text-align: center;
  position: relative;
  margin-bottom: -50px;
  display: block;
}

.booking-hotel-name {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.booking-hotel-address {
  font-size: 11px;
  color: #555;
  margin-top: 3px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}

.booking-container {
  max-width: 1140px;
  margin: 20px auto;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 5;
  align-items: flex-start;
}

.booking-left-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 16px;
  position: relative;
  border: 1px solid #f0f0f0;
  margin-bottom: 10px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

/* Stay Details Card */
/* Stay Details Card */
.stay-details-card {
  display: flex;
  flex-direction: column;
}

.hotel-info-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}

.hotel-text-content {
  flex: 1;
}

.hotel-thumb-top {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  margin-left: 20px;
  margin-bottom: 15px;
  margin-top: 10px;
  /* Added margin top as requested */
  /* Added margin below image as requested */
}

.hotel-thumb-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-thumb {
  width: 140px;
  /* Slightly larger as requested 'moti' */
  height: 110px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 20px;
  margin-bottom: 10px;
}

.stay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-info-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f8faff;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px dashed #dceeff;
  flex-wrap: wrap;
}

.stay-dates-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stay-info-item {
  display: flex;
  flex-direction: column;
  min-width: 120px;
  position: relative;
}

.stay-label {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stay-label.text-green {
  color: #00bfa5;
}

.stay-date {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  white-space: nowrap;
}

.stay-date b {
  font-size: 15px;
  font-weight: 800;
  color: #000;
  margin: 0 4px;
}

.stay-time {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

.stay-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 10px;
}

.nights-badge {
  background: #fff;
  border: 1px solid #eee;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #555;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  z-index: 1;
}

.stay-duration::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #eee;
  z-index: 0;
  left: 0;
}

.guest-info-item {
  padding-left: 30px;
  border-left: 1px dashed #ccc;
  min-width: 140px;
}

@media (max-width: 768px) {
  .guest-info-item {
    padding-left: 0;
    border-left: none;
    border-top: 1px dashed #ccc;
    padding-top: 20px;
    margin-top: 10px;
    width: 100%;
  }
}

.stay-room-details {
  width: 100%;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
}

.stay-room-details:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.room-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.room-name-row h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.link-blue {
  color: #0fb37e;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.adults-info {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.room-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #444;
}

.room-features-list li {
  margin-bottom: 4px;
}

.cancel-policy-link {
  font-size: 13px;
  color: #0fb37e;
  text-decoration: none;
}

/* Important Info */
.info-box-yellow {
  background: #fff9e6;
  /* Lighter yellow */
  border: 1px solid #ffeeba;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #856404;
}

.info-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.view-more-link {
  color: #0fb37e;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

/* Guest Details Form */
.guest-form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.flex-grow-1 {
  flex: 1;
}

.title-select {
  width: 80px;
}

.title-select select {
  padding-right: 25px;
  /* Space for arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
}

.form-group label {
  font-size: 10px;
  font-weight: 700;
  color: #444;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.form-control {
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  color: #333;
  font-family: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
  font-weight: 400;
}

.form-control:focus {
  border-color: #0fb37e;
  box-shadow: 0 0 0 2px rgba(15, 179, 126, 0.1);
  background: #fff;
}

.input-group {
  display: flex;
}

.curr-select {
  width: 60px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: #f9f9f9;
  padding-left: 8px;
  /* Left padding for better alignment */
  padding-right: 22px;
  /* Space for arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 12px;
  text-align: left;
}

.input-group .form-control {
  border-radius: 0 4px 4px 0;
  flex: 1;
}

.gst-option {
  font-size: 14px;
}

#guestsContainer {
  margin-bottom: 8px;
}

.guest-item {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.guest-item:last-child {
  border-bottom: none;
}

.guest-number-title {
  font-size: 13px;
  font-weight: 700;
  color: #0fb37e;
  margin-bottom: 8px;
  margin-top: 0;
}

.guest-item:first-child .guest-number-title {
  display: none;
  /* Hide "Guest 1" for first guest */
}

.add-guest-link {
  color: #0fb37e;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  margin-top: -18px;
  display: block;
}

.login-prompt-bar {
  background: #e6fcf5;
  padding: 10px 15px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 13px;
  color: #0fb37e;
  font-weight: 600;
  gap: 4px;
}

.btn-login-sm {
  background: white;
  border: 1px solid #0fb37e;
  color: #0fb37e;
  padding: 4px 12px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

/* Trip Secure */
.trip-secure-card {
  padding: 0;
  overflow: hidden;
}

.secure-header {
  background: #e6fcf5;
  padding: 10px 15px;
  font-size: 13px;
  color: #006644;
  border-bottom: 1px solid #d0f0e0;
}

.secure-body {
  padding: 20px;
}

.secure-logo-row {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.secure-logo-row h4 {
  margin: 0;
  font-size: 16px;
}

.sub-text {
  font-size: 12px;
  color: #666;
}

.provider-logos {
  margin-left: auto;
}

.benefit-list {
  list-style: none;
  padding: 0;
  font-size: 13px;
}

.benefit-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.more-benefits {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #0fb37e;
  margin: 5px 0 15px;
  text-decoration: none;
}

.secure-price-info {
  font-size: 14px;
  margin-bottom: 15px;
}

.price-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -20px;
  width: 100%;
}

.secure-price-info span {
  font-size: 12px;
  color: #666;
  margin-left: 10px;
}

.secure-options {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.radio-option:last-child {
  border-bottom: none;
}

.radio-option input {
  margin-right: 10px;
  accent-color: #0fb37e;
}

/* Pay Button */
.agree-terms {
  font-size: 12px;
  color: #333;
  margin: 0px 0 15px 0;
}

.pay-now-btn {
  width: fit-content;
  background: linear-gradient(90deg, #0fb37e 0%, #0a8f63 100%);
  /* Green Gradient */
  color: white;
  border: none;
  padding: 13px 56px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  /* Rounded rectangle */
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(15, 179, 126, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  letter-spacing: 0.5px;
}

.pay-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 179, 126, 0.4);
  background: linear-gradient(90deg, #34d6a3 0%, #0fb37e 100%);
}

/* Right Col Styles */
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  /* margin-bottom: 8px; */
  color: #333;
}

.price-sub-text {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
  text-align: right;
}

.text-green {
  color: #0a7f1a;
}

.price-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
  color: #000;
  /* Black color for Total */
}

/* Coupons */
.coupon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.coupon-header h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.coupon-header a {
  font-size: 12px;
  color: #0fb37e;
  text-decoration: none;
}

.coupon-item {
  display: flex;
  border: 1px dashed #ccc;
  background: #fbfbfb;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  cursor: pointer;
}

.coupon-item.selected {
  border: 1px solid #0fb37e;
  background: #eef6ff;
}

.coupon-radio {
  margin-right: 10px;
  padding-top: 2px;
}

.coupon-radio input {
  accent-color: #0fb37e;
}

.coupon-details {
  flex: 1;
}

.c-code {
  font-weight: 700;
  font-size: 13px;
  color: #333;
}

.c-desc {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

.c-val {
  float: right;
  font-weight: 700;
  font-size: 13px;
  margin-top: -18px;
}

.coupon-input-box {
  display: flex;
  margin-top: 15px;
}

.coupon-input-box input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 13px;
}

.coupon-input-box button {
  background: #0fb37e;
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
}

.login-promo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.login-promo-card li {
  margin-bottom: 8px;
}

.login-promo-card i {
  color: #0a7f1a;
  margin-right: 8px;
}

.text-blue {
  color: #0fb37e;
}

/* Coupon refinement */
.coupon-item {
  border: 1px solid #e0e0e0;
  /* Solid border instead of dashed looks cleaner usually, revert if preferred */
  background: #fff;
  transition: all 0.2s;
}

.coupon-item:hover {
  background: #f9f9f9;
  border-color: #bbb;
}

.coupon-item.selected {
  background: #effbff;
  border-color: #0fb37e;
  box-shadow: 0 0 0 1px #0fb37e inset;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-container {
  background: white;
  width: 600px;
  max-width: 90%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: fadeIn 0.3s;
  position: relative;
}

.modal-header {
  padding: 15px 20px;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #5b86e5 0%, #36d1dc 100%);
  /* Blue-ish gradient */
  color: white;
  border-radius: 8px 8px 0 0;
}

.modal-header h2,
.modal-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: white;
  text-align: center;
  flex: 1;
}

.close-modal {
  font-size: 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  line-height: 1;
  position: static;
  /* Let flex handle it */
  margin-left: 10px;
  color: white;
}

.close-modal:hover {
  color: white;
}

.modal-body {
  padding: 25px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pay-now-mobile {
  display: none;
}

.sort-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* Room Type Dropdown Selector */
.room-types-selector {
  position: relative;
}

.room-type-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white;
  border: 2px solid #0fb37e;
  border-radius: 6px;
  padding: 10px 40px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #0fb37e;
  cursor: pointer;
  min-width: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230FB37E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: all 0.3s ease;
}

.room-type-dropdown:hover {
  background-color: #f0fdf9;
  border-color: #0a8f63;
}

.room-type-dropdown:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 179, 126, 0.2);
}

.room-type-dropdown option {
  color: #333;
  font-weight: 500;
  padding: 10px;
}

/* Room Selectors Row */
/* Custom Multi-Select Dropdown */
.custom-dropdown-wrapper {
  position: relative;
  min-width: 220px;
}

.custom-dropdown-trigger {
  background: white;
  border: 2px solid #0fb37e;
  border-radius: 6px;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.custom-dropdown-trigger:hover {
  background-color: #f0fdf9;
}

.custom-dropdown-trigger i {
  color: #0fb37e;
  font-size: 12px;
  transition: transform 0.3s;
}

.custom-dropdown-trigger.active i {
  transform: rotate(180deg);
}

.custom-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  /* Wider to accommodate text */
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  z-index: 100;
  padding: 8px 0;
}

.custom-dropdown-content.show {
  display: block;
  animation: fadeIn 0.2s ease;
}

.custom-checkbox-item {
  display: flex;
  align-items: center;
  padding: 4px 15px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 13px;
  color: #333;
}

.custom-checkbox-item:hover {
  background-color: #f8f9fa;
}

.custom-checkbox-item input[type="checkbox"],
.custom-checkbox-item input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
  accent-color: #0fb37e;
  width: 21px;
  height: 17px;
  cursor: pointer;
}

/* Hide radio buttons in room config meal selector as requested */
.room-meal-wrapper .custom-checkbox-item input[type="radio"] {
  display: none;
}

.custom-checkbox-item span {
  line-height: 1.4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.room-selectors-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-short-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
  margin-top: -5px;
}

/* Room Configuration Widget */
.room-config-container {
  background: #f9f9f9;
  border: 1px solid #eee;
  padding: 14px 14px 0px 14px;
  border-radius: 8px;
  /* margin-bottom: 20px; */
  width: 100%;
}

.Adults-flex {
  display: flex;
  gap: 15px;
}

.config-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.config-row {
  margin-bottom: 20px;
}

.config-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.config-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  font-size: 14px;
}

.config-select1 {
  width: 80%;
  padding: 6px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  font-size: 13px;
}

.config-select:focus {
  border-color: #0fb37e;
  outline: none;
}

.room-config-card {
  background: white;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 15px;
}

.room-config-title {
  font-size: 14px;
  font-weight: 700;
  color: #0fb37e;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.room-config-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}

@media (min-width: 768px) {
  .room-config-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.apply-config-btn {
  background: #0fb37e;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.apply-config-btn:hover {
  background: #0a8f63;
}

.room-meal-wrapper .custom-dropdown-trigger {
  border: 1px solid #ddd;
  padding: 6px 10px;
  color: #666;
}

/* =========================================
   RESPONSIVE STYLES (ALL PAGES)
   ========================================= */
@media (max-width: 1024px) {


  .update-search-container {
    width: auto;
    margin: 20px !important;
    flex-wrap: wrap;
  }

  .room-list-container {
    width: auto;
    margin: 20px !important;
  }

  .location-section-container {
    width: auto;
    margin: 20px !important;
  }

  .booking-container {
    margin: 20px;
  }

  .room-config-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 15px;
  }

  .room-config-container {
    width: auto !important;
    /* margin: 20px !important; */
  }
}

/* Tablet & Smaller Laptops (max-width: 991px) */
@media (max-width: 991px) {

  /* Booking Page */
  .booking-container {
    flex-direction: column;
  }

  .booking-left-col,
  .booking-right-col {
    width: 100%;
    flex: none;
  }

  .booking-right-col {
    flex-direction: column;
  }

  .pay-now-desktop {
    display: none;
  }

  .pay-now-mobile {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Adjust header overlap */
  .booking-header-section {
    padding-bottom: 40px;
    margin-bottom: -20px;
  }

  .booking-hotel-name {
    font-size: 20px;
    padding: 0 10px;
  }

  /* Hotel Details Page (Ensure existing responsive is robust) */
  .hotel-page-container {
    flex-direction: column;
  }

  .left-content,
  .right-sidebar {
    width: 100%;
  }

  .right-sidebar {
    margin-top: 20px;
  }

  .stay-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  /* Global Container Padding */

  .hotel-page-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Booking Page - Stay Card */
  .stay-details-card {
    flex-direction: column;
  }

  .stay-thumb {
    width: 100%;
    height: 180px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .hotel-info-header {
    flex-direction: column;
  }

  .hotel-thumb-top {
    display: none;
    /* Hide small thumb on mobile if redundant */
  }

  /* Stack Check-in/Check-out */


  .stay-guests {
    margin-left: inherit;
  }

  .stay-info-item {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
    margin-bottom: 0px;
  }

  .stay-label {
    font-size: 11px;
  }

  .stay-date {
    font-size: 16px;
  }

  .stay-duration {
    display: none;
    /* Hide "1 Night" badge in middle of flow, show elsewhere if needed */
  }


  /* Trip Secure */
  .secure-logo-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .provider-logos {
    margin-left: 0;
    margin-top: 10px;
  }

  .benefit-list li {
    flex-direction: column;
    gap: 5px;
  }

  .benefit-list li span:last-child {
    font-weight: 700;
    color: #333;
  }

  /* Pay Button */
  .pay-now-btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 15px;
  }

  /* Modals */
  .modal-container {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .close-modal {
    right: 10px;
    top: 10px;
  }

  .hotel-header h1 {
    font-size: 17px;
  }

  .gallery-container {
    height: 170px;
  }

  .iv-header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .iv-image-container img {
    height: 18vh;
  }

  .amenities-grid-group {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }

  .amenity-column br {
    display: none;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .booking-hotel-name {
    font-size: 18px;
  }

  .price-total-row {
    font-size: 18px;
  }

  .c-val {
    float: none;
    display: block;
    margin-top: 5px;
  }

  .stay-info-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Selected Rooms Summary */
.selected-rooms-summary {
  background: #f8fffe;
  border: 1px solid #d1f4e8;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0fb37e;
  margin-bottom: 12px;
}

.summary-rooms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-room-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
}

.room-number {
  font-weight: 600;
  color: #333;
  min-width: 60px;
}

.room-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.room-type {
  color: #333;
  font-weight: 600;
}

.room-guests {
  color: #666;
  font-size: 12px;
}

@media (max-width: 768px) {
  .selected-rooms-summary {
    padding: 12px;
  }

  .summary-room-item {
    flex-direction: column;
    gap: 5px;
  }

  .room-number {
    min-width: auto;
  }
}

/* Room Configuration Styles */
.room-config-container {
  background: white;
  border-radius: 12px;
  padding: 14px 14px 0px 14px;
  /* margin: 20px auto; */
  /* width: 1140px; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.config-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.config-row {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.config-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  /* min-width: 220px; */
  min-width: 90px;
}

.config-select {
  padding: 8px 40px 8px 15px;
  /* Added right padding for arrow space */
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  min-width: 100%;
  cursor: pointer;
  appearance: none;
  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  color: #666;
}

.config-select-one {
  min-width: 200px;
}

.config-select:focus {
  outline: none;
  border-color: #0fb37e;
}

.room-config-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 20px 20px 20px;
  margin-bottom: 15px;
}

.room-config-title {
  font-size: 15px;
  font-weight: 700;
  color: #0fb37e;
  margin-bottom: 15px;
}

.room-config-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.config-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}

/* Specific Layout for Top Level Config Fields (Room Type & Meal Plan) - Horizontal */
.room-config-grid>.config-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-config-grid>.config-field label {
  margin-bottom: 0;
  margin-right: 15px;
  width: 20%;
  min-width: 80px;
}

.custom-dropdown-wrapper>.custom-dropdown-content-width label {
  margin-bottom: 0;
  margin-right: 15px;
  width: 100% !important;
  min-width: 100px;
}

.room-config-grid>.config-field .config-select,
.room-config-grid>.config-field .custom-dropdown-wrapper {
  width: 80%;
  min-width: 0;
  /* Override default 100% */
}

.apply-config-btn {
  background: linear-gradient(90deg, #0fb37e 0%, #0a8f63 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s;
}

.apply-config-btn:hover {
  transform: translateY(-2px);
}

.config-summary {
  background: #f0fdf4;
  border: 2px solid #0fb37e;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

/* Meal Plan Checkboxes */
.meal-plan-field {
  grid-column: span 2;
}

.meal-plan-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.meal-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.meal-checkbox:hover {
  background: #f3f4f6;
}

.meal-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.meal-checkbox span {
  color: #333;
}

/* Custom Multi-Select Dropdown */
.custom-multiselect {
  position: relative;
}

.multiselect-trigger {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
}

.multiselect-trigger:hover {
  border-color: #0fb37e;
}

.selected-text {
  color: #333;
  font-size: 14px;
}

.multiselect-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.multiselect-dropdown.active {
  display: block;
}

.multiselect-option {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  cursor: pointer;
  transition: background 0.2s;
}

label.multiselect-option {
  margin-bottom: 0;
}

.multiselect-option:hover {
  background: #f3f4f6;
}

.multiselect-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.multiselect-option span {
  font-size: 14px;
  color: #333;
}

@media (max-width: 991px) {
  .room-config-container {
    padding: 20px;
  }

  .room-config-grid {
    grid-template-columns: 1fr;
  }

  .config-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .config-label {
    min-width: auto;
  }

  .config-select {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .room-config-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

/* Sticky Booking Bar & Modal Styles (Moved from hotel-details.php) */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10002;
}

.toast {
  background: #333;
  color: white;
  padding: 12px 24px;
  margin-bottom: 10px;
  border-radius: 8px;
  animation: slideInRight 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Segoe UI", sans-serif;
  min-width: 250px;
}

.toast.error {
  background: #ff5252;
}

.toast.success {
  background: #0fb37e;
}

.toast i {
  font-size: 1.2rem;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Sticky Bar Styles */
.sticky-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0fb37e 0%, #0a8f63 100%);
  color: white;
  padding: 12px 20px;
  z-index: 10000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  font-family: "Segoe UI", sans-serif;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.booking-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  /* Increased from 1200px to give more space */
  width: 100%;
  /* Use more width on smaller large screens */
  margin: 0 20px;
}

.booking-info {
  display: flex;
  align-items: center;
  width: 80%;
  /* Ensure full width usage */
  flex: 1;
  margin-right: 20px;
  height: 100%;
  /* helpful */
}

.booking-info::-webkit-scrollbar {
  display: none;
}

.booking-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* Distribute space equally */
  min-width: 0;
  /* Allow shrinking */
  padding: 0 5px;
  /* Add some padding for spacing if shrunk */
}

.booking-separator {
  width: 1px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 5px;
  /* Reduced from 15px to save space */
}

/* Default / Sm (1-2 items) */
.booking-info.cart-size-sm .booking-room-name {
  font-size: 14px;
}

.booking-info.cart-size-sm .booking-details {
  font-size: 12px;
}

/* Medium (3-4 items) */
.booking-info.cart-size-md .booking-room-name {
  font-size: 0.8rem;
}

.booking-info.cart-size-md .booking-details {
  font-size: 0.7rem;
}

/* Large (5-6 items) - Compact text */
.booking-info.cart-size-lg .booking-room-name {
  font-size: 0.7rem;
  /* Reduced back for 6 items fit */
}

.booking-info.cart-size-lg .booking-details {
  font-size: 0.6rem;
  /* Reduced back for 6 items fit */
}

.booking-room-name {
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* width: 290px; */
}

.added-msg {
  width: 150px;
}

.booking-details {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-more-details {
  font-size: 0.85rem;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
  display: inline-block;
  transition: all 0.2s;
}

.booking-more-details:hover {
  border-bottom: 1px solid #fff;
  opacity: 1;
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  /* Prevent shrinking */
}

.booking-price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bp-total {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  /* Prevent wrapping */
}

.booking-price {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  /* Prevent wrapping */
}

.booking-btn-book {
  background: white;
  color: #0fb37e;
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.booking-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
  color: #0a8f63;
}

/* Modal Styles - Premium Redesign */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.premium-modal {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  width: 90%;
  max-width: 420px;
  font-family: "Segoe UI", sans-serif;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: white;
  animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.pm-header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.pm-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.cart-close {
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.pm-body {
  padding: 25px;
  background: #fff;
}

.pm-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f4f4f4;
}

.pm-icon {
  width: 40px;
  height: 40px;
  background: #f0f4ff;
  color: #2575fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.1rem;
}

.pm-label {
  flex: 1;
  font-weight: 500;
  color: #555;
  font-size: 1rem;
}

.pm-value {
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
}

.pm-divider {
  height: 15px;
}

.pm-total-row {
  background: #fdfdfd;
  border: 1px dashed #2575fc;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.pm-total-label {
  font-weight: 600;
  color: #2575fc;
  font-size: 1.1rem;
}

.pm-total-value {
  font-weight: 800;
  color: #2575fc;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .booking-bar-content {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .booking-info {
    justify-content: flex-start;
    padding-bottom: 5px;
  }

  .booking-actions {
    justify-content: space-between;
    gap: 15px;
  }

  .booking-price {
    font-size: 1.2rem;
  }
}

/* Responsive Styles - Added */
@media (max-width: 991px) {
  .booking-container {
    flex-direction: column;
    gap: 10px;
  }

  .booking-right-col {
    gap: 10px;
  }

  .booking-page-wrapper {
    padding-bottom: 15px;
  }

  .agree-terms {
    margin: 0;
  }

  .booking-left-col,
  .booking-right-col {
    width: 100%;
    flex: none;
  }

  /* Room Card Responsive */
  .room-card-wide {
    flex-direction: column;
  }

  .room-img-col {
    width: 100%;
    height: 220px;
  }

  .room-img-col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .room-info-col {
    width: 100%;
    padding: 15px;
    /* Reduced padding */
    border-left: none;
    border-top: 1px solid #f0f0f0;
  }

  /* Hotel Info Header */
  .hotel-info-header {
    flex-direction: column;
  }

  .hotel-thumb-top {
    margin-left: 0;
    margin-top: 15px;
    width: 100px;
    align-self: flex-start;
  }



  .input-group {
    width: 100%;
  }

  .price-row {
    font-size: 14px;
  }

  .pay-now-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .booking-hotel-name {
    font-size: 20px;
  }

  .booking-header-section {
    padding: 20px 0 50px 0;
  }

  .room-name-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .amenities-grid-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Sticky Bar Mobile Tweaks */
  .booking-actions {
    gap: 10px;
  }

  /* .booking-btn-book {
        padding: 10px 20px;
        font-size: 0.9rem;
    } */

  .booking-price {
    font-size: 1.1rem;
  }

  .bp-total {
    font-size: 0.7rem;
  }

  /* Make rate plan table scrollable */
  .rate-plan-row {
    flex-direction: column;
    gap: 15px;
  }

  .rate-plan-details,
  .rate-pricing {
    width: 100%;
    text-align: left;
  }

  .rate-pricing {
    border-left: none;
    padding-left: 0;
    border-top: 1px dashed #eee;
    padding-top: 15px;
    padding-bottom: 0;
  }


}

/* Custom Tooltip Styles */
.tooltip-container {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.custom-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 220px;
  background-color: black;
  color: #fff;
  border-radius: 4px;
  padding: 10px;
  position: absolute;
  z-index: 1000;
  bottom: 130%;
  /* Position above */
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.custom-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  /* At bottom of tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip-container:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
}

.tooltip-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.tooltip-divider {
  border-bottom: 1px solid #333;
  margin: 4px 0;
}

/* Terms Page Styles - Ultra Premium */
.terms-wrapper {
  padding: 40px 0;
  /* min-height: calc(100vh - 400px); */
  background-color: #f7f9fc;
  /* font-family: 'Lato', sans-serif; */
}

.terms-container {
  max-width: 1140px;
  margin: 0 auto;
  background: #ffffff;
  padding: 25px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.terms-header {
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f4f8;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.terms-header h1 {
  font-size: 30px;
  margin-bottom: 6px;
  margin-top: 0;
  font-weight: 900;
  color: #1a2b4b;
  letter-spacing: -1px;
  background: linear-gradient(120deg, #1a2b4b 0%, #0fb37e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.last-updated {
  color: #64748b;
  font-size: 12px;
  margin: 0;
  font-weight: 600;
  background: #f1f5f9;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.terms-content {
  color: #475569;
}

.terms-content h2 {
  font-size: 17px;
  color: #1e293b;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  margin-left: -16px;
}

.terms-content h2::before {
  margin-right: -16px;
  /* content: '';
    display: inline-block;
    width: 6px;
    height: 25px;
    background: #0FB37E;
    border-radius: 3px;
    box-shadow: 0 4px 10px rgba(15, 179, 126, 0.3); */
}

.terms-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #475569;
}

.terms-content ul {
  margin-bottom: 10px;
  padding-left: 0;
  list-style-type: none;
}

.terms-content li {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
  transition: all 0.2s ease;
}

.terms-content li:hover {
  transform: translateX(10px);
}

.terms-content li::before {
  content: "\f058";
  /* FontAwesome Check Circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #0fb37e;
  font-size: 15px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 4px;
  transition: all 0.2s ease;
}

.terms-content li:hover::before {
  transform: scale(1.1);
}

.intro-text {
  font-weight: 500;
  color: #334155;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.9;
  border-left: 5px solid #0fb37e;
  padding-left: 30px;
  background: linear-gradient(to right, #f0fdf7, transparent);
  padding: 15px 20px;
  border-radius: 0 12px 12px 0;
}

.terms-content strong {
  color: #0f172a;
  font-weight: 600;
}

/* Cart Tooltip Styles */
.cart-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 220px;
  background-color: black;
  color: #fff;
  border-radius: 4px;
  padding: 10px;
  position: absolute;
  z-index: 1000;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.cart-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.booking-item:hover .cart-tooltip {
  visibility: visible;
  opacity: 1;
}

.booking-more-details {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 5px;
  position: relative;
  display: inline-block;
}

.booking-more-details:hover {
  color: #fff;
}

/* Booking Cart Hover Styles */
.booking-item {
  position: relative;
  padding: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

/* Global Cart Tooltip (Appended to Body) */
.cart-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 260px;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 8px;
  padding: 15px;
  position: fixed;
  z-index: 100000;
  /* Max z-index */
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: left;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s,
    transform 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-tooltip.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Tooltip Arrow */
.cart-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.ct-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  line-height: 1.4;
}

.ct-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 8px 0;
}

.summary-line {
  display: flex;
  gap: 20px;
}

.menu-new a {
  position: relative;
}

.new-badge {
  position: absolute;
  top: -14px !important;
  right: -4px !important;
  background: #ff3b3b;
  color: #fff;
  font-size: 9px !important;
  font-weight: 500 !important;
  padding: 1px 7px;
  border-radius: 12px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Multimedia Modal Styles */
.multimedia-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  flex-direction: column;
}

.mm-modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.mm-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mm-back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.mm-back-btn i {
  font-size: 18px;
}

.mm-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mm-view-all-link {
  color: #0fb37e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.mm-view-all-link:hover {
  text-decoration: underline;
}

.mm-close-btn {
  color: white;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
}

.mm-close-btn:hover {
  color: #0fb37e;
}

.mm-modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mm-main-viewer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.mm-image-container {
  max-width: 80%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-image-container img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 8px;
}

.mm-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 20px;
  transition: all 0.3s;
}

.mm-nav-arrow:hover {
  background: rgba(15, 179, 126, 0.8);
}

.mm-nav-arrow.left {
  left: 30px;
}

.mm-nav-arrow.right {
  right: 30px;
}

.mm-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.8);
  flex-wrap: wrap;
}

.mm-cat {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
}

.mm-cat:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mm-cat.active {
  background: #0fb37e;
  color: white;
}

.mm-thumbnails {
  display: flex;
  gap: 10px;
  padding: 15px 20px;
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mm-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.mm-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.mm-thumbnails::-webkit-scrollbar-thumb {
  background: #0fb37e;
  border-radius: 3px;
}

.mm-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.mm-thumb:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.mm-thumb.active {
  border-color: #0fb37e;
}

.mm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .mm-modal-header {
    padding: 12px 15px;
  }

  .mm-back-btn span {
    font-size: 13px;
    font-weight: 600;
  }

  .mm-nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .mm-nav-arrow.left {
    left: 10px;
  }

  .mm-nav-arrow.right {
    right: 10px;
  }

  .mm-image-container {
    max-width: 95%;
  }

  .mm-categories {
    gap: 5px;
    padding: 10px;
  }

  .mm-cat {
    padding: 6px 12px;
    font-size: 12px;
  }

  .agree-terms {
    margin: 0;
  }

  .booking-container {
    gap: 10px;
  }

  .booking-page-wrapper {
    padding: 20px;
  }
}

.login-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.login-modal-wrapper {
  background: #fff;
  width: 100%;
  max-width: 950px;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalScaleUp 0.3s ease-out;
  margin: 40px;
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.login-modal-left {
  flex: 1.1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1000&auto=format&fit=crop");
  background-size: cover;
  background-position: top;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.login-promo-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  color: #000;
}

.login-promo-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0fb37e;
}

.login-promo-text {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.login-modal-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.login-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
}

.login-close-btn:hover {
  background: #e1e1e1;
  transform: rotate(90deg);
}

.account-toggle {
  display: flex;
  background: #f8f9fa;
  padding: 6px;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.toggle-item {
  flex: 1;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.3s;
  color: #666;
}

.toggle-item.active {
  background: linear-gradient(90deg, #248afe, #0363ff);
  color: #fff;
  box-shadow: 0 4px 10px rgba(3, 99, 255, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
  display: block;
}

.mobile-input-wrapper {
  display: flex;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s;
}

.mobile-input-wrapper:focus-within {
  border-color: #0363ff;
  box-shadow: 0 0 0 4px rgba(3, 99, 255, 0.1);
}

.country-code {
  padding: 0 15px;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-right: 1px solid #eee;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  gap: 8px;
}

.country-code img {
  width: 20px;
  border-radius: 2px;
}

.mobile-field {
  flex: 1;
  padding: 14px 15px;
  border: none;
  outline: none;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.login-continue-btn {
  background: #003580;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 53, 128, 0.2);
  width: 100%;
}

.login-continue-btn:hover {
  background: #002255;
  transform: translateY(-2px);
}

.auth-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0;
  color: #888;
  font-size: 13px;
}

.auth-separator::before,
.auth-separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #eee;
}

.auth-separator:not(:empty)::before {
  margin-right: 15px;
}

.auth-separator:not(:empty)::after {
  margin-left: 15px;
}

.social-auth-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.social-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  font-size: 20px;
}

.social-btn:hover {
  background: #f8f9fa;
  border-color: #ddd;
  transform: scale(1.1);
}

.login-footer {
  margin-top: auto;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  text-align: center;
}

.login-footer a {
  color: #0363ff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .login-modal-left {
    display: none;
  }

  .login-modal-wrapper {
    max-width: 400px;
    height: auto;
  }
}

.login-modal-overlay,
.otp-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.login-modal-wrapper,
.otp-modal-wrapper {
  background: #fff;
  width: 100%;
  max-width: 950px;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalScaleUp 0.3s ease-out;
}

.otp-modal-wrapper {
  max-width: 450px;
  height: auto;
  padding: 40px;
  flex-direction: column;
  text-align: center;
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.login-modal-left {
  flex: 1.1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
    url("https://img.freepik.com/premium-photo/black-limousine-parked-front-grand-hotel-night_1298309-37972.jpg?w=740");
  background-size: cover;
  background-position: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.login-promo-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  color: #000;
}

.login-promo-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0fb37e;
}

.login-promo-text {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.login-modal-right {
  flex: 1.2;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
}

.login-close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
}

.login-close-btn:hover {
  background: #e1e1e1;
  transform: rotate(90deg);
}

.account-toggle {
  display: flex;
  background: #f8f9fa;
  padding: 6px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid #eee;
}

.toggle-item {
  flex: 1;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.3s;
  color: #666;
}

.toggle-item.active {
  background: linear-gradient(90deg, #79eec8, #0fb37e);
  color: #fff;
  box-shadow: 0 4px 10px rgba(3, 99, 255, 0.3);
}

/* Signup Grid Layout */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 0 15px;
  transition: 0.2s;
  background: #fff;
  position: relative;
}

.input-wrapper:focus-within {
  border-color: #0fb37e;
  box-shadow: 0 0 0 3px rgba(15, 179, 126, 0.1);
}

.input-wrapper i {
  color: #0fb37e;
  width: 20px;
  font-size: 16px;
  position: static;
  flex-shrink: 0;
}

.form-input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  min-width: 0;
}

.password-toggle {
  cursor: pointer;
  color: #0fb37e !important;
  font-size: 16px !important;
  flex-shrink: 0;
  margin-left: auto;
  width: 20px;
  text-align: center;
  position: static !important;
}

i.password-toggle {
  position: static !important;
}

.login-continue-btn {
  background: #0fb37e;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 53, 128, 0.2);
  width: 100%;
  margin-top: 10px;
  border: 2px solid transparent;
}

.login-continue-btn:hover {
  background: transparent;
  border-color: #0fb37e;
  color: #0fb37e;
  transform: translateY(-2px);
}

.auth-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #888;
  font-size: 12px;
}

.auth-separator::before,
.auth-separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #eee;
}

.auth-separator:not(:empty)::before {
  margin-right: 15px;
}

.auth-separator:not(:empty)::after {
  margin-left: 15px;
}

.social-auth-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.social-btn:hover {
  background: #f8f9fa;
  transform: scale(1.1);
}

.login-footer {
  margin-top: 20px;
  font-size: 11px;
  color: #888;
  text-align: center;
}

/* OTP Styles */
.otp-header h2 {
  color: #0fb37e;
  margin-bottom: 10px;
}

.otp-header p {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}

.otp-input-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.otp-digit {
  width: 45px;
  height: 55px;
  border: 2px solid #ddd;
  border-radius: 8px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  outline: none;
  transition: 0.2s;
}

.otp-digit:focus {
  border-color: #0fb37e;
  box-shadow: 0 0 0 4px rgba(36, 138, 254, 0.1);
}

.resend-link {
  color: #0fb37e;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .login-modal-left {
    display: none;
  }

  .login-modal-wrapper {
    max-width: 400px;
    width: 95%;
    height: auto;
    margin: 10px;
  }

  .login-modal-right {
    padding: 30px 20px;
  }

  .signup-grid {
    grid-template-columns: 1fr;
  }

  /* Fix Google button overflow on mobile */
  #google-login-btn {
    width: 100% !important;
    max-width: 100% !important;
  }

  #google-login-btn>div {
    width: 100% !important;
    max-width: 100% !important;
  }

  #google-login-btn iframe {
    width: 100% !important;
    max-width: 100% !important;
  }

  .social-auth-group {
    width: 100%;
    overflow: hidden;
  }

  .auth-separator {
    font-size: 12px;
    margin: 20px 0;
  }

  .login-continue-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

.navigation {
  width: 100%;
  padding-top: 6px;
}

.navigation i {
  width: 25px;
  border-radius: 50px;
  float: left;
  color: #333;
  margin-right: -10px;
}

.navigation .logout {
  font-size: 0.8em;
  font-family: "Oswald", sans-serif;
  position: relative;
  right: -9px;
  bottom: -2px;
  overflow: hidden;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.45s;
  -webkit-transition: opacity 0.35s;
}

.navigation .button {
  text-decoration: none;
  float: right;
  padding: 9px;
  margin: -4px;
  color: white;
  width: 47px;
  /* background-color: black; */
  transition: width 0.35s;
  -webkit-transition: width 0.35s;
  overflow: hidden;
}

.navigation a:hover {
  width: 100px;
}

.navigation a:hover .logout {
  opacity: 0.9;
}

.navigation a {
  text-decoration: none;
}

/* Footer Styles (Matching Header) */
footer {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(15, 179, 126, 0.1);
  padding: 60px 0 20px;
  color: #333;
  border-top: 1px solid rgba(15, 179, 126, 0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #0fb37e;
  font-weight: 700;
}

.footer-column p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-column a {
  display: block;
  color: #555;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #156c4b;
  padding-left: 5px;
}

.footer-column .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-column .social-links a {
  display: flex;
  width: 36px;
  height: 36px;
  background: #f0fdf9;
  color: #0fb37e;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin: 0;
  padding: 0;
}

.footer-column .social-links a:hover {
  background: #156c4b;
  color: white;
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
  /* Added margin to ensure visibility relative to mobile fixed bar */
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .copyright {
    /* margin-bottom: 10px !important; */
    /* padding-bottom: 10px; */
  }
}

.guest-option .main-rooms-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.guest-optionmain-rooms-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.child-age-row select {
  width: 100%;
  padding: 4px 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.room-child-ages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0px 30px 8px 24px;
  border-bottom: 1px dashed #eee;
}

.child-ages-container {
  display: flex;
  flex-wrap: wrap;
}

/* --- Agent Dashboard Styles --- */
.agent-dashboard-wrapper {
  background-color: #f8fafc;
  padding: 15px 0;
  min-height: calc(100vh - 120px);
  font-family: 'Outfit', sans-serif;
}

.dashboard-header {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 15px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.dashboard-header::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #0fb37e;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.dashboard-header h2 {
  font-size: 20px !important;
  margin: 0;
  color: #1e293b !important;
  letter-spacing: -0.5px;
}

.dashboard-header p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #64748b !important;
}

.wallet-display {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
  border-radius: 50px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.wallet-display:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(22, 163, 74, 0.15);
  border-color: #86efac;
}

.wallet-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}

.wallet-info {
  display: flex;
  flex-direction: column;
}

.wallet-label {
  font-size: 11px;
  color: #166534;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.wallet-amount {
  font-size: 16px;
  color: #14532d;
  font-weight: 700;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(241, 245, 249, 1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1;
  cursor: default;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(15, 179, 126, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(15, 179, 126, 0.3);
}

.stat-card:hover::before {
  width: 250px;
  height: 250px;
}

.stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: #ecfdf5;
  color: #059669;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stat-card:hover .stat-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-details h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-details h3 {
  color: #0fb37e;
}

.stat-details p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.charts-row {
  display: grid;
  grid-template-columns: 65% 33%;
  gap: 15px;
  margin-bottom: 15px;
}

.chart-container {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(241, 245, 249, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 5;
  position: relative;
  min-width: 0;
}

.chart-header {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e2e8f0;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  z-index: 10;
}

.chart-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.chart-select {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 8px;
  color: #64748b;
  font-size: 12px;
  outline: none;
  background: #f8fafc;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  min-width: 100px;
  z-index: 20;
  position: relative;
  -webkit-appearance: auto;
  appearance: auto;
}

.chart-body {
  flex-grow: 1;
  min-height: 220px;
  position: relative;
  width: 100%;
  z-index: 5;
}

.chart-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.destinations-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.destination-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dest-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.dest-value {
  font-weight: 700;
  color: #0fb37e;
  background: rgba(15, 179, 126, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
}

.dest-progress {
  height: 6px;
  background-color: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.dest-bar {
  height: 100%;
  background: linear-gradient(90deg, #34d399, #059669);
  border-radius: 3px;
  transition: width 1s ease-in-out;
}

.recent-activity-section {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(241, 245, 249, 1);
  margin-bottom: 20px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.activity-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #cbd5e1;
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.activity-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

.status-success .activity-icon-wrapper {
  background: #dcfce7;
  color: #16a34a;
}

.status-success::after {
  background: #16a34a;
}

.status-action .activity-icon-wrapper {
  background: #dbeafe;
  color: #2563eb;
}

.status-action::after {
  background: #2563eb;
}

.status-pending .activity-icon-wrapper {
  background: #fef3c7;
  color: #d97706;
}

.status-pending::after {
  background: #d97706;
}

.status-cancel .activity-icon-wrapper {
  background: #fee2e2;
  color: #dc2626;
}

.status-cancel::after {
  background: #dc2626;
}

.theme-text {
  color: #0fb37e;
}

/* --- Agent Control Panel Styles --- */
.cp-wrapper {
  padding: 30px 0;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card-unique {
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #0fb37e;
}

.stat-card-unique:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stat-card-unique::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(15, 179, 126, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 0 0 0 100%;
  transition: width 0.3s ease, height 0.3s ease;
}

.stat-card-unique:hover::after {
  width: 150px;
  height: 150px;
}

.stat-title {
  font-size: 13px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

.cp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cp-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: 100%;
  border: 1px solid #e2e8f0;
}

.cp-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e2e8f0;
}

.cp-card-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

.cp-card-header i {
  color: #0fb37e;
  font-size: 15px;
  background: rgba(15, 179, 126, 0.1);
  padding: 8px;
  border-radius: 8px;
  height: 32px;
  width: 40px;
}

.management-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.mgmt-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.mgmt-link-item:hover {
  background-color: #f8fafc;
  color: #0fb37e;
  transform: translateX(5px);
}

.mgmt-link-item i {
  width: 20px;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.2s;
}

.mgmt-link-item:hover i {
  color: #0fb37e;
}

.pending-badge {
  background: #fff1f2;
  color: #e11d48;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: auto;
  font-weight: 600;
}

.reports-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.report-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
}

.report-item:hover {
  background-color: #f0fdf4;
  color: #0fb37e;
}

.report-item i {
  font-size: 12px;
  color: #cbd5e1;
}

.report-item:hover i {
  color: #0fb37e;
}

.wallet-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wallet-balance-row {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.finance-actions a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #64748b;
  font-size: 14px;
  padding: 8px 0;
  transition: color 0.2s;
}

.finance-actions a:hover {
  color: #0fb37e;
}

.finance-actions a i {
  width: 20px;
}

.markup-table {
  width: 100%;
  border-collapse: collapse;
}

.markup-table td {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  color: #1e293b;
}

.markup-table tr:last-child td {
  border-bottom: none;
}

.markup-val {
  font-weight: 600;
  text-align: right;
}

.markup-edit i {
  color: #64748b;
  cursor: pointer;
  font-size: 12px;
  transition: color 0.2s;
}

.markup-edit i:hover {
  color: #0fb37e;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
}

.support-item i {
  color: #ef4444;
  width: 20px;
  text-align: center;
}

.support-item.status-highlight {
  color: #1e293b;
  font-weight: 500;
}

@media (max-width: 991px) {

  .cp-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .management-links {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .charts-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .agent-dashboard-wrapper {
    padding: 10px 0;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 12px;
  }

  .stat-details h3 {
    font-size: 20px;
  }

  .charts-row {
    margin-bottom: 20px;
    gap: 15px;
  }
}

/* --- Agent Account Information Styles (Titanium Crystal Emerald) --- */
.agent-account-wrapper {
  background: radial-gradient(circle at 50% 0%, #fcfdfe 0%, #f1faf7 100%);
  padding: 20px 0;
  font-family: 'Outfit', sans-serif;
  min-height: 90vh;
}

.titanium-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.titanium-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}



.titanium-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.titanium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: #0fb37e;
}

.titanium-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.titanium-header i {
  background: linear-gradient(135deg, #0d9488 0%, #17e9a5 100%);
  color: #ffffff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(15, 179, 126, 0.2);
}

.titanium-header h2 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.titanium-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.titanium-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.titanium-item:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.titanium-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 32%;
}

.titanium-value {
  font-size: 14px;
  color: #1e293b;
  font-weight: 700;
  text-align: right;
  flex: 1;
  padding-left: 20px;
}

.titanium-badge {
  /* background: #ecfdf5; */
  color: #065f46;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.titanium-status-ok {
  color: #059669;
  background: #ecfdf5;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.titanium-doc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.titanium-doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s;
}

.titanium-doc-item:hover {
  border-color: #0fb37e;
  background: #f0fdf9;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.doc-link i {
  color: #ef4444;
  font-size: 18px;
}

.view-btn {
  font-size: 11px;
  font-weight: 800;
  color: #0fb37e;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Titanium Hero Bar */
.titanium-hero-bar {
  background: #0f172a;
  border-radius: 18px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.titanium-hero-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(15, 179, 126, 0.1) 0%, transparent 100%);
}

.hero-left-content {
  position: relative;
  z-index: 2;
}

.hero-sub-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.hero-main-value {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

.hero-main-value span {
  color: #0fb37e;
}

.hero-right-action {
  position: relative;
  z-index: 2;
}

.titanium-ledger-btn {
  background: #ffffff;
  color: #0f172a;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  transition: all 0.3s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.titanium-ledger-btn:hover {
  background: #0fb37e;
  color: #ffffff;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .titanium-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .titanium-hero-bar {
    text-align: center;
    padding: 30px;
    gap: 30px;
  }

  .hero-main-value {
    font-size: 32px;
  }

  .titanium-item {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
  }

  .titanium-label {
    width: auto;
    min-width: 100px;
    font-size: 11px;
  }

  .titanium-value {
    padding-left: 0;
    text-align: right;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .titanium-hero-bar {
    padding: 20px;
    gap: 20px;
  }

  .hero-main-value {
    font-size: 28px;
  }

  .titanium-card {
    padding: 18px;
  }

  .titanium-header h2 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .agent-account-wrapper {
    padding: 15px 0;
  }

  .titanium-hero-bar {
    padding: 20px 15px;
    gap: 15px;
    flex-direction: column;
  }

  .hero-main-value {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .hero-sub-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .titanium-ledger-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 15px;
    font-size: 12px;
  }

  .titanium-card {
    padding: 15px;
    border-radius: 14px;
  }

  .titanium-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 10px 12px;
  }

  .titanium-label {
    width: 100%;
    font-size: 10px;
    margin-bottom: 2px;
  }

  .titanium-value {
    width: 100%;
    text-align: left;
    font-size: 12px;
    padding-left: 0;
  }

  .titanium-doc-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .doc-link {
    width: 100%;
  }

  .titanium-header h2 {
    font-size: 15px;
  }

  .titanium-header i {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

/* --- Wallet Add Funds Modal (Emerald Premium) --- */
.wallet-modal-overlay {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wallet-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  /* overflow: hidden; */
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wallet-modal-header,
.modal-header-premium,
.modal-header-traveller,
.modal-header-upload,
.modal-header-simple,
.status-modal-header,
.room-modal-header,
.cancel-modal-header,
.amenities-modal .modal-header,
.modal-header {
  background: linear-gradient(135deg, #0d9488 0%, #17e9a5 100%);
  padding: 15px 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
}

.wallet-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.wallet-modal-close:hover {
  background: white;
  color: #0fb37e;
  transform: rotate(90deg);
}

@media (max-width: 480px) {
  .wallet-modal-content {
    width: 95%;
    max-width: none !important;
    border-radius: 12px;
  }

  .wallet-modal-body {
    padding: 15px !important;
  }

  .wallet-modal-header h3 {
    font-size: 14px;
  }
}

.wallet-step {
  display: none;
  padding: 20px;
}

.wallet-step.active {
  display: block;
}

.wallet-amount-input-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.wallet-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 15px;
  font-size: 22px;
  font-weight: 800;
  color: #0fb37e;
}

.wallet-input-wrapper input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 2px solid #f1f5f9;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  outline: none;
  transition: all 0.3s;
  background: #f8fafc;
}

.wallet-input-wrapper input:focus {
  border-color: #0fb37e;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 179, 126, 0.1);
}

.wallet-hint {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
  font-weight: 500;
}

.quick-amounts {
  display: flex;
  gap: 8px;
  margin: 15px 0;
}

.quick-amt-btn {
  flex: 1;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-amt-btn:hover {
  background: #0fb37e;
  color: white;
  border-color: #0fb37e;
  transform: translateY(-2px);
}

.wallet-primary-btn {
  width: 100%;
  background: #0fb37e;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 15px -3px rgba(15, 179, 126, 0.2);
}

.wallet-primary-btn:hover {
  background: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(15, 179, 126, 0.3);
}

/* Step 2 Specifics */
.payment-selection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.back-link {
  background: none;
  border: none;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.back-link:hover {
  color: #0fb37e;
}

.selected-amount-display {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.selected-amount-display span {
  color: #0fb37e;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.pay-option {
  border: 1px solid #f1f5f9;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}

.pay-option:hover {
  border-color: #0fb37e;
  background: #f0fdf9;
}

.pay-option.selected {
  border-color: #0fb37e;
  background: #f0fdf9;
  position: relative;
}

.pay-option.selected::after {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #0fb37e;
  font-size: 12px;
}

.pay-option i {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 6px;
  display: block;
}

.pay-option.selected i {
  color: #0fb37e;
}

.pay-option span {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
}

.pay-option.selected span {
  color: #0f172a;
}

/* --- Deposit History Styles --- */
.deposit-history-table-container {
  overflow-x: auto;
}

.deposit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.deposit-table th {
  text-align: left;
  padding: 12px;
  background: #f8fafc;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #edf2f7;
}

.deposit-table td {
  padding: 12px;
  border-bottom: 1px solid #edf2f7;
  color: #1e293b;
  font-weight: 500;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge.success {
  background: #ecfdf5;
  color: #059669;
}

.status-badge.failure {
  background: #fef2f2;
  color: #dc2626;
}

.deposit-table tr:hover {
  background: #f8fafc;
}

/* --- Raise Ticket Modal Styles --- */
.ticket-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  color: #1e293b;
  outline: none;
  transition: all 0.2s;
  background: #f8fafc;
  font-family: inherit;
}

.ticket-input:focus {
  border-color: #0fb37e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 179, 126, 0.1);
}

select.ticket-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 30px;
}

/* --- High-Priority Responsiveness & UI Enhancements --- */

/* Container consistency */
.container {
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.sticky-summary-container {
  padding-top: 15px;
  padding-bottom: 5px;
}

@media screen and (min-width: 992px) {
  .container {
    padding: 0 25px;
  }
}

/* Hotel Price Section Layout */
.hotel-price-section {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

/* Hero Section Responsiveness */
@media screen and (max-width: 768px) {
  .hero {
    padding: 60px 0 80px;
    background-position: right;
  }

  .hero h1 {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    margin-bottom: 5px !important;
  }

  .hero p {
    font-size: 0.9rem !important;
    padding: 0 15px !important;
    margin-bottom: 25px !important;
  }

  .booking-form {
    margin: 0 10px !important;
    padding: 15px !important;
  }
}

/* Booking Form Grid Responsiveness */
@media screen and (max-width: 992px) {
  .form-row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .form-group.searchloc {
    flex: 1 0 100% !important;
    width: 100% !important;
    margin-bottom: 5px;
  }

  .form-group.date-group {
    flex: 1 0 48% !important;
    width: 48% !important;
  }

  .form-group.guest-group,
  .form-group.btn-group {
    flex: 1 0 100% !important;
    width: 100% !important;
  }

  .guest-input-wrapper,
  .guest-input-wrapper-2 {
    max-width: none !important;
    width: 100% !important;
  }
}

/* Desktop specific width for Guest Input */
@media screen and (min-width: 993px) {

  .guest-input-wrapper,
  .guest-input-wrapper-2 {
    width: 220px;
  }
}

@media screen and (max-width: 576px) {

  .form-group.date-group,
  .form-group.guest-group,
  .form-group.btn-group {
    flex: 1 0 100% !important;
    width: 100% !important;
  }

  .btn-group .btn {
    margin-top: 10px;
  }
}

/* Sticky Summary Responsiveness */
@media screen and (max-width: 992px) {
  .sticky-summary {
    position: relative !important;
    top: 0 !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    z-index: 1;
  }

  .summary-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 15px !important;
    gap: 12px !important;
  }

  .summary-line {
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 5px !important;
  }

  .edit-summary-btn {
    width: 100% !important;
    margin-top: 5px !important;
    padding: 12px !important;
    font-size: 14px !important;
  }
}

/* Hotel Listings Layout */
@media screen and (max-width: 1200px) {
  .hotel-cards {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media screen and (max-width: 992px) {

  .hotel-listings {
    flex-direction: column !important;
    padding: 0 10px !important;
  }

  .hotel-filters {
    display: none;
    width: 100% !important;
  }

  .hotel-cards-container {
    width: 100% !important;
  }

  .hotel-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 576px) {
  .hotel-cards {
    grid-template-columns: 1fr !important;
  }

  .hotel-card {
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }
}

/* Destinations Section */
@media screen and (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .destination-card {
    margin-bottom: 10px;
  }

  .destination-img {
    height: 120px !important;
  }

  .destination-info h3 {
    font-size: 0.9rem !important;
  }

  .guest-option-main-rooms select {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr !important;
  }

  .destination-img {
    height: 180px !important;
  }
}

/* Services Section Styling */
@media screen and (max-width: 992px) {
  .service-row {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .service-img,
  .service-content {
    width: 100% !important;
  }

  .service-img img {
    height: 280px !important;
    object-fit: cover !important;
  }
}

/* Auth Buttons Mobile Polish */
@media screen and (max-width: 992px) {
  .auth-buttons-mobile {
    height: fit-content;
    align-items: center;
    padding: 15px !important;
  }

  .auth-buttons-mobile .auth-btn {
    padding: 8px !important;
    font-size: 14px !important;
  }
}

/* Final Page Polish */
.page-content {
  padding-bottom: 0;
}

@media screen and (max-width: 992px) {
  footer {
    padding-bottom: 100px !important;
    /* Extra space for the fixed mobile auth buttons */
  }
}

@media screen and (min-width: 993px) {
  footer {
    padding-bottom: 30px;
  }
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  margin-bottom: 15px;
  width: 100%;
}

.filter-toggle-btn {
  width: 100%;
  padding: 12px;
  background-color: #0fb37e;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(15, 179, 126, 0.2);
  transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
  background-color: #156c4b;
}

.filter-toggle-btn i {
  font-size: 1.1rem;
}

@media screen and (max-width: 992px) {
  .mobile-filter-toggle {
    display: block;
    padding: 0 10px;
    margin-top: -20px;
  }

  /* Sidebar style for mobile filters */
  .hotel-filters.mobile-active {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 85% !important;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 9999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    padding: 20px 20px 120px !important;
    /* Extra bottom padding to prevent hide behind mobile bottom bars */
    overflow-y: auto;
    margin: 0 !important;
    animation: slideInRight 0.3s ease-out;
  }

  /* Force side-by-side inputs on mobile to save vertical space */
  .price-range-inputs {
    display: flex !important;
    /* flex-direction: row !important; */
    gap: 10px !important;
    margin-top: 10px;
  }

  .price-range-inputs .form-control {
    flex: 1 !important;
    width: auto !important;
    margin-bottom: 0 !important;
  }

  /* Overlay when filters are open */
  .filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
  }

  .filters-overlay.active {
    display: block;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}


.mobile-filter-close {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .mobile-filter-close {
    display: block;
  }
}

.search-results-wrapper {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 993px) {
  .sticky-summary {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid #eee;
  }
}

/* ============================================== */
/* Hotel Detail & Hotel Details - Inline Style Replacements */
/* ============================================== */

/* Clickable pointer cursor (gallery, photos, sliders) */
.cursor-pointer {
  cursor: pointer;
}

/* Hidden text (more-text, read more toggle) */
.hidden-text {
  display: none;
}

/* Amenity check icon color */
.amenity-check-icon {
  color: #0FB37E;
}

/* Amenity icon in modals (width, size, center) */
.amenity-icon-modal {
  width: 16px;
  font-size: 14px;
  text-align: center;
}

/* Amenity text in modals */
.amenity-text-modal {
  font-size: 14px;
  color: #444;
}

/* Amenity list item in modal */
.amenity-list-item-modal {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
}

/* Amenities Modal Desktop Styles */
.amenities-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content-wide {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 1100px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.amenities-grid-modal {
  padding: 0px;
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.amenities-category {
  margin-bottom: 30px;
}

.amenities-category h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  /* margin-bottom: 20px; */
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .amenities-category h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
} */

.amenities-category ul {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 6px !important;
  list-style: none !important;
  padding: 0 !important;
}

/* Map container no top margin */
.map-container-no-mt {
  margin-top: 0;
}

/* Map thumb placeholder (hotel-detail.php TBO) */
.map-thumb-placeholder {
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

/* Map icon placeholder */
.map-icon-placeholder {
  font-size: 2rem;
  color: #1976d2;
  opacity: 0.5;
}

/* Guest select wrapper relative */
.guest-select-wrapper-rel {
  position: relative;
}

/* Custom dropdown trigger auto height */
.dropdown-trigger-auto {
  /* height: auto; */
  /* min-height: 42px; */
  /* padding-top: 10px;
  padding-bottom: 10px; */
}

/* Room type trigger text line height */
.trigger-text-lh {
  line-height: 1.4;
}

/* Selection summary bar (hotel-details.php) */
.selection-summary-bar {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  position: sticky;
  top: 10px;
}

/* Selection summary bar (hotel-detail.php with blur) */
.selection-summary-bar-tbo {
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  position: sticky;
  top: 15px;
}

/* Search criteria info text */
.search-criteria-text {
  font-size: 14px;
  color: #444;
}

/* Search icon in criteria */
.search-icon-green {
  margin-right: 8px;
  color: #0FB37E;
}

/* Selection status display */
.selection-status-display {
  display: flex;
  gap: 15px;
  font-weight: 600;
  font-size: 14px;
  align-items: center;
}

/* No rooms notice */
.no-rooms-notice-style {
  padding: 40px;
  text-align: center;
  color: #666;
}

/* No rooms icon large */
.no-rooms-icon-lg {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.3;
}

/* No rooms found (hotel-detail.php) */
.no-rooms-found-style {
  padding: 40px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* No rooms icon (hotel-detail.php) */
.no-rooms-icon-tbo {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 15px;
}

/* Room config container flex */
.room-config-flex {
  flex: 1;
  margin-right: 20px;
}

/* Config label no bottom margin */
.config-label-no-mb {
  margin-bottom: 0px;
}

/* Config input full width */
.config-input-full {
  width: 100%;
}

/* Room config header row */
.room-config-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

/* Room config title no bottom margin */
.room-config-title-no-mb {
  margin-bottom: 0;
}

/* Remove room link */
.remove-room-link {
  color: #e74c3c;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: none;
}

/* Config field flex 1 */
.config-field-flex1 {
  flex: 1;
}

/* Occupancy error message */
.occ-error-style {
  display: none;
  color: #ff3333;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 5px;
  background: #fff1f1;
  border-radius: 4px;
  border-left: 3px solid #ff3333;
}

/* Child ages grid */
.child-ages-grid-style {
  display: grid;
  grid-column: 1/-1;
  padding-bottom: 15px;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Child age label */
.child-age-label {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

/* Child age select padding */
.child-age-select-pad {
  padding: 8px;
}

/* Child age display readonly (hotel-detail.php) */
.child-age-display {
  padding: 8px;
  background: #f9f9f9;
  color: #555;
}

/* More details link block */
.more-details-link-block {
  display: block;
  margin-top: 10px;
  margin-bottom: -10px;
}

/* Cancel policy link (hotel-detail.php) */
.cancel-policy-link-style {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #0FB37E;
}

/* Config summary box */
.config-summary-style {
  display: none;
  margin-top: 15px;
  padding: 10px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
}

/* Summary header row */
.summary-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0FB37E;
}

/* Sold out price color */
.sold-out-text {
  color: #e74c3c;
}

/* Disabled button (sold out) */
.btn-disabled-soldout {
  background: #ccc;
  cursor: not-allowed;
}

/* Map frame full */
.map-frame-full {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Map iframe no border */
.iframe-no-border {
  border: 0;
}

/* Location section hidden */
.section-hidden {
  display: none;
}

/* Filter label no bottom margin */
.filter-label-no-mb {
  margin-bottom: 0;
}

/* Filter label right aligned */
.filter-label-right {
  text-align: right;
  margin-bottom: 0;
}

/* No amenities text */
.no-amenities-text {
  padding: 10px;
  color: #666;
}

/* Inclusions text */
.inclusions-text {
  font-size: 13px;
  color: #666;
}

/* Property rules modal title */
.rules-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  margin-top: 0;
}

/* ID proof list unstyled */
.id-proof-list {
  padding-left: 0;
  list-style: none;
}

/* ID proof item box */
.id-proof-item {
  background-color: #f0f4ff;
  border-left: 4px solid #244093;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
}

/* ID proof text */
.id-proof-text {
  color: #000;
  font-weight: 700;
  font-size: 16px;
}

/* Video element in multimedia modal */
.mm-video-player {
  display: none;
  width: auto;
  height: 500px;
  object-fit: contain;
}

/* Video thumb overlay (play button) */
.video-thumb-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 20px;
}

/* YouTube play overlay */
.yt-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Selection status color: not selected */
.status-not-selected {
  color: #666;
}

/* Selection status color: complete */
.status-complete {
  color: #0FB37E;
}

/* Selection status color: remaining */
.status-remaining {
  color: #e67e22;
}

/* Selection status color: warning */
.status-warning {
  color: #e74c3c;
}

/* Cart tooltip row title */
.ct-row-title {
  color: #fff;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Cart tooltip label */
.ct-row-label {
  color: #ccc;
}

/* Cart tooltip total label */
.ct-row-total {
  color: #fff;
  font-weight: bold;
}

/* Cart item flex row */
.cart-item-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Cart delete button */
.cart-delete-btn {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  margin-left: 10px;
  font-size: 0.9rem;
  transition: 0.2s;
}

/* Spacer 30px width */
.spacer-30 {
  width: 30px;
}

/* Room slot badge (hotel-detail.php) */
.room-slot-badge-style {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Rate plan row with border (hotel-detail.php) */
.rate-plan-row-bordered {
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

/* Room config card display block */
.room-config-card-block {
  display: block;
}

/* Landmark content block */
.landmark-content-block {
  display: block;
}

/* Sticky booking bar hidden initially */
.sticky-booking-bar-hidden {
  display: none;
}

/* Booking redirect button */
.booking-redirect-btn {
  background: #0FB37E;
  color: #fff;
  border: none;
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 15px;
  font-size: 12px;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(15, 179, 126, 0.3);
}

/* Room modal meal info */
.room-modal-meal {
  color: #2c7c7c;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 5px;
}

/* Room modal refundable info */
.room-modal-refundable {
  font-size: 12px;
  color: #777;
  margin-bottom: 15px;
}

/* Room modal description */
.room-desc-modal-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Room modal body padding */
.room-modal-body-padded {
  padding: 20px;
}

/* Refundable status text */
.refundable-yes {
  color: #2ecc71;
  font-weight: 700;
}

/* Non-refundable status text */
.refundable-no {
  color: #e74c3c;
  font-weight: 700;
}

/* Cancel policy title */
.policy-title-text {
  color: #e74c3c;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Cancel policy title (refundable) */
.policy-title-refundable {
  color: #2ecc71;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Policy description text */
.policy-desc-text {
  font-size: 13.5px;
  color: #555;
}

/* Modal section title */
.modal-section-title-mb {
  margin-bottom: 10px;
  font-weight: 700;
}

/* Policy list unstyled */
.policy-list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Policy list item */
.policy-list-item {
  font-size: 13.5px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

/* Policy list margin */
.policy-list-margin {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

/* Policy list item sm */
.policy-list-item-sm {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}

/* Info circle icon blue */
.info-icon-blue {
  color: #3498db;
  font-size: 12px;
}

/* Info circle icon blue (larger) */
.info-icon-blue-lg {
  color: #3498db;
  font-size: 14px;
}

/* Policy separator */
.policy-separator {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* Inclusion check icon */
.inclusion-check-icon {
  color: #0FB37E;
  font-size: 12px;
}

/* Child age label in search guest dropdown */
.child-age-label-search {
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

/* Child age select in search guest dropdown */
.child-age-select-search-style {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  font-size: 13px;
  outline: none;
  background: #fff;
}

/* Room only text */
.room-only-text {
  font-size: 13px;
  color: #666;
}

/* --- Contact Page Styles --- */
.contact-page-body {
  font-family: 'Poppins', sans-serif;
}

.page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background: linear-gradient(135deg, #0FB37E 0%, #009665 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: -1;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: contactFloat 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 100px;
  left: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 50px;
  height: 50px;
  top: 20%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes contactFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.contact-wrapper {
  max-width: 1000px;
  width: 95%;
  margin: 120px auto 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  min-height: 550px;
}

.contact-info-panel {
  flex: 1;
  background: #202c38;
  color: #ffffff;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #0FB37E;
  opacity: 0.2;
}

.panel-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.panel-header p {
  opacity: 0.8;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

.info-list {
  margin-top: 30px;
  padding-left: 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
}

.info-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.2rem;
  color: #0FB37E;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: #0FB37E;
  color: #ffffff;
}

.info-text h4 {
  margin: 0 0 3px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.info-text p {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
  color: #ffffff;
  max-width: 250px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #0FB37E;
  transform: translateY(-3px);
}

.contact-form-panel {
  flex: 1.5;
  padding: 40px;
  background: #ffffff;
  min-width: 350px;
}


.form-header h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.contact-form .input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form .input-group {
  position: relative;
  margin-bottom: 25px;
  flex: 1;
  min-width: 200px;
}

.contact-form .form-input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  border-radius: 0;
}

.contact-form .form-input:focus {
  outline: none;
  border-bottom-color: #0FB37E;
}

.contact-form .input-label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 14px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}

.contact-form .form-input:focus~.input-label,
.contact-form .form-input:not(:placeholder-shown)~.input-label {
  top: -12px;
  font-size: 12px;
  color: #0FB37E;
  font-weight: 600;
}

.contact-form .textarea-group {
  margin-top: 15px;
  width: 100%;
  flex: none;
}

.contact-form .submit-btn {
  background: linear-gradient(135deg, #0FB37E 0%, #009665 100%);
  color: #ffffff;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(15, 179, 126, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  float: right;
  margin-top: 10px;
}

.contact-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(15, 179, 126, 0.4);
}

.bottom-section {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.faq-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
}

.faq-header {
  cursor: pointer;
  padding: 18px 25px;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: #f0fff9;
}

.faq-header.active {
  background: #0FB37E;
  color: white;
}

.faq-header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.faq-body p {
  padding: 20px 25px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.alert-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: center;
  font-size: 0.95rem;
}

.alert-message.success {
  background: #e8f5e9;
  color: #2e7d32;
}

.alert-message.error {
  background: #ffebee;
  color: #c62828;
}


.contact-form textarea.form-input {
  min-height: 120px;
  resize: vertical;
  padding: 12px 0;
}


/* Contact Responsive */
@media (max-width: 1200px) {
  .contact-wrapper {
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .contact-wrapper {
    margin-top: 100px;
    margin-bottom: 30px;
  }

  .panel-header h2 {
    font-size: 1.6rem;
  }

  .contact-form-panel,
  .contact-info-panel {
    padding: 35px;
  }
}

@media (max-width: 850px) {
  .contact-wrapper {
    flex-direction: column;
    margin-top: 90px;
  }

  .contact-info-panel,
  .contact-form-panel {
    min-width: 100%;
    padding: 30px;
  }

  .contact-info-panel {
    min-height: auto;
  }

  .info-list {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .social-links {
    margin-top: 20px;
    justify-content: center;
  }

  .info-text p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .page-bg {
    height: 45vh;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }

  .contact-wrapper {
    margin-top: 70px;
    margin-bottom: 20px;
    border-radius: 12px;
    width: 92%;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 25px 20px;
  }

  .panel-header h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .panel-header p {
    font-size: 0.9rem;
    text-align: center;
  }

  .form-header h3 {
    font-size: 1.3rem;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-form .input-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form .input-group {
    margin-bottom: 20px;
  }

  .contact-form .submit-btn {
    width: 100%;
    float: none;
  }

  .faq-wrapper {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .faq-title {
    font-size: 1.25rem;
    text-align: center;
  }

  .faq-header {
    padding: 15px;
  }

  .faq-header h5 {
    font-size: 0.9rem;
  }

  .faq-body p {
    padding: 15px;
    font-size: 0.85rem;
  }

  .info-item {
    margin-bottom: 15px;
  }

  .info-icon {
    width: 38px;
    height: 38px;
    margin-right: 15px;
    font-size: 1rem;
  }

  .info-text h4 {
    font-size: 0.95rem;
  }

  .info-text p {
    font-size: 12px;
    max-width: 100%;
  }

  .contact-form {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .contact-wrapper {
    margin-top: 60px;
    width: 95%;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 20px 15px;
  }

  .page-bg {
    height: 40vh;
  }

  .panel-header h2 {
    font-size: 1.2rem;
  }

  .form-header h3 {
    font-size: 1.1rem;
  }
}

/* --- Services Page Responsive --- */
@media (max-width: 1200px) {
  .services-grid {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .page-hero-services {
    padding: 60px 0;
  }

  .page-hero-services h1 {
    font-size: 2.2rem;
  }

  .service-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .service-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .service-content {
    width: 100%;
  }

  .milestone-container {
    justify-content: center;
  }

  .features-list {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
  }
}


@media (max-width: 768px) {
  .section {
    padding: 5px 0;
  }

  .section-about {
    padding-top: 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }

  .service-card {
    padding: 20px;
  }

  .milestone {
    min-width: 140px;
    padding: 10px;
  }

  .milestone h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .page-hero-services h1 {
    font-size: 1.8rem;
  }

  .page-hero-services p {
    font-size: 14px;
    padding: 0 15px;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .features-list {
    text-align: left;
    max-width: 100%;
    margin: 20px auto;
  }

  .features-list li {
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 13px;
    line-height: 1.5;
  }

  .features-list li strong {
    display: block;
    margin-bottom: 2px;
    color: #202c38;
  }

  .milestone-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 10px;
  }

  .milestone {
    min-width: 0;
    width: 100%;
    padding: 15px 10px;
  }

  .milestone-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .btn-sm-service {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
}


/* Service Page Specific Helpers */
.btn-sm-service {
  padding: 8px 15px;
  font-size: 12px;
  width: auto;
  height: auto;
  display: inline-flex;
  margin-top: 10px;
}

.service-card .features-list {
  padding-left: 0;
  margin-top: 15px;
}

.service-card .features-list li {
  font-size: 12px;
  line-height: 1.4;
}

/* --- About Page Responsive --- */
@media (max-width: 992px) {
  .page-hero-about {
    padding: 30px 0;
  }

  .page-hero-about h1 {
    font-size: 2.2rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-text,
  .about-img {
    width: 100%;
  }

  .about-img img {
    height: 300px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .milestone-container {
    justify-content: center;
    gap: 15px;
  }

  .milestone {
    min-width: 150px;
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .page-hero-about h1 {
    font-size: 1.8rem;
  }

  .page-hero-about p {
    font-size: 14px;
    padding: 0 10px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-img img {
    height: 250px;
  }

  .milestone {
    flex: 0 0 100%;
    max-width: 250px;
    margin: 0 auto 10px;
  }

  .milestone h3 {
    font-size: 1.5rem;
  }

  /* Values grid on mobile */
  .about-page .services-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}

/* --- Profile Page Styles --- */
.profile-page {
  background: #f8fafc;
  padding: 20px 0;
  font-family: 'Outfit', sans-serif;
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.profile-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2f7;
}

.profile-header {
  background: linear-gradient(135deg, #0FB37E, #2c3e50);
  padding: 15px 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #0FB37E;
  border: 3px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.profile-info h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.profile-info p {
  margin: 2px 0 0;
  font-size: 12px;
  opacity: 0.8;
}

.profile-content {
  padding: 20px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.info-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-label {
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  font-size: 14px;
}

.info-value {
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: #1a202c;
  padding: 10px 12px 10px 35px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
  background: #f8fafc;
}

.info-value:read-only {
  background: transparent;
  padding-left: 35px;
  cursor: default;
}

.info-value:focus {
  outline: none;
  border-color: #0FB37E;
  background: #ffffff;
}

.profile-actions {
  display: flex;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.btn-action {
  background: #0FB37E;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-action:hover {
  background: #0d9668;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(15, 179, 126, 0.2);
}

.btn-dark {
  background: #1a202c;
}

.btn-dark:hover {
  background: #111827;
  box-shadow: 0 5px 15px rgba(26, 32, 44, 0.2);
}

/* Bookings Table Styles */
.bookings-container {
  margin-top: 25px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2f7;
}

.bookings-header {
  padding: 12px 20px;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bookings-header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.bookings-table th {
  background: #f8fafc;
  padding: 10px 15px;
  text-align: left;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.bookings-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #f1f5f9;
  color: #1a202c;
  vertical-align: middle;
}

.btn-view-details {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-view-details:hover {
  background: #0FB37E;
  color: white;
}

.details-row {
  background: #f8fafc;
}

.details-content {
  padding: 20px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
}

.detail-value {
  font-size: 13px;
  font-weight: 600;
  color: #1a202c;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.status-confirmed {
  background: #ecfdf5;
  color: #059669;
}

.status-pending {
  background: #fffbeb;
  color: #d97706;
}

/* Profile Responsive */
@media (max-width: 992px) {
  .details-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .password-section-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .profile-container {
    padding: 0 15px;
  }

  .profile-header {
    padding: 12px 15px;
    gap: 12px;
  }

  .profile-content {
    padding: 15px;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .profile-actions {
    flex-wrap: wrap;
  }

  .btn-action {
    flex: 1;
    min-width: 180px;
    justify-content: center;
  }

  .details-content {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 15px;
  }

  .password-section-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
}

@media (max-width: 480px) {
  .profile-page {
    padding: 20px 0;
  }

  .profile-info h1 {
    font-size: 16px;
  }

  .bookings-header {
    padding: 10px 15px;
  }

  .password-section-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .profile-header {
    padding: 12px;
    gap: 10px;
    text-align: left;
  }

  .profile-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-width: 2px;
  }

  .bookings-table th,
  .bookings-table td {
    padding: 8px 12px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .profile-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-action {
    width: 100%;
    padding: 10px 12px !important;
    font-size: 13px !important;
    justify-content: center;
  }
}

/* --- Global Footer Grid Styles (Mobile & Tablet) --- */
@media screen and (max-width: 992px) {
  footer .footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: start !important;
  }

  /* Align first column content to start */
  footer .footer-column:first-child {
    grid-column: span 2 !important;
    text-align: left !important;
  }

  footer .footer-column:first-child .social-links {
    justify-content: flex-start !important;
  }

  footer .footer-column {
    min-width: 0 !important;
    width: 100% !important;
  }

  footer .footer-column:last-child {
    grid-column: span 2 !important;
  }

  footer .footer-column h3 {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }

  footer .footer-column p,
  footer .footer-column a {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 480px) {


  footer .logo img {
    height: 30px !important;
  }

  /* Keep the logo centered and full width on small mobile too */
  footer .footer-column:first-child {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 992px) {
  .auth-buttons-mobile {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #ffffff !important;
    padding: 12px 20px !important;
    /* border-top: 1px solid #e2e8f0 !important; */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05) !important;
    z-index: 9999 !important;
    justify-content: space-between !important;
    gap: 12px !important;
    height: auto !important;
  }
}

/* Flatpickr Premium UI Style - Compact */
.flatpickr-calendar {
  width: 220px !important;
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #eef2f7 !important;
  padding: 10px !important;
  font-family: 'Inter', sans-serif !important;
}

.flatpickr-months {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: -5px !important;
}

.flatpickr-month {
  height: auto !important;
  color: #1a202c !important;
  fill: #1a202c !important;
}

.flatpickr-current-month {
  position: static !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  text-align: left !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}

.flatpickr-monthDropdown-months {
  font-weight: 700 !important;
  color: #1a202c !important;
  padding: 0 !important;
  margin-right: 2px !important;
}

.flatpickr-current-month input.cur-year {
  font-weight: 700 !important;
  color: #1a202c !important;
  width: 38px !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  position: absolute !important;
  top: 10px !important;
  height: 22px !important;
  width: 22px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #64748b !important;
  fill: #64748b !important;
  transition: all 0.2s !important;
}

.flatpickr-prev-month {
  right: 35px !important;
  left: auto !important;
}

.flatpickr-next-month {
  right: 10px !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #0fb37e !important;
  fill: #0fb37e !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 10px !important;
  height: 10px !important;
}

/* Weekdays */
.flatpickr-weekdays {
  height: 24px !important;
  margin-bottom: 2px !important;
}

span.flatpickr-weekday {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #1a202c !important;
}

/* Days */
.flatpickr-days {
  width: 200px !important;
}

.dayContainer {
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
}

.flatpickr-day {
  max-width: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  border-radius: 4px !important;
  margin: 0 !important;
  color: #1a202c !important;
  border: 1.5px solid transparent !important;
  transition: all 0.1s ease !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #cbd5e1 !important;
}

.flatpickr-day:hover {
  background: #f1f5f9 !important;
  border-color: #e2e8f0 !important;
}

.flatpickr-day.today {
  border-color: #e2e8f0 !important;
}

.flatpickr-day.selected {
  background: #0fb37e !important;
  color: #fff !important;
  border: 1.5px solid #0a8f63 !important;
  font-weight: 700 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #f1f5f9 !important;
}

/* Footer Section */
.flatpickr-footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-top: 8px !important;
  margin-top: 8px !important;
  border-top: 1px solid #f1f5f9 !important;
}

.flatpickr-clear-btn,
.flatpickr-today-btn {
  background: none !important;
  border: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  padding: 4px 0 !important;
  transition: opacity 0.2s !important;
}

.flatpickr-clear-btn {
  color: #0fb37e !important;
}

.flatpickr-today-btn {
  color: #0fb37e !important;
}

.flatpickr-clear-btn:hover,
.flatpickr-today-btn:hover {
  opacity: 0.7 !important;
}

.flatpickr-calendar.open {
  z-index: 995 !important;
}

.flatpickr-calendar.animate.open {
  padding: 5px !important;
}

.active-filters {
  margin-bottom: 10px;
}

/* ==========================================================
   HOTEL DETAIL PAGE - FULL RESPONSIVE (hotel-details.php & hotel-detail.php)
   UI is NOT changed — only layout adjustments for small screens
   ========================================================== */

/* --- Tablet: max-width 991px --- */
@media (max-width: 991px) {

  /* Container */
  .hotel-page-container {
    flex-direction: column;
    padding: 0 12px;
    margin: 10px auto;
  }

  .left-content {
    width: 100% !important;
  }

  .right-sidebar {
    width: 100% !important;
    margin-top: 0;
  }

  /* Gallery */
  .gallery-container {
    flex-direction: column;
    height: auto;
    aspect-ratio: auto;
  }

  .gallery-large {
    flex: none;
    height: 300px;
    width: 100%;
  }

  .gallery-small-col {
    flex: none;
    flex-direction: row;
    height: 150px;
    width: 100%;
    display: flex;
  }

  .gallery-small-col img {
    width: calc(50% - 6px);
    height: 100%;
  }

  /* Update Search Bar */
  .update-search-container {
    width: auto !important;
    margin: 10px 12px !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 12px;
    gap: 12px;
  }

  .update-search-left h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }



  .date-select-fake {
    width: 100%;
    font-size: 13px;
    padding: 10px 12px;
    box-sizing: border-box;
  }

  .guest-select-wrapper {
    width: 100%;
  }

  .guest-select-fake {
    width: 100%;
    font-size: 13px;
    padding: 8px 10px;
  }

  .update-btn {
    grid-column: 1 / -1;
    font-size: 13px;
    padding: 0 10px;
  }

  /* Room List & Location */
  .room-list-container {
    width: auto !important;
    margin: 12px !important;
  }

  .location-section-container {
    width: auto !important;
    margin: 12px !important;
  }

  /* Room card stays flex but info col adjusts */
  .room-info-col {
    width: 280px;
  }

  /* Amenities Modal Grid */
  .amenities-category ul {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
  }

  /* Location Content */
  .location-content-wrapper {
    flex-direction: column;
    height: auto;
  }

  .location-map-area {
    height: 280px;
  }

  .location-landmarks-list {
    min-width: 100%;
    max-height: 300px;
  }

  .booking-info {
    width: 65%;
  }

  /* Summary Bars (Stay horizontal on tablet) */
  .selection-summary-bar,
  .selection-summary-bar-tbo {
    flex-direction: row;
    padding: 12px 15px;
  }

  .update-search-right {
    width: 100%;
  }
}

/* --- Mobile: max-width 768px --- */
@media (max-width: 768px) {

  /* ---- Hotel header ---- */
  .hotel-header {
    flex-wrap: wrap;
    gap: 5px;
  }

  .hotel-header h1 {
    font-size: 15px;
    line-height: 1.3;
  }

  /* ---- Gallery ---- */
  .gallery-container {
    gap: 8px;
    border-radius: 12px;
  }

  .gallery-large {
    height: 200px;
  }

  .gallery-small-col {
    height: 100px;
    gap: 8px;
  }

  .gallery-small-col img {
    width: calc(50% - 4px);
    height: calc(120% - 6px);
    object-fit: fill;
  }

  .photos-pill {
    font-size: 10px;
    padding: 4px 10px;
    bottom: 8px;
    right: 8px;
  }

  /* ---- Sidebar Card ---- */
  .sidebar-card {
    padding: 12px;
  }

  .final-price {
    font-size: 20px;
  }

  .room-title {
    font-size: 14px;
  }

  .book-btn-blue {
    padding: 9px;
    font-size: 13px;
  }

  /* ---- Update Search ---- */
  .update-search-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .date-select-fake,
  .guest-select-wrapper,
  .guest-select-fake {
    width: 100%;
  }

  /* ---- Room Cards ---- */
  .room-list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .room-filters {
    flex-wrap: wrap;
    gap: 6px;
  }


  .room-rates-col {
    width: 100%;
  }

  .rate-plan-row {
    gap: 12px;
  }

  .rate-pricing {
    text-align: left;
    min-width: unset;
    width: 110px;
  }

  .select-room-btn {
    width: 100%;
    font-size: 12px;
  }

  .room-info-col {
    width: 100%;
  }

  .final-price-lg {
    font-size: 18px;
  }

  .amenities-category ul {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .amenities-grid-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* ---- Location Section ---- */
  .section-title-left {
    font-size: 15px;
  }

  .location-content-wrapper {
    height: auto;
    flex-direction: column;
  }

  .location-map-area {
    height: 220px;
  }

  .location-landmarks-list {
    min-width: 100%;
    max-height: 250px;
  }

  /* ---- Multimedia Modal ---- */
  .mm-modal-content {
    flex-direction: column;
  }


  .mm-thumbnails {
    overflow-x: auto;
    display: flex;
    gap: 6px;
    padding: 8px;
    max-height: 100px;
  }

  .mm-thumb {
    width: 70px !important;
    height: 50px !important;
    flex-shrink: 0;
  }

  /* ---- Room Detail Modal ---- */
  .room-details-content {
    width: 95%;
    margin: 5% auto;
  }

  .room-modal-body {
    padding: 15px;
  }

  .modal-slider-container {
    height: 250px;
  }

  .room-modal-title {
    font-size: 16px;
  }

  /* ---- Cancel Policy Modal ---- */
  .cancel-policy-content {
    width: 95%;
    padding: 15px;
  }

  /* ---- Sticky Booking Bar ---- */
  .sticky-booking-bar {
    padding: 10px 12px;
  }

  .booking-bar-content {
    margin: 0;
    flex-wrap: wrap;
    gap: 8px;
  }

  .booking-info {
    width: 100%;
    font-size: 12px;
  }

  .booking-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .booking-btn-book {
    padding: 8px 16px;
    font-size: 13px;
  }



  /* ---- Amenities Large Modal ---- */
  .amenities-modal .modal-content-wide {
    margin: 3% auto;
    width: 95%;
  }

  /* ---- Room Config ---- */
  /* ---- Room Config (Only 1 col on small phones) ---- */



  .room-config-container {
    width: auto !important;
  }

  /* ---- Guest Selector Dropdown ---- */
  .guest-selector-dropdown {
    left: auto;
    right: 0;
    width: 100%;
    min-width: unset;
  }

  /* ---- Map Container sidebar ---- */


  /* Room image slider in modal */
  .room-img-slider {
    height: 160px;
  }

  .search-criteria-text {
    font-size: 13px;
  }

  .selection-summary-bar,
  .selection-summary-bar-tbo {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .sticky-booking-bar {
    bottom: 65px;
  }
}

/* Summary Bars (Stack on mobile) */
@media (max-width: 650px) {

  .selection-summary-bar,
  .selection-summary-bar-tbo {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    position: static;
  }

  .search-criteria-text span {
    display: block;
    margin-top: 5px;
  }

  .room-config-grid {
    grid-template-columns: 1fr !important;
  }

  .status-not-selected {
    font-size: 12px;
  }
}

/* --- Small Mobile: max-width 480px --- */
@media (max-width: 480px) {

  /* Hotel Header */
  .hotel-header h1 {
    font-size: 13px;
  }

  .hotel-header .stars i {
    font-size: 10px;
  }

  /* Gallery */
  .gallery-container {
    border-radius: 8px;
  }

  .gallery-large {
    height: 160px;
  }

  .gallery-small-col {
    height: 80px;
  }

  /* Price block */
  .price-block {
    flex-wrap: wrap;
    gap: 4px;
  }

  .final-price {
    font-size: 18px;
  }

  /* Update search inputs full width */
  .date-select-fake,
  .guest-select-fake {
    flex: 1 1 100%;
  }

  /* Amenity modal grid - 1 col */
  .amenities-category ul {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .amenities-grid-group {
    grid-template-columns: 1fr;
  }

  /* Room details modal */
  .modal-slider-container {
    height: 200px;
  }

  /* Sidebar card pricing */
  .final-price-lg {
    font-size: 16px;
  }

  .options-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .view-all-btn {
    width: 100%;
    text-align: center;
    padding: 6px;
  }

  /* Room list header */
  .room-types-title {
    font-size: 13px;
  }

  .filter-btn {
    font-size: 11px;
    padding: 5px 10px;
  }

  /* Location map */
  .location-map-area {
    height: 180px;
  }

  /* Sticky bar */
  .booking-price {
    font-size: 16px;
  }

  .bp-total {
    font-size: 11px;
  }

  /* About text */
  .about-text {
    font-size: 13px;
  }

  .section-title {
    font-size: 14px;
  }

  /* Amenity items */
  .amenity-item {
    font-size: 13px;
  }

  .update-search-right {
    grid-template-columns: repeat(1, 1fr);
  }

  .rate-pricing {
    width: 100%;
  }

  .room-config-container {
    padding: 14px 14px 0px 14px;
  }

  .room-config-grid>.config-field {
    align-items: start;
    flex-direction: column;
  }

  .config-select1 {
    width: 100%;
  }

  .room-config-card {
    padding: 10px;
  }

  .search-criteria-text {
    font-size: 11px;
  }

  .room-config-flex {
    margin-right: 0;
  }

  .room-config-container {
    background: transparent;
    box-shadow: none;
    border-color: transparent;
    padding: 0;
    width: 100% !important;
  }

  .room-config-grid>.config-field .config-select,
  .room-config-grid>.config-field .custom-dropdown-wrapper {
    width: 100%;
  }

  .rate-plan-row {
    gap: 0;
  }

  .selection-status-display {
    display: flex;
    gap: 6px;
    font-weight: 600;
    font-size: 12px;
    align-items: center;
    flex-wrap: wrap;
  }

}

.user-agreement-link {
  color: rgb(15, 179, 126);
}

.checkout-text {
  font-size: 14px;
}

/* Booking Page Specific Responsiveness for 425px */
@media screen and (max-width: 425px) {
  .booking-container {
    margin: 0px;
    gap: 15px;
  }

  .booking-card {
    padding: 12px;
    margin-bottom: 8px;
  }

  .hotel-info-header {
    flex-direction: column;
    gap: 10px;
  }

  .stay-thumb {
    width: 100%;
    height: 150px;
    margin-right: 0;
  }

  .hotel-text-content h1 {
    font-size: 16px !important;
  }

  .stay-info-grid {
    padding: 10px;
    gap: 8px;
  }

  .stay-dates-wrapper {
    gap: 10px;
  }

  .stay-info-item {
    min-width: 100%;
    padding-bottom: 8px;
  }

  .stay-label {
    font-size: 9px;
  }

  .stay-date b {
    font-size: 13px;
  }

  .guest-info-item {
    padding-left: 0;
    border-left: none;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
  }

  .guest-form-row {
    flex-direction: column;
    gap: 12px;
  }

  .title-select {
    width: 100%;
  }

  .price-total-row {
    font-size: 16px;
  }

  .pay-now-btn {
    padding: 12px 30px;
    font-size: 14px;
    width: 100%;
  }

  .login-prompt-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* GST Tooltip Styles */
.tooltip-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.gst-tooltip {
  visibility: hidden;
  width: 200px;
  background-color: #0c0d0d;
  color: #fff;
  text-align: left;
  border-radius: 8px;
  padding: 12px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  pointer-events: none;
}

.tooltip-container:hover .gst-tooltip {
  visibility: visible;
  opacity: 1;
}

.tooltip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.tooltip-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

.tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #0c0d0d transparent transparent transparent;
}

.text-muted {
  color: #6c757d !important;
  font-size: 14px;
}

.tooltip-container.active .gst-tooltip {
  visibility: visible;
  opacity: 1;
}