/* ============================================================
   Hotel Amma's Palace — Custom Stylesheet
   Dark Luxury Theme with Gold Accents
   ============================================================ */

/* ---- Variables ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9d7e38;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-card: #161616;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(201, 168, 76, 0.18);
  --text-light: #f0ece4;
  --text-muted: #888;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Light section palette */
  --light-bg: #fdf8f0;
  --light-bg-2: #ffffff;
  --dark-text: #1a1a1a;
  --mid-text: #555555;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

/* Kill Bootstrap 5.3 light-theme defaults at the root level */
:root,
[data-bs-theme="dark"] {
  --bs-body-bg: #0a0a0a;
  --bs-body-bg-rgb: 10, 10, 10;
  --bs-body-color: #f0ece4;
  --bs-secondary-bg: #111111;
  --bs-tertiary-bg: #1a1a1a;
  --bs-navbar-bg: transparent;
  --bs-card-bg: #161616;
  --bs-modal-bg: #111111;
  --bs-offcanvas-bg: #111111;
  --bs-modal-color: #f0ece4;
  --bs-border-color: rgba(201, 168, 76, 0.15);
  --bs-border-color-translucent: rgba(201, 168, 76, 0.1);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a !important;
  background: #0a0a0a !important;
  color: var(--text-light);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

/* Neutralise any Bootstrap bg utility that might slip in */
.bg-white,
.bg-light,
.bg-body {
  background-color: var(--dark-3) !important;
}
section,
main,
.carousel,
.carousel-item {
  background-color: transparent;
}
/* Prevent any child from causing horizontal scroll */
section,
.hero-slide,
.section-about,
.section-services,
.section-ideal,
.section-gallery,
.section-why,
.section-contact {
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

/* ---- Utilities ---- */
.text-gold {
  color: var(--gold) !important;
}
.bg-dark-2 {
  background: var(--dark-2);
}
.bg-dark-3 {
  background: var(--dark-3);
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-text {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 14px;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 22px;
}

.section-padding {
  padding: 90px 0;
}

/* ---- Buttons ---- */
.btn-gold {
  background: linear-gradient(
    135deg,
    var(--gold-dark) 0%,
    var(--gold) 50%,
    var(--gold-light) 100%
  );
  color: #111;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  padding: 11px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  white-space: nowrap;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 50px;
  padding: 9px 26px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.btn-gold-sm:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold-sm {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-weight: 600;
  font-size: 12px;
  border-radius: 50px;
  padding: 7px 18px;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.btn-outline-gold-sm:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-1px);
}

/* ---- FLOATING ENQUIRE BUTTON ---- */
.floating-enquire {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.btn-enquire-float {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  color: #111;
  border: none;
  border-radius: 10px 0 0 10px;
  padding: 14px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: -4px 4px 20px rgba(201, 168, 76, 0.4);
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}
.btn-enquire-float:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  padding-right: 16px;
  box-shadow: -6px 6px 30px rgba(201, 168, 76, 0.6);
}
.btn-enquire-float i {
  font-size: 18px;
  color: #111;
}
.btn-enquire-float span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: #111;
  text-transform: uppercase;
}

/* ---- ENQUIRY MODAL ---- */
.enquire-modal-content {
  background: linear-gradient(145deg, #1a1508, #0e0c04, #1a1508);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(201, 168, 76, 0.15);
  color: var(--text-light);
}

.modal-title-wrapper {
  flex: 1;
}
.modal-title-wrapper .gold-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 1.5rem;
  color: var(--text-light);
}
.modal-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.luxury-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--text-light) !important;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}
.luxury-input:focus {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  color: var(--text-light);
  outline: none;
}
.luxury-input::placeholder {
  color: #666;
}
.luxury-select option {
  background: #1a1a1a;
  color: #fff;
}

.input-group-luxury {
  position: relative;
}
.input-group-luxury > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 13px;
  z-index: 2;
}
.input-group-luxury > .luxury-input {
  padding-left: 38px;
}

