:root {
  --bg: #06111f;
  --surface: rgba(10, 20, 40, 0.92);
  --surface-soft: rgba(12, 22, 44, 0.84);
  --surface-strong: rgba(5, 12, 27, 0.98);
  --accent: #11113580;
  --accent2: #3f331e;
  --accent-soft: #ac8c46;
  --text: #ffffff;
  --muted: #ffffff;
  --shadow: 0 28px 70px rgba(2, 10, 26, 0.24);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(148, 216, 248, 0.12), transparent 28%),
    linear-gradient(180deg, #1b3352 0%, #0c1f36 100%);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

/* =====================================================
   STICKY ONLY NAVBAR FIX
   Replace ALL old .site-header / .site-navbar sticky rules
   with this clean version
===================================================== */

/* important: no parent can block sticky */
html,
body,
.site-header{
  overflow: visible !important;
}

/* header wrapper normal */
.site-header{
  position: relative !important;
  top: auto !important;
  z-index: 1040;
}

/* top contact bar stays normal */
.top-bar{
  position: relative !important;
  z-index: 1030;
}

/* ONLY navbar sticks */
.site-navbar.navbar{
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 1055 !important;

  background: rgba(8, 15, 29, 0.96) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);

  transition: all .25s ease;
}

/* bootstrap container inside nav */
.site-navbar .container{
  min-height: 78px;
  display: flex;
  align-items: center;
}

/* mobile */
@media (max-width: 991.98px){

  .site-navbar.navbar{
    top: 0 !important;
  }

  .site-navbar .container{
    min-height: 64px;
  }
}

/* make sure parent doesn't block sticky */
/* .site-header,
body,
html{
  overflow: visible !important;
} */

/* optional shrink on mobile */
@media (max-width: 991.98px){
  .site-navbar .container{
    min-height: 64px;
  }
}

/* Preloader Styles */
#preloader-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b0a1d 0%, #06021f 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader-active.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader {
  width: 100%;
  height: 100%;
}

.preloader-inner {
  width: 200px;
  height: 200px;
}

.preloader-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border: 5px solid rgb(255, 145, 0);
  border-top: 5px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.pere-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-bar {
  background: linear-gradient(180deg, rgba(2, 10, 26, 0.95), rgba(6, 17, 31, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
}

.site-header {
  /* position: sticky; */
  top: 0;
  z-index: 1040;
  background: rgba(6, 17, 31, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.site-navbar {
  /* position: relative; */
  z-index: 1040;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.top-contact,
.top-social-wrap,
.top-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-contact a,
.social-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-contact a:hover,
.social-inline-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.603);
  transform: translateY(-1px);
}

.top-phone {
  background: linear-gradient(135deg, rgba(189, 112, 11, 0.2), rgba(185, 131, 31, 0.25));
  border-color: rgba(255, 208, 128, 0.15);
}

.top-phone:hover {
  background: linear-gradient(135deg, rgba(189, 112, 11, 0.28), rgba(185, 131, 31, 0.32));
  border-color: rgba(255, 208, 128, 0.25);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  flex-shrink: 0;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.contact-copy small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.contact-copy strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.top-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}

.top-social a:hover {
  background: rgba(189, 112, 11, 0.2);
  border-color: rgba(255, 208, 128, 0.3);
  color: #ffd800;
  transform: scale(1.08);
}

/* .navbar {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  backdrop-filter: none;
  z-index: 1020;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
} */




.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.navbar-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-kicker {
  color: rgba(255, 255, 255, 0.884);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-name {
  color: #fff;
  font-size: clamp(1.15rem, 1vw + 0.95rem, 1.7rem);
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

.site-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  flex: 1 1 520px;
  flex-wrap: wrap;
}

.c-name .n-color {
  color: var(--accent);
  font-weight: 700;
  font-size: 2rem;
}


.navbar-nav .nav-link {
  color: rgba(238, 244, 255, 0.78);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #bd700b, #b9831f);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffd800;
  background: rgba(189, 112, 11, 0.08);
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.navbar-nav .nav-link.active {
  color: #ffd800;
  background: rgba(189, 112, 11, 0.12);
}

.navbar-nav .nav-link.active::after {
  width: 60%;
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.btn-glow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 20px 40px rgba(74, 199, 255, 0.24);
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(74, 199, 255, 0.28);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
}

.hero.hero-carousel {
  min-height: 760px;
  padding-bottom: 0;
}

.hero.hero-carousel .carousel-inner,
.hero.hero-carousel .carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-carousel .carousel-item {
  background-size: cover;
  background-position: center;
}

.hero.hero-carousel .carousel-control-prev,
.hero.hero-carousel .carousel-control-next {
  z-index: 2;
}

.hero.hero-carousel::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(74, 199, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(148, 148, 148, 0.45) 0%, rgba(47, 59, 83, 0.95) 100%);
}

.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
}

.hero-search-card {
  position: relative;
  margin-top: -6rem;
  width: min(92%, 980px);
  z-index: 2;
  backdrop-filter: blur(24px);
}

.hero-search-card .row {
  gap: 1rem;
}

.navbar-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-color: 4px solid rgb(255, 255, 255);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.highlight-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  color: #fff;
  font-weight: 500;
}

.text-muted {
  color: #fff !important;
}

.navbar-toggler-icon.logo-icon {
  background-image: none;
  width: 54px;
  height: 54px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon.logo-icon img {
  max-height: 40px;
  max-width: 40px;
  display: block;
}

.carousel-indicators {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
}

.carousel-indicators .active {
  background-color: #4ac7ff;
}

.hero .hero-content,
.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 1rem;
}

.hero p,
.page-hero p {
  color: rgba(238, 244, 255, 0.82);
  max-width: 720px;
}

.glass-card,
.card-glass {
  background: rgba(13, 22, 43, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
   object-fit: cover;
  padding-right: 10px;
}

.card-glass {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(2, 10, 26, 0.28);
}

.section-title {
  margin-bottom: 3rem;
}

.section-title small {
  display: inline-block;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.room-card {
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.room-card:hover {
  transform: translateY(-8px);
}

.room-hidden {
  opacity: 0;
  transform: scale(0.96);
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}

.room-card .room-img {
  height: 260px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.room-card .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.08);
}

.room-card .card-body {
  padding: 1.6rem;
}

.filters {
  gap: 0.6rem;
}

.filters button {
  min-width: 140px;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text);
}

.filters button.active,
.filters button:hover {
  background: rgba(74, 199, 255, 0.14);
  border-color: rgba(74, 199, 255, 0.24);
}

.service-card,
.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 20, 40, 0.88);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 85px rgba(2, 10, 26, 0.3);
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 60px rgba(10, 20, 40, 0.14);
}

.bg-glow-search {
  background: linear-gradient(180deg, rgba(74, 199, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card i,
.feature-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(74, 199, 255, 0.12);
  color: var(--text);
  margin-bottom: 1.4rem;
  font-size: 1.5rem;
}

.about-list {
  margin-top: 1.5rem;
  padding-left: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.925);
}

.about-list li i {
  min-width: 1.2rem;
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

.service-card h5,
.feature-card h5 {
  margin-bottom: 0.8rem;
}

.feature-card p,
.service-card p,
.section-copy,
footer p {
  color: var(--muted);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(74, 199, 255, 0.18), rgba(123, 107, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 3rem;
}

@media (max-width: 991px) {
  .hero,
  .page-hero {
    padding: 80px 0 60px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 2.8rem;
  }
  .c-name {
  margin-left: auto;

  white-space: normal;        /* allows wrapping */
  overflow-wrap: break-word;  /* breaks long words if needed */
  word-break: break-word;     /* fallback support */

  max-width: 100%;            /* don’t overflow container */
  text-align: right;          /* keeps it aligned nicely */
  line-height: 1.3;           /* improves readability */
}
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 2rem;
  }
  .room-card .room-img {
    height: 220px;
  }
  .filters {
    flex-wrap: wrap;
  }

  .c-name {
  margin-left: auto;

  white-space: normal;        /* allows wrapping */
  overflow-wrap: break-word;  /* breaks long words if needed */
  word-break: break-word;     /* fallback support */

  max-width: 100%;            /* don’t overflow container */
  text-align: right;          /* keeps it aligned nicely */
  line-height: 1.3;           /* improves readability */
}
}

.footer-dark {
  background: #07111e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-dark a {
  color: rgba(238, 244, 255, 0.911);
}

.footer-dark a:hover {
  color: #fff;
}

.footer-dark .footer-title {
  font-weight: 700;
  margin-bottom: 1.3rem;
}

.footer-dark small {
  color: var(--muted);
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: calc(100% - 35px);
  max-width: 460px;
  border-radius: 999px;
  background: rgb(12, 24, 48);
  border: 2px solid rgb(255, 153, 0);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.7rem;
  box-shadow: 0 24px 80px rgba(248, 164, 8, 0.973);
  z-index: 1100;
}

.mobile-dock a {
  color: rgba(255, 255, 255, 0.966);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  flex: 1;
  min-height: 64px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  padding: 0.45rem 0.35rem;
  text-align: center;
}

.mobile-dock a:hover,
.mobile-dock a.active {
  color: #fff;
  transform: translateY(-1px);
}

.mobile-dock a i {
  font-size: 1.3rem;
}

.mobile-dock a span {
  font-size: 0.72rem;
  line-height: 1.2;
  color: rgba(238, 244, 255, 0.82);
}

.mobile-dock .dock-action {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #06111f;
  box-shadow: 0 24px 60px rgba(255, 166, 0, 0.596);
  transform: translateY(-10px);
  position: relative;
  flex: none;
}

.mobile-dock .dock-action i {
  font-size: 1.35rem;
}

/* ===== HOTEL LAYOUT STYLES ===== */

/* Slider Area */
.slider-area {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #06111f 0%, #0c1f36 100%);
}

.slider-active {
  position: relative;
}

.single-slider {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
}

.hero-overly::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 17, 31, 0.85), rgba(12, 31, 54, 0.8));
  z-index: 1;
}

.slider-height {
  min-height: 600px;
}

.h1-slider-caption {
  position: relative;
  z-index: 2;
  text-align: center;
}

.h1-slider-caption h1 {
  font-size: 66px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Noto Serif', serif;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.h1-slider-caption h3 {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0 170px;
}

.h1-slider-caption h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 154px;
  height: 2px;
  background: #bd700b;
}

.h1-slider-caption h3::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 154px;
  height: 2px;
  background: #bd700b;
}

/* Dot Navigation */
.dot-style .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2;
}

.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}