/* ---- NAVBAR ---- */
/* Override Bootstrap 5.3 navbar variables AND use !important as belt-and-braces */
.luxury-navbar,
nav.luxury-navbar,
nav.luxury-navbar.navbar {
  --bs-navbar-bg: #ffffff;
  padding: 5px 0;
  transition:
    background-color 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.luxury-navbar.scrolled,
nav.luxury-navbar.scrolled {
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding: 8px 0;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(201, 168, 76, 0.3);
}

.navbar-logo {
  height: 75px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  transition: var(--transition);
}
.luxury-navbar.scrolled .navbar-logo {
  height: 44px;
}

.luxury-navbar .nav-link {
  color: #222222 !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}
.luxury-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}
.luxury-navbar .nav-link:hover,
.luxury-navbar .nav-link.active {
  color: var(--gold-dark) !important;
}
.luxury-navbar .nav-link:hover::after,
.luxury-navbar .nav-link.active::after {
  width: 70%;
}

/* Custom hamburger */
.luxury-toggler {
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 6px 10px;
  background: transparent;
}
.toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 4px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO SLIDER ---- */
.hero-slide {
  min-height: 100vh;
  background-color: #0a0a0a; /* dark fallback while image loads */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

/* Override Bootstrap .carousel-caption defaults */
.carousel-caption {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  padding: 0 !important;
  text-align: center !important;
}

.hero-caption {
  position: relative;
  z-index: 2;
  text-align: center !important;
  left: 0;
  right: 0;
  bottom: auto;
  top: auto;
  padding: 0 20px;
  max-width: 100%;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.2),
    rgba(201, 168, 76, 0.1)
  );
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 34px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 13px 32px !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
}

.carousel-item {
  transition: transform 0.8s ease-in-out !important;
}

/* Slide text animation */
.carousel-item .hero-badge,
.carousel-item .hero-title,
.carousel-item .hero-subtitle,
.carousel-item .hero-btns {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.carousel-item.active .hero-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.carousel-item.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.carousel-item.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}
.carousel-item.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* Carousel controls — raise above the z-index:2 slide container */
.carousel-control-prev,
.carousel-control-next {
  z-index: 20 !important;
  width: 52px;
  height: 52px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: rgba(201, 168, 76, 0.15) !important;
  border: 2px solid rgba(201, 168, 76, 0.5) !important;
  border-radius: 50%;
  opacity: 1;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.carousel-control-prev {
  left: 20px;
}
.carousel-control-next {
  right: 20px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(201, 168, 76, 0.45) !important;
  border-color: var(--gold) !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Carousel indicators */
.carousel-indicators {
  position: absolute !important;
  bottom: 32px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 20 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.carousel-indicators [data-bs-target] {
  flex-shrink: 0;
  width: 34px !important;
  height: 5px !important;
  border-radius: 4px !important;
  border: none !important; /* remove Bootstrap's 10px transparent borders */
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important; /* Bootstrap defaults inactive to 0.5 — force full opacity */
  background: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition:
    width 0.4s ease,
    background 0.4s ease !important;
}
.carousel-indicators .active,
.carousel-indicators [data-bs-target].active {
  width: 58px !important;
  background: var(--gold) !important;
  opacity: 1 !important;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.55);
}

/* ---- ABOUT SECTION (light) ---- */
.section-about {
  background: var(--light-bg) !important;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.section-about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--glass-border);
  transition: var(--transition);
}
.about-main-img:hover {
  transform: scale(1.01);
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111;
  padding: 16px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-gold);
}
.about-badge-box i {
  font-size: 20px;
}