.slick-dots button {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slick-dots .slick-active button,
.slick-dots li.slick-active button {
  background-color: #bd700b;
  width: 35px;
  border-radius: 6px;
}

/* Booking Area */
.booking-area {
  position: relative;
  background: linear-gradient(135deg, #06111f 0%, #0c1f36 100%);
  padding: 60px 0;
  margin-top: -89px;
  z-index: 10;
}

.booking-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
  flex-wrap: wrap;
  gap: 20px;
}

.single-select-box {
  flex: 1;
  min-width: 150px;
}

.boking-tittle span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.boking-datepicker input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  background: #f8f8f8;
  color: #262626;
  font-size: 14px;
}

.select-this select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  background: #f8f8f8;
  color: #262626;
  font-size: 14px;
  cursor: pointer;
}

.select-btn {
  background: #bd700b !important;
  color: #fff !important;
  border: none;
  padding: 27px 49px !important;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.select-btn:hover {
  background: #9a5a09 !important;
  transform: translateY(-2px);
}

/* Make Customer Area */
.make-customer-area {
  background: linear-gradient(135deg, #06111f 0%, #0c1f36 100%);
  padding: 100px 0;
}

.customar-padding {
  padding: 100px 0;
}

.customer-caption span {
  display: block;
  color: #bd700b;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.customer-caption h2 {
  font-size: 45px;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  font-family: 'Noto Serif', serif;
}

.caption-details p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.more-btn1 {
  display: inline-block;
  background: #bd700b;
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.more-btn1:hover {
  background: #9a5a09;
}

.customer-img {
  position: relative;
}

.service-experience {
  position: absolute;
  bottom: -27px;
  left: 20px;
  background: #ff8800;
  color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  z-index: 900;
  width: 260px;
}

.service-experience h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: rgb(255, 255, 255)
}

/* Room Area */
.room-area {
  background: linear-gradient(135deg, #06111f 0%, #0c1f36 100%);
  padding: 100px 0;
}

.font-back-tittle {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.archivment-front {
  position: relative;
  z-index: 2;
}

.archivment-front h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-family: 'Noto Serif', serif;
}

.archivment-back {
  position: absolute;
  font-size: 80px;
  color: rgba(189, 112, 11, 0.15);
  font-weight: 700;
  margin: 0;
  z-index: 1;
  font-family: 'Noto Serif', serif;
}

.single-room {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.single-room:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.room-img {
  height: 250px;
  overflow: hidden;
  background: #000;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-room:hover .room-img img {
  transform: scale(1.05);
}

.room-caption {
  padding: 25px;
  flex-grow: 1;
}

.room-caption h3 {
  font-size: 18px;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.room-caption h3 a {
  color: #fff;
  transition: color 0.3s ease;
}

.room-caption h3 a:hover {
  color: #bd700b;
}

.per-night {
  margin-top: 15px;
}

.per-night span {
  color: #bd700b;
  font-size: 18px;
  font-weight: 700;
}

.per-night span span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
}

.room-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.room-link:hover {
  text-decoration: none;
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.amenities-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.amenities-list li:hover {
  color: #bd700b;
}

.amenities-list li i {
  margin-right: 8px;
  color: #bd700b;
  transition: transform 0.3s ease;
}

.amenities-list li:hover i {
  transform: scale(1.1);
}

.room-btn {
  text-align: center;
}

.view-btn1 {
  background: #bd700b;
  color: #fff;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.view-btn1:hover {
  background: #9a5a09;
}

/* Dining Area */
.dining-area {
  background: linear-gradient(135deg, #06111f 0%, #0c1f36 100%);
  padding: 150px 0;
}

.dining-padding-top {
  padding-top: 150px;
}

.single-dining-area {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
}

.single-dining-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 17, 31, 0.8), rgba(12, 31, 54, 0.85));
  z-index: 1;
}

.dining-caption {
  position: relative;
  z-index: 2;
}

.dining-caption span {
  display: block;
  color: #bd700b;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.dining-caption h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-family: 'Noto Serif', serif;
}

.dining-caption p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.border-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #bd700b;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.border-btn:hover {
  background: #bd700b;
  color: #fff;
}

.text-right {
  text-align: right;
}

/* Testimonial Area */
.testimonial-area {
  background: linear-gradient(135deg, #06111f 0%, #0c1f36 100%);
  padding: 100px 0;
}

.testimonial-padding {
  padding: 100px 0;
}

.testimonial-caption {
  text-align: center;
}

.testimonial-caption p {
  font-size: 25px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-weight: 400;
  font-style: italic;
}

.testimonial-ratting {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.testimonial-ratting i {
  color: #bd700b;
  font-size: 18px;
}

.rattiong-caption {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.rattiong-caption span span {
  color: #bd700b;
  font-weight: 600;
}

/* Blog Area */
.blog-area {
  background: linear-gradient(135deg, #06111f 0%, #0c1f36 100%);
  padding: 100px 0;
}

.blog-padding {
  padding: 100px 0;
}

.single-blog {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.single-blog:hover {
  transform: rotate(1deg) scale(1.1);
  box-shadow: 1.395px 19.951px 38px rgba(0, 0, 0, 0.15);
}

.blog-img {
  height: 280px;
  overflow: hidden;
  background: #000;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-blog:hover .blog-img img {
  transform: scale(1.05);
}

.blog-caption {
  padding: 25px;
}

.blog-cap-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
}

.blog-cap-top span {
  color: #bd700b;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-cap-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.blog-cap-top a {
  color: #bd700b;
  transition: color 0.3s ease;
}

.blog-cap-top a:hover {
  color: #fff;
}

.blog-cap-mid p {
  margin: 0 0 15px 0;
}

.blog-cap-mid a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-cap-mid a:hover {
  color: #bd700b;
}

.blog-cap-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-cap-bottom span img {
  margin-right: 5px;
  width: 16px;
}

/* Gallery Area */
.gallery-area {
  background: linear-gradient(135deg, #06111f 0%, #0c1f36 100%);
  padding: 50px 0;
}

.gallery-active {
  display: flex;
  gap: 0;
}

.gallery-img {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  background: #000;
}

.gallery-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-img:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
  .h1-slider-caption h1 {
    font-size: 48px;
  }

  .h1-slider-caption h3 {
    font-size: 24px;
    padding: 0 120px;
  }

  .h1-slider-caption h3::before,
  .h1-slider-caption h3::after {
    width: 100px;
  }

  .booking-wrap {
    flex-wrap: wrap;
    gap: 15px;
  }

  .single-select-box {
    flex: 0 0 calc(50% - 7.5px);
  }

  .select-btn {
    flex: 0 0 calc(50% - 7.5px);
  }

  .service-experience {
    width: 240px;
    padding: 20px 25px;
  }

  .archivment-back {
    font-size: 60px;
  }

  .c-name {
  margin-left: auto;

  white-space: normal;        /* allows wrapping */
  overflow-wrap: break-word;  /* breaks long words if needed */
  word-break: break-word;     /* fallback support */

  max-width: 100%;            /* don’t overflow container */
  text-align: right;          /* keeps it aligned nicely */
  line-height: 1.3;           /* improves readability */
}
}

@media (max-width: 767px) {
  .slider-height {
    min-height: 400px;
  }

  .h1-slider-caption h1 {
    font-size: 36px;
  }

  .h1-slider-caption h3 {
    font-size: 18px;
    padding: 0 80px;
  }

  .h1-slider-caption h3::before,
  .h1-slider-caption h3::after {
    width: 60px;
  }

  .booking-wrap {
    padding: 25px;
    flex-direction: column;
  }

  .single-select-box {
    flex: 1;
    width: 100%;
  }

  .select-btn {
    width: 100%;
  }

  .customer-img {
    margin-bottom: 50px;
  }

  .service-experience {
    position: static;
    z-index: 900;
    margin-top: -40px;
  }

  .single-room {
    margin-bottom: 30px;
  }

  .archivment-back {
    font-size: 40px;
  }

  .archivment-front h3 {
    font-size: 28px;
  }

  .customer-caption h2 {
    font-size: 32px;
  }

  .dining-caption h3 {
    font-size: 32px;
  }

  .testimonial-caption p {
    font-size: 18px;
  }

  .gallery-img {
    min-height: 250px;
  }

  .c-name {
  margin-left: auto;

  white-space: normal;        /* allows wrapping */
  overflow-wrap: break-word;  /* breaks long words if needed */
  word-break: break-word;     /* fallback support */

  max-width: 100%;            /* don’t overflow container */
  text-align: right;          /* keeps it aligned nicely */
  line-height: 1.3;           /* improves readability */
}
}

.mobile-dock::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 20px;
  background: rgba(7, 14, 27, 0.95);
  border-radius: 50%;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-control,
.form-select,
textarea {
  background: rgba(10, 20, 40, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eef4ff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(74, 199, 255, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(74, 199, 255, 0.14);
}

.form-label {
  color: rgba(238, 244, 255, 0.78);
}

.floating-label {
  position: relative;
}

.floating-label input,
.floating-label textarea,
.floating-label select {
  padding-top: 1.4rem;
}

.floating-label label {
  position: absolute;
  top: 0.95rem;
  left: 1rem;
  color: rgba(238, 244, 255, 0.5);
  font-size: 0.88rem;
  pointer-events: none;
  transition: transform 0.25s ease, color 0.25s ease, font-size 0.25s ease;
}

.floating-label input:focus + label,
.floating-label textarea:focus + label,
.floating-label select:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.85rem);
  font-size: 0.75rem;
  color: var(--accent-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
}

@media (max-width: 575px) {
  .mobile-dock {
    width: calc(100% - 15px);
    padding: 0.75rem 0.75rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .c-name {
  margin-left: auto;

  white-space: normal;        /* allows wrapping */
  overflow-wrap: break-word;  /* breaks long words if needed */
  word-break: break-word;     /* fallback support */

  max-width: 100%;            /* don’t overflow container */
  text-align: right;          /* keeps it aligned nicely */
  line-height: 1.3;           /* improves readability */
}
}

/* 2026 premium light refresh */
:root {
  --bg: #f7f7f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfb;
  --surface-strong: #ffffff;
  --accent: #e31c5f;
  --accent2: #ff385c;
  --accent-soft: rgba(227, 28, 95, 0.12);
  --text: #222222;
  --muted: #6a6a6a;
  --border: #ebebeb;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

body {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  color: var(--text);
  padding-bottom: 76px;
}

.site-header {
  background: rgba(6, 17, 31, 0.82);
  backdrop-filter: blur(16px);
}

.top-bar {
  background: rgba(2, 10, 26, 0.92);
}

.top-bar-inner,
.top-contact,
.top-social,
.top-social-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.top-bar-inner {
  min-height: 44px;
  justify-content: space-between;
}

.top-contact a,
.top-social a,
.social-inline-link {
  color: rgba(255, 255, 255, 0.84);
}

.site-navbar {
  background: transparent !important;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.navbar-brand {
  gap: 0.85rem;
}

.navbar-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-kicker {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-name {
  color: #ffffff;
  font-weight: 800;
}

.navbar-nav .nav-link {
  color: rgba(238, 244, 255, 0.82);
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  margin-left: 1rem;
}

.btn-glow,
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 26px rgba(255, 56, 92, 0.22);
  border-radius: 999px;
  font-weight: 700;
}

.btn-glow:hover,
.btn-primary:hover {
  color: #f86300;
  box-shadow: 0 18px 38px rgba(255, 56, 92, 0.3);
}

.glass-card,
.card-glass,
.feature-card,
.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: #222222;
}

.text-muted,
.small.text-muted {
  color: var(--muted) !important;
}

.hero::before,
.page-hero::before {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.24) 0%, rgba(17, 17, 17, 0.6) 100%);
}

.page-hero small,
.section-title small,
.text-info {
  color: var(--accent2) !important;
}

.section-copy {
  color: var(--muted);
}

.feature-icon {
  background: var(--accent-soft);
  color: var(--accent2);
}

.form-control,
.form-select,
textarea {
  background: #ffffff;
  color: #222222;
  border: 1px solid #dddddd;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: rgba(255, 56, 92, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(255, 56, 92, 0.12);
}

.form-label,
.floating-label label {
  color: #717171;
}

.room-img {
  aspect-ratio: 4 / 3;
  background: #f2f2f2;
  overflow: hidden;
   object-fit: cover;
  
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 10px;
}

.service-card {
  padding: 1.6rem;
}

.badge.bg-info,
.badge.bg-secondary {
  background: #f3f3f3 !important;
  color: #444444 !important;
}

.badge.bg-success {
  background: rgba(0, 166, 98, 0.12) !important;
  color: #0a8f5a !important;
}

.badge.bg-danger {
  background: rgba(227, 28, 95, 0.14) !important;
  color: var(--accent) !important;
}

.site-footer {
  margin-top: 4rem;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 3.2rem 0 2rem;
}

.footer-title {
  color: #111111;
  font-weight: 700;
}

.footer-copy,
.footer-link,
.footer-link a,
.footer-bottom {
  color: #6a6a6a;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1030;
  width: calc(100% - 28px);
  max-width: 430px;
  padding: 0.8rem 0.9rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.mobile-dock a {
  color: #5f6368;
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-align: center;
  padding: 0.35rem 0.15rem;
  border-radius: 16px;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.mobile-dock a.active,
.mobile-dock a:hover {
  color: var(--accent2);
  background: rgba(189, 112, 11, 0.08);
}

.mobile-dock a i {
  font-size: 1.05rem;
}

.mobile-dock a span {
  font-size: 0.72rem;
  line-height: 1.15;
}

.mobile-dock .dock-action {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  margin-top: -28px;
  flex: 0 0 68px;
  box-shadow: 0 18px 32px rgba(189, 112, 11, 0.28);
}

.mobile-dock .dock-action span {
  color: #fff;
}

.mobile-dock .dock-action.active,
.mobile-dock .dock-action:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}

.similar-listing-card {
  display: flex;
  flex-direction: column;
}

.similar-listing-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: #f3f4f6;
}

.similar-listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    /* position: sticky; */
    top: 0;
    z-index: 1045;
  }

  .top-bar {
    display: none;
  }

  .site-navbar {
    background: rgba(6, 17, 31, 0.96) !important;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .site-navbar .container,
  .site-nav-shell,
  .navbar-nav {
    justify-content: space-between;
  }

  .site-nav-shell {
    display: none;
  }

  .site-navbar .container {
    gap: 0.5rem;
    flex-wrap: nowrap;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-brand {
    width: auto;
    flex: 1;
    justify-content: flex-start;
    text-align: left;
    gap: 0.6rem;
  }

  .navbar-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .brand-copy {
    min-width: 0;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .brand-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .brand-name {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .nav-cta {
    margin-left: 0;
    flex-shrink: 0;
  }

  .nav-cta .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    min-height: 40px;
  }

  .mobile-dock {
    width: min(calc(100% - 20px), 420px);
    padding: 0.7rem 0.7rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    gap: 0.25rem;
    border-radius: 24px;
    bottom: 10px;
  }

  .mobile-dock::before {
    display: none;
  }

  .mobile-dock a {
    min-height: 58px;
    padding: 0.35rem 0.1rem;
  }

  .mobile-dock a span {
    font-size: 0.68rem;
  }

  .mobile-dock .dock-action {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    margin-top: -18px;
    border-radius: 18px;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand {
    justify-content: flex-start;
    text-align: left;
    flex: 1;
  }

  .brand-copy {
    align-items: flex-start;
  }

  .brand-kicker {
    display: none;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .nav-cta .btn {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
    min-height: 36px;
  }

  .mobile-dock {
    width: calc(100% - 14px);
    max-width: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .mobile-dock a i {
    font-size: 1rem;
  }

  .mobile-dock a span {
    font-size: 0.64rem;
  }

  .mobile-dock .dock-action {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    margin-top: -14px;
  }
}

@media (max-width: 420px) {
  .navbar-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.5rem;
    display: flex;
    padding-top: 10px;
    margin-left: auto;
  }

  .mobile-dock a {
    min-height: 54px;
  }

  .mobile-dock .dock-action {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
}

/* 2026-04 production polish overrides */
:root {
  --bg: #030b1c;
  --bg-soft: #080f1d;
  --surface: rgba(14, 24, 46, 0.9);
  --surface-strong: rgba(8, 15, 29, 0.96);
  --surface-soft: rgba(62, 73, 95, 0.16);
  --surface-border: rgba(255, 255, 255, 0.1);
  --accent: #3e495f;
  --accent-strong: #55627b;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at top left, rgba(62, 73, 95, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #030b1c 0%, #080f1d 100%);
  color: var(--text);
}

.site-header {
  /* position: relative; */
  z-index: 1040;
}

.top-bar {
  /* position: relative; */
  z-index: 1030;
  background: rgba(3, 11, 28, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-navbar {
  /* position: sticky; */
  top: 0;
  z-index: 1040;
  background: rgba(8, 15, 29, 0.88) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.site-navbar .container {
  min-height: 88px;
}

.navbar-brand {
  gap: 0.85rem;
}

.navbar-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.brand-name,
.navbar-nav .nav-link,
.section-title h2,
.card-glass h1,
.card-glass h2,
.card-glass h3,
.card-glass h4,
.card-glass h5,
.card-glass h6,
.service-card h5,
.feature-card h5,
.stats-card h3,
.faq-item h6 {
  color: #fff;
}

.brand-kicker,
.contact-copy small,
.section-copy,
.text-muted,
.service-card p,
.feature-card p,
.faq-item p,
.review-card p,
.price-breakdown,
.table,
.table small,
.listing-address,
.listing-showcase .small {
  color: var(--muted) !important;
}

.navbar-nav {
  gap: 0.35rem;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.top-contact a,
.social-inline-link,
.top-social a {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.top-contact a:hover,
.social-inline-link:hover,
.top-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
}

.top-phone {
  background: rgba(62, 73, 95, 0.3);
}

.btn,
.btn-sm {
  border-radius: 14px;
}

.btn-glow {
  background: linear-gradient(135deg, #ff7b00 0%, #2e1b0e 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.btn-glow:hover {
  background: linear-gradient(135deg, #7b6455 0%, #522f13 100%);
}

.btn-outline-dark,
.btn-outline-secondary,
.btn-outline-light,
.route-mode-btn {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-dark:hover,
.btn-outline-secondary:hover,
.btn-outline-light:hover,
.route-mode-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.page-hero {
  min-height: clamp(360px, 56vh, 620px);
  display: flex;
  align-items: flex-end;
}

.page-hero::before {
  background:
    linear-gradient(180deg, rgba(3, 11, 28, 0.36) 0%, rgba(3, 11, 28, 0.88) 100%),
    radial-gradient(circle at top center, rgba(62, 73, 95, 0.24), transparent 30%);
}

.page-hero .hero-content,
.hero.hero-carousel .hero-content {
  padding-bottom: clamp(1.5rem, 3vw, 3rem);
}

.card-glass,
.service-card,
.feature-card,
.stats-card,
.faq-item,
.search-panel,
.review-card,
.price-breakdown,
.home-map-card,
.home-calendar-card,
.home-detail-card {
  background: linear-gradient(180deg, rgba(14, 24, 46, 0.92) 0%, rgba(8, 15, 29, 0.96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: blur(14px);
}

.card-glass,
.service-card,
.feature-card,
.stats-card,
.faq-item,
.review-card {
  border-radius: 20px;
}

.card-glass:hover,
.service-card:hover,
.feature-card:hover,
.stats-card:hover,
.review-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-control,
.form-select,
.form-control:focus,
.form-select:focus,
textarea.form-control {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.form-control::placeholder,
.form-select::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-label,
.floating-label label {
  color: rgba(255, 255, 255, 0.76);
}

.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:not(:placeholder-shown) + label,
.floating-label input:focus + label,
.floating-label textarea:focus + label,
.floating-label select:focus + label {
  background: rgba(8, 15, 29, 0.96);
  color: #fff;
}

.table {
  --bs-table-bg: transparent;
  --bs-table-color: #fff;
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.table-light {
  --bs-table-bg: rgba(255, 255, 255, 0.08);
  --bs-table-color: #fff;
}

.table > :not(caption) > * > * {
  padding: 1rem 0.9rem;
  border-bottom-width: 1px;
}

.badge.bg-secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff;
}

.badge.bg-light {
  background: rgba(255, 255, 255, 0.92) !important;
}

.room-img,
.similar-listing-media,
.gallery-img,
.card-glass .overflow-hidden.rounded-4 {
  border-radius: 18px !important;
}

.room-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.room-img img {
  width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 16px;
}

.listing-showcase-card .card-glass,
.listing-showcase-card article,
.similar-listing-card {
  display: flex;
  flex-direction: column;
}

.listing-showcase-card .card-body,
.similar-listing-card {
  flex: 1;
}

.search-panel .badge,
.price-breakdown .badge {
  border-radius: 999px;
}

.amenity-pill {
  position: relative;
  display: inline-flex;
}

.amenity-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.amenity-pill span,
.availability-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.amenity-pill input:checked + span,
.availability-toggle input:checked + span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.availability-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.route-mode-switch {
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.route-mode-btn {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: none;
}

.route-mode-btn.active {
  background: linear-gradient(135deg, #3e495f 0%, #0e182e 100%);
}

.calendar-table-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
}

.calendar-table {
  min-width: 360px;
}

.calendar-table th,
.calendar-table td {
  border-color: rgba(255, 255, 255, 0.08);
}

.calendar-table th {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.available-date {
  background: rgba(44, 174, 128, 0.2);
  color: #d9fff0;
}

.past-date,
.calendar-table td.empty {
  background: rgba(255, 255, 255, 0.04);
}

.home-map-frame,
iframe {
  border-radius: 18px;
}

.site-footer {
  background: rgba(3, 11, 28, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-link a,
.footer-copy,
.footer-bottom,
.footer-bottom span {
  color: var(--muted);
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 100px;
  }

  .top-bar {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }

  .site-navbar .container {
    min-height: 74px;
  }

  .site-nav-shell,
  .nav-cta {
    display: none !important;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .top-contact,
  .top-social-wrap {
    justify-content: center;
  }

  .mobile-dock {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
    width: calc(100% - 18px);
    max-width: 390px;
    min-height: 76px;
    padding: 0.65rem 0.7rem 0.8rem;
    background: rgba(3, 11, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
  }

  .mobile-dock::before {
    display: none;
  }

  .mobile-dock a {
    min-height: 58px;
    gap: 0.28rem;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.72);
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
  }

  .mobile-dock a.active,
  .mobile-dock a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-dock .dock-action {
    margin-top: -22px;
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 22px;
    background: linear-gradient(135deg, #3e495f 0%, #0e182e 100%);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 767.98px) {
  .top-contact a,
  .social-inline-link {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    min-height: 320px;
  }

  .card-glass,
  .service-card,
  .feature-card,
  .stats-card,
  .faq-item,
  .search-panel {
    padding: 1.15rem !important;
  }

  .table-responsive {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Responsive shell refinements */
.site-header,
.site-navbar,
.site-footer,
.mobile-dock {
  width: 100%;
}

.navbar-brand,
.brand-copy,
.top-contact,
.top-social-wrap {
  min-width: 0;
}

.brand-name,
.contact-copy strong,
.mobile-dock a span {
  overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
  }

  .top-bar {
    padding-inline: 0;
  }

  .top-bar-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.65rem 0;
  }

  .top-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
  }

  .top-contact a {
    width: 100%;
    min-width: 0;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
  }

  .top-social-wrap {
    width: 100%;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .social-inline-link {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0.72rem 0.85rem;
  }

  .site-navbar .container {
    min-height: 68px;
    justify-content: center;
  }

  .navbar-brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand-copy {
    align-items: center;
  }

  .navbar-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .mobile-dock {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 0.35rem;
    width: min(420px, calc(100vw - 16px));
    max-width: 420px;
    min-height: 74px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 0.55rem 0.55rem calc(0.6rem + env(safe-area-inset-bottom));
    border-radius: 26px;
  }

  .mobile-dock a {
    min-width: 0;
    min-height: 56px;
    padding: 0.35rem 0.2rem;
    gap: 0.22rem;
  }

  .mobile-dock a i {
    font-size: 1.08rem;
  }

  .mobile-dock a span {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
  }

  .mobile-dock .dock-action {
    justify-self: center;
    width: 62px;
    height: 62px;
    flex: none;
    margin-top: -18px;
    border-radius: 20px;
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .top-contact {
    grid-template-columns: 1fr;
  }

  .top-social-wrap {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .top-social {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .contact-copy small {
    display: none;
  }

  .contact-copy strong {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .social-inline-link span {
    font-size: 0.85rem;
  }

  .site-navbar .container {
    min-height: 64px;
  }

  .brand-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .top-bar-inner {
    padding: 0.55rem 0;
  }

  .top-contact a,
  .social-inline-link {
    padding: 0.62rem 0.75rem;
  }

  .contact-icon,
  .top-social a {
    width: 34px;
    height: 34px;
  }

  .navbar-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .mobile-dock {
    width: calc(100vw - 12px);
    min-height: 70px;
    gap: 0.25rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  .mobile-dock a {
    min-height: 52px;
  }

  .mobile-dock a i {
    font-size: 1rem;
  }

  .mobile-dock a span {
    font-size: 0.62rem;
  }

  .mobile-dock .dock-action {
    width: 58px;
    height: 58px;
    margin-top: -14px;
  }
}

/* Rooms page stability overrides */
.site-header {
  position: relative;
  z-index: 1050;
}

.site-header .site-navbar.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1055;
}

.room-listing-card {
  overflow: hidden;
}

.room-listing-card .room-img {
  aspect-ratio: 16 / 10;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.room-listing-card .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.room-listing-body {
  min-height: 100%;
}

.room-listing-title {
  color: #ffffff;
  line-height: 1.35;
}

.room-listing-copy,
.room-listing-meta,
.room-listing-price small {
  color: rgba(255, 255, 255, 0.82) !important;
}

.room-listing-copy {
  line-height: 1.65;
}

.room-calendar-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.room-calendar-toggle {
  width: 100%;
  justify-content: center;
}

.room-calendar-panel {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.room-calendar-loading {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.calendar-widget {
  color: #ffffff;
}

.calendar-header {
  margin-bottom: 0.85rem;
  font-size: 1rem;
  text-align: center;
  color: #ffffff;
}

.calendar-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
}

.calendar-table th,
.calendar-table td {
  text-align: center;
  padding: 0.65rem 0.35rem;
  border-radius: 12px;
  font-size: 0.88rem;
}

.calendar-table th {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.calendar-table td {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.calendar-table td.booked-date {
  background: rgba(220, 53, 69, 0.28);
  color: #ffd7dc;
  border: 1px solid rgba(220, 53, 69, 0.55);
}

.calendar-table td.available-date {
  background: rgba(25, 135, 84, 0.22);
  color: #dbffef;
  border: 1px solid rgba(25, 135, 84, 0.42);
}

.calendar-table td.past-date,
.calendar-table td.empty {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.42);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.calendar-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-booked,
.legend-available {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.legend-booked {
  background: rgba(220, 53, 69, 0.8);
}

.legend-available {
  background: rgba(25, 135, 84, 0.85);
}

@media (max-width: 991.98px) {
  .room-listing-card .room-img {
    min-height: 200px;
  }
}

@media (max-width: 767.98px) {
  .room-listing-card .room-img {
    aspect-ratio: 4 / 3;
    min-height: 190px;
  }

  .calendar-table {
    border-spacing: 4px;
  }

  .calendar-table th,
  .calendar-table td {
    padding: 0.5rem 0.2rem;
    font-size: 0.8rem;
  }
}

.modal-content {
  color: #111827;
}

.modal-content .modal-title,
.modal-content .form-label,
.modal-content label,
.modal-content p,
.modal-content small,
.modal-content .text-muted,
.modal-content .alert {
  color: #111827 !important;
}

.modal-content .form-control,
.modal-content .form-select,
.modal-content .form-control:focus,
.modal-content .form-select:focus {
  background: #ffffff;
  color: #111827;
  border-color: rgba(17, 24, 39, 0.16);
}

.single-room-summary-card {
  overflow: hidden;
}

.single-room-summary-image {
  height: 100%;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.08);
}

.single-room-summary-image img {
  width: 100%;
  height: 100% !important;
  min-height: 260px;
  margin-right: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.single-room-summary-content {
  min-width: 0;
  height: 100%;
}

.single-room-summary-content .section-copy {
  overflow-wrap: anywhere;
  line-height: 1.75;
}

.single-room-summary-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.single-room-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
}

.single-room-stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.single-room-stat-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: capitalize;
}

.single-room-dashboard-btn {
  margin-left: auto;
  white-space: nowrap;
}

.single-room-mobile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.single-room-mobile-actions .btn {
  width: 100%;
  justify-content: center;
}

.single-room-page .single-room-booking-panel {
  scroll-margin-top: 110px;
}

.single-room-page .site-header {
  position: sticky !important;
  top: 0;
  z-index: 1060;
}

@media (min-width: 1200px) {
  .single-room-summary-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.single-room-page .single-room-amenities-section .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-room-page .single-room-amenities-section .feature-card h5 {
  color: #ffffff;
}

.single-room-page .single-room-amenities-section .feature-card p,
.single-room-page .single-room-amenities-section .feature-card .text-muted {
  color: rgba(255, 255, 255, 0.82) !important;
}

.single-room-page .single-room-booking-panel .form-control,
.single-room-page .single-room-booking-panel .form-select,
.single-room-page .single-room-booking-panel .form-control:focus,
.single-room-page .single-room-booking-panel .form-select:focus,
.single-room-page .single-room-booking-panel textarea.form-control,
.single-room-page main .form-control,
.single-room-page main .form-select,
.single-room-page main .form-control:focus,
.single-room-page main .form-select:focus {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}

.single-room-page .single-room-booking-panel .form-control::-webkit-calendar-picker-indicator,
.single-room-page main .form-control::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.single-room-page .single-room-booking-panel .form-control::placeholder,
.single-room-page .single-room-booking-panel .form-select::placeholder,
.single-room-page main .form-control::placeholder,
.single-room-page main .form-select::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.single-room-page .single-room-booking-panel .form-label,
.single-room-page .single-room-booking-panel .floating-label label,
.single-room-page main .form-label {
  color: rgba(255, 255, 255, 0.9);
}

.single-room-page .single-room-booking-panel .text-muted,
.single-room-page .single-room-booking-panel small,
.single-room-page .single-room-summary-content .text-muted {
  color: rgba(255, 255, 255, 0.78) !important;
}

@media (max-width: 991.98px) {
  .single-room-summary-image,
  .single-room-summary-image img {
    min-height: 230px;
  }
}

@media (max-width: 767.98px) {
  .single-room-summary-stats {
    grid-template-columns: 1fr;
  }

  .single-room-summary-image,
  .single-room-summary-image img {
    min-height: 220px;
  }

  .single-room-dashboard-btn {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .single-room-mobile-actions {
    grid-template-columns: 1fr;
  }

  .single-room-page .single-room-booking-panel {
    top: 86px !important;
  }
}

.floating-label input,
.floating-label select,
.floating-label textarea {
  color: #111827;
}

.floating-label label {
  color: rgba(17, 24, 39, 0.7);
}

#loginModal .modal-content,
#loginModal .modal-header,
#loginModal .modal-body {
  background: #ffffff;
}

#loginModal .btn-close {
  filter: none;
}