/* Counters */
.counter-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.counter-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.counter-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.counter-plus {
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 700;
}
.counter-label {
  font-size: 11px;
  color: var(--text-muted);
  margin: 6px 0 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- SERVICES SECTION ---- */
.section-services {
  background: var(--dark) !important;
  padding: 90px 0;
  position: relative;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    var(--shadow-gold);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}
.service-icon i {
  color: #111;
  font-size: 18px;
}

.service-title {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.service-desc {
  color: #888;
  font-size: 13px;
  flex: 1;
  margin-bottom: 18px;
}

.service-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ---- IDEAL FOR SECTION ---- */
.section-ideal {
  background: var(--light-bg-2) !important;
  padding: 90px 0;
  position: relative;
}
.section-ideal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.ideal-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 16px 22px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ideal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}
.ideal-card:hover::before {
  transform: scaleX(1);
}
.ideal-card:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.ideal-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15),
    rgba(201, 168, 76, 0.05)
  );
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.ideal-card:hover .ideal-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}
.ideal-icon i {
  font-size: 26px;
  color: var(--gold);
  transition: var(--transition);
}
.ideal-card:hover .ideal-icon i {
  color: #111;
}

.ideal-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* ---- GALLERY SECTION ---- */
.section-gallery {
  background: var(--dark) !important;
  padding: 90px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--dark-3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.gallery-overlay i {
  color: #fff;
  font-size: 26px;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  background: rgba(201, 168, 76, 0.35);
}
.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox modal */
.gallery-modal-content {
  background: #000;
  border: none;
  border-radius: 12px;
  position: relative;
}

.gallery-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.gallery-close:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

.gallery-modal-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 20px 60px;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.2);
  border: 2px solid rgba(201, 168, 76, 0.6);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}
.gallery-nav:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.gallery-prev {
  left: 10px;
}
.gallery-next {
  right: 10px;
}

.gallery-modal-counter {
  text-align: center;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 0 18px;
}

/* Responsive gallery grid */
@media (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .gallery-modal-body {
    padding: 16px 48px;
    min-height: 50vh;
  }
  .gallery-lightbox-img {
    max-height: 55vh;
  }
}
@media (max-width: 479px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .gallery-prev {
    left: 4px;
  }
  .gallery-next {
    right: 4px;
  }
}

/* ---- WHY CHOOSE US ---- */
.section-why {
  padding: 90px 0;
  position: relative;
  background: var(--dark) !important;
  overflow: hidden;
}

.why-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://picsum.photos/seed/luxuryhotel-bg/1920/1080");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
}
.why-parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    transparent 50%,
    var(--dark) 100%
  );
}

/* Animated bg particles */
.why-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.3;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.why-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: block;
}
.why-image:hover {
  transform: scale(1.02);
}

.why-content {
  position: relative;
  z-index: 2;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--glass-bg);
  border: 1px solid transparent;
  transition: var(--transition);
}
.why-feature:hover {
  border-color: var(--glass-border);
  background: rgba(201, 168, 76, 0.06);
  transform: translateX(4px);
}
.why-feature-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon i {
  color: #111;
  font-size: 13px;
}
.why-feature span {
  color: #ccc;
  font-size: 13.5px;
  font-weight: 500;
}

/* ---- CONTACT SECTION (light) ---- */
.section-contact {
  background: var(--light-bg) !important;
  padding: 90px 0;
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.map-wrapper iframe {
  border-radius: var(--radius-xl);
}

.contact-form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i {
  color: #111;
  font-size: 15px;
}
.contact-info-text {
  color: #bbb;
  font-size: 13px;
  line-height: 1.6;
}
.contact-info-text strong {
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}

.contact-action-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ---- COPYRIGHT BAR ---- */
.site-copyright {
  background: #050505;
  border-top: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent,
      var(--gold-dark),
      var(--gold),
      var(--gold-dark),
      transparent
    )
    1;
  padding: 18px 0;
  text-align: center;
}
.site-copyright p {
  color: #666;
  font-size: 13px;
  margin: 0;
}
.site-copyright .text-gold {
  font-weight: 600;
}

/* ---- FLOATING CALL BUTTON ---- */
.floating-call-btn {
  position: fixed;
  bottom: 94px; /* scroll-top height(44) + gap(20) + scroll-top bottom(30) */
  right: 20px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #1a7a3c, #25d366);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-call 2s infinite;
}
.floating-call-btn:hover {
  background: linear-gradient(135deg, #25d366, #1a7a3c);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-call {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 4px 32px rgba(37, 211, 102, 0.85),
      0 0 0 10px rgba(37, 211, 102, 0.12);
  }
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

/* ---- SECTION DIVIDER ---- */
.gold-section-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.3),
    transparent
  );
}

/* ---- ANIMATIONS ---- */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .luxury-navbar .navbar-collapse {
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    padding: 16px;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .luxury-navbar .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .luxury-navbar .nav-link:last-child {
    border-bottom: none;
  }
  .hero-caption {
    text-align: center;
    max-width: 100%;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .about-badge-box {
    bottom: -10px;
    right: -10px;
  }
  .contact-form-card {
    padding: 24px 20px;
  }
}

@media (max-width: 767.98px) {
  .section-padding,
  .section-about,
  .section-services,
  .section-ideal,
  .section-why,
  .section-contact {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .btn-hero {
    padding: 11px 22px !important;
    font-size: 13px !important;
  }
  .about-main-img {
    height: 320px;
  }
  .why-image {
    height: 260px;
  }
  .map-wrapper {
    height: 280px;
  }
  .scroll-top {
    right: 16px;
    bottom: 20px;
  }
  .floating-call-btn {
    right: 16px;
    bottom: 80px;
  }
  .btn-enquire-float span {
    font-size: 10px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  /* Fix iOS Safari: background-attachment:fixed causes layout bleed */
  .why-parallax-bg {
    background-attachment: scroll;
  }
  /* Prevent why-feature hover from pushing content off-screen */
  .why-feature:hover {
    transform: none;
  }
  /* Hide hero carousel controls on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .counter-number {
    font-size: 1.8rem;
  }
  .ideal-icon {
    width: 54px;
    height: 54px;
  }
  .ideal-icon i {
    font-size: 22px;
  }
  .service-btns {
    flex-direction: column;
  }
  .service-btns .btn-gold-sm,
  .service-btns .btn-outline-gold-sm {
    text-align: center;
  }
}

/* ============================================================
   FORCE DARK — BOOTSTRAP COMPONENT OVERRIDES
   These rules ensure no Bootstrap default white leaks through,
   regardless of theme-variable cascade order.
   ============================================================ */

/* Form controls */
.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-light) !important;
  border-color: rgba(201, 168, 76, 0.2) !important;
}
.form-control:focus,
.form-select:focus {
  background-color: rgba(201, 168, 76, 0.07) !important;
  color: var(--text-light) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12) !important;
}
.form-control::placeholder,
.form-select::placeholder {
  color: #666 !important;
}

/* Modal */
.modal-content {
  background-color: #111111 !important;
  color: var(--text-light) !important;
  border-color: rgba(201, 168, 76, 0.18) !important;
}
/* Restore custom modal overrides so they still win */
.enquire-modal-content {
  background: linear-gradient(145deg, #1a1508, #0e0c04, #1a1508) !important;
}
.gallery-modal-content {
  background: #000 !important;
}

/* Bootstrap cards */
.card {
  background-color: var(--dark-card) !important;
  color: var(--text-light) !important;
  border-color: rgba(201, 168, 76, 0.12) !important;
}
.card-body,
.card-header,
.card-footer {
  background-color: transparent !important;
  color: inherit !important;
}

/* Offcanvas / collapse */
.offcanvas,
.offcanvas-body {
  background-color: var(--dark-2) !important;
  color: var(--text-light) !important;
}

/* Dropdown */
.dropdown-menu {
  background-color: var(--dark-2) !important;
  border-color: rgba(201, 168, 76, 0.18) !important;
}
.dropdown-item {
  color: var(--text-light) !important;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(201, 168, 76, 0.1) !important;
  color: var(--gold) !important;
}

/* List groups */
.list-group-item {
  background-color: var(--dark-card) !important;
  color: var(--text-light) !important;
  border-color: rgba(201, 168, 76, 0.12) !important;
}

/* Accordion */
.accordion-item,
.accordion-button,
.accordion-body {
  background-color: var(--dark-card) !important;
  color: var(--text-light) !important;
}
.accordion-button:not(.collapsed) {
  background-color: rgba(201, 168, 76, 0.1) !important;
  color: var(--gold) !important;
}

/* Table */
.table {
  --bs-table-bg: transparent;
  color: var(--text-light) !important;
}

/* ============================================================
   LIGHT SECTION OVERRIDES
   About Us, Ideal For, Contact use warm cream / white backgrounds.
   Dark text + gold accents maintain the luxury feel.
   ============================================================ */

/* --- Shared light-section text reset ---------------------- */
.section-about .section-title,
.section-ideal .section-title,
.section-contact .section-title {
  color: var(--dark-text) !important;
}
.section-about .section-text,
.section-ideal .section-text,
.section-contact .section-text {
  color: var(--mid-text) !important;
}
/* gold text stays gold */
.section-about .text-gold,
.section-ideal .text-gold,
.section-contact .text-gold {
  color: var(--gold-dark) !important;
}

/* ---- ABOUT US — light cream ----------------------------- */
.section-about p,
.section-about span:not(.text-gold):not(.counter-number):not(.counter-plus) {
  color: var(--mid-text);
}
.section-about .counter-card {
  background: #ffffff !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}
.section-about .counter-card:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.2) !important;
}
.section-about .counter-label {
  color: #666 !important;
}
.section-about .about-badge-box {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #fff !important;
}
.section-about .about-badge-box span {
  color: #fff !important;
}

/* ---- IDEAL FOR — pure white ----------------------------- */
.section-ideal .ideal-card {
  background: #ffffff !important;
  border-color: rgba(201, 168, 76, 0.25) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07) !important;
}
.section-ideal .ideal-card:hover {
  background: #fff8ec !important;
  border-color: var(--gold) !important;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.2) !important;
}
.section-ideal .ideal-title {
  color: var(--dark-text) !important;
}
.section-ideal .ideal-card::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    transparent
  );
}

/* ---- CONTACT — light cream ------------------------------ */
.section-contact .contact-form-card {
  background: #ffffff !important;
  border-color: rgba(201, 168, 76, 0.25) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08) !important;
}
.section-contact .contact-form-card .section-title {
  color: var(--dark-text) !important;
}
.section-contact .contact-form-card .section-text {
  color: var(--mid-text) !important;
}

.section-contact .contact-info-card {
  background: #ffffff !important;
  border-color: rgba(201, 168, 76, 0.2) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07) !important;
}
.section-contact .contact-info-card .section-title {
  color: var(--dark-text) !important;
}
.section-contact .contact-info-text {
  color: #666 !important;
}
.section-contact .contact-info-text strong {
  color: var(--dark-text) !important;
}
.section-contact a {
  color: var(--gold-dark);
}
.section-contact a:hover {
  color: var(--gold);
}

/* Form inputs in contact section — light treatment */
.section-contact .luxury-input,
.section-contact .form-control {
  background: #f8f4ee !important;
  background-color: #f8f4ee !important;
  color: #333 !important;
  border-color: rgba(201, 168, 76, 0.35) !important;
}
.section-contact .luxury-input:focus,
.section-contact .form-control:focus {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #111 !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}
.section-contact .luxury-input::placeholder,
.section-contact .form-control::placeholder {
  color: #aaa !important;
}
.section-contact .input-group-luxury > i {
  color: var(--gold-dark) !important;
}

/* Map border on light section */
.section-contact .map-wrapper {
  border-color: rgba(201, 168, 76, 0.25) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}
