/* === DESIGN TOKENS — PREMIUM IMAGE-BASED THEME === */
/* Fonts loaded via <link> in HTML for non-blocking performance */

:root {
  --bg-dark: #0F0E0D;
  /* Deep Dark from Image */
  --bg-deep: #050505;
  /* Base Depth */
  --bg-card: #111111;
  /* Card/Modal Background */
  --bg-light: #D2C6B5;
  /* Stone/Architectural Mid-tone */
  --bg-white: #EBE3D5;
  /* Light Cream from Image */
  --gold: #C5A059;
  /* Highlight Accent from Image */
  --gold-light: #D6B57E;
  --gold-dark: #AE8E6D;
  /* Architectural Main Tone */
  --wa-green: #25D366;
  /* WhatsApp Brand Green */
  --wa-green-dark: #128C7E;

  --txt-on-dark: #EBE3D5;
  --txt-on-light: #0F0E0D;
  --txt2-on-dark: rgba(235, 227, 213, 0.75);
  --txt2-on-light: rgba(15, 14, 13, 0.75);

  --border-on-dark: rgba(197, 160, 89, 0.15);
  /* Gold-tinted borders */
  --border-on-light: rgba(174, 142, 109, 0.2);

  --white: #FFFFFF;
  --black: #000000;
  --bg-dark-rgb: 15, 14, 13;
  --gold-rgb: 197, 160, 89;
  --font-h: 'Cormorant Garamond', serif;
  --font-b: 'Outfit', sans-serif;
  --ease: all .5s cubic-bezier(.25, 1, .5, 1);
  --container: 1320px;
  --nav-h: 80px;
  --nav-h-mobile: 65px;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--txt-on-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--txt-on-dark);
}

.section-dark p {
  color: var(--txt2-on-dark);
}

.section-dark .sec-label {
  color: var(--gold);
}

.section-light {
  background: var(--bg-white);
  color: var(--txt-on-light);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--txt-on-light);
}

.section-light p {
  color: var(--txt2-on-light);
}

.section-light .sec-label {
  color: var(--gold-dark);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  color: var(--txt-on-dark);
  background: var(--bg-deep);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 75px;
  width: 100%;
  position: relative;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-h);
  font-weight: 400;
  line-height: 1.2;
  color: inherit;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

p {
  color: inherit;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* === SECTION LABEL === */
.sec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.sec-label::before {
  content: '◆';
  font-size: .5rem;
}

.center {
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--ease);
  background: transparent;
  color: inherit;
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn.maroon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn.maroon:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn.outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 500;
}

.btn.outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn.small {
  padding: 12px 28px;
  font-size: .7rem;
  letter-spacing: 2px;
}

/* === PRELOADER REDESIGN (DARK GLASS & LOGO FILL) === */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: url('Images/HeroAnimation/hotel-venice-pathankot-001.jpg') center/cover;
  opacity: 0.15;
  filter: blur(5px) grayscale(1);
}

.loader-glass {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(30px);
  z-index: 1;
}

.loader-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.loader-logo-box {
  position: relative;
  width: 180px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-filling-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.logo-base {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.1;
  filter: grayscale(1);
}

.logo-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  /* Animated via JS */
  overflow: hidden;
  transition: height 0.3s ease;
}

.logo-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 20px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 40%;
  animation: wave 2s infinite linear;
}

@keyframes wave {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.logo-bright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  /* Must match parent */
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
}

.loader-text-reveal {
  text-align: center;
  overflow: hidden;
}

.loader-title-new {
  font-family: var(--font-b);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--white);
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealText 0.8s forwards 1.5s;
}

.loader-tag {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  animation: revealText 0.8s forwards 1.8s;
}

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-percentage {
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
}

.loader-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: fillText 4s forwards linear;
  box-shadow: 0 0 10px var(--gold);
}

@keyframes fillText {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}



/* === HEADER & NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(var(--bg-dark-rgb), 0.1);
  transition: var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(var(--bg-dark-rgb), 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-on-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Left Column */
.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.h-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--txt-on-dark);
  font-size: .75rem;
  letter-spacing: 1px;
  transition: .3s;
  opacity: 0.8;
}

.h-item:hover {
  opacity: 1;
  color: var(--gold);
}

.h-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Center Column: Logo Signage */
.header-center {
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.h-branding {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(197, 160, 89, 0.15);
  padding: 6px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  transition: var(--ease);
}

.navbar.scrolled .h-branding {
  background: transparent;
  border-color: transparent;
  padding: 0;
}

.h-logo-img {
  height: 45px;
  width: auto;
  transition: .4s;
}

.navbar.scrolled .h-logo-img {
  height: 35px;
}

.h-text-group {
  text-align: left;
  border-left: 1px solid var(--gold);
  padding-left: 15px;
}

.h-title {
  font-family: var(--font-b);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 2px;
}

.h-subtitle {
  font-family: var(--font-b);
  font-size: .5rem;
  letter-spacing: 3px;
  color: var(--white);
  opacity: 0.6;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Right Column */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.h-social {
  display: flex;
  gap: 20px;
}

.h-social a {
  color: var(--txt-on-dark);
  opacity: 0.7;
  transition: .3s;
}

.h-social a:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateY(-2px);
}

.h-social a:first-child:hover {
  color: var(--wa-green);
}

.h-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.h-reserve-btn {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: .4s;
}

.h-reserve-btn:hover {
  background: var(--gold-dark);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

@media (max-width: 1100px) {
  .h-item span {
    display: none;
  }

  .h-item {
    font-size: 1rem;
  }

  .h-item svg {
    width: 18px;
    height: 18px;
  }

  .h-title {
    font-size: 1.1rem;
  }

  .h-subtitle {
    font-size: .4rem;
  }
}

@media (max-width: 768px) {
  .header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .header-left,
  .header-right {
    flex: 0 1 auto;
    min-width: 0;
  }

  .header-left span {
    display: none;
  }

  .header-left {
    display: flex;
    gap: 15px;
  }

  .h-branding {
    padding: 0;
    gap: 8px;
    border: none;
    background: transparent;
  }

  .h-text-group {
    display: block;
    padding-left: 10px;
    border-left: 1px solid var(--gold);
    text-align: left;
  }

  .h-title {
    font-size: .85rem;
    letter-spacing: 1px;
  }

  .h-subtitle {
    font-size: .35rem;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }

  .h-social {
    display: flex;
    gap: 12px;
  }

  .h-reserve-btn {
    display: none;
  }

  .h-logo-img {
    height: 35px;
  }

  .navbar {
    padding: 12px 0;
  }
}

/* Hide both sides if screen is very small (e.g. < 400px) */
@media (max-width: 400px) {

  .header-left,
  .header-right {
    display: none !important;
  }

  .header-grid {
    display: flex !important;
    justify-content: center !important;
  }
}

/* === HERO === */
.hero {
  position: relative;
  height: 500vh;
  background: var(--bg-deep);
}

.hero-box-container {
  height: 100%;
}

.hero-pin {
  position: sticky;
  top: var(--nav-h);
  width: 100%;
  height: calc(100vh - var(--nav-h) - 40px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

#heroCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--black-rgb, 0, 0, 0), 0.85) 0%, rgba(var(--black-rgb, 0, 0, 0), 0.6) 40%, rgba(var(--black-rgb, 0, 0, 0), 0.2) 100%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  pointer-events: all;
  opacity: 0;
  transform: translateY(40px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  margin-bottom: 28px;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.15;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btns .btn.green {
  border: none;
}

.hero-btns .btn.outline {
  border-color: rgba(255, 255, 255, .3);
  color: var(--white);
}

.hero-btns .btn.outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  border-top: none;
  opacity: 0;
  transform: translateY(20px);
}

.stats-row {
  display: flex;
  gap: 60px;
}

.stat-item h3 {
  font-family: var(--font-h);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 2px;
}

.stat-item span {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.scroll-discover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.mouse-wrap {
  display: flex;
  justify-content: center;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 2px;
  height: 6px;
  background: var(--gold);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: mouseScroll 1.6s infinite;
}

@keyframes mouseScroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

/* === BOOKING BAR === */
.booking-bar-container {
  position: relative;
  z-index: 100;
  margin-top: 10px;
}

.booking-bar {
  background: var(--white);
  display: flex;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
  border: 1px solid var(--border-on-light);
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}

.booking-form {
  display: flex;
  width: 100%;
}

.b-input,
.b-select {
  flex: 1;
  position: relative;
  border-right: 1px solid var(--border-on-light);
  background: transparent;
  transition: .3s;
}

.b-input:hover,
.b-select:hover {
  background: rgba(0, 0, 0, 0.02);
}

.b-input label,
.b-select label {
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--txt-on-light);
  opacity: 0.5;
  pointer-events: none;
  font-weight: 600;
}

.b-input input,
.b-select select {
  width: 100%;
  height: 90px;
  padding: 40px 24px 10px;
  background: transparent;
  border: none;
  color: var(--txt-on-light);
  font-family: var(--font-b);
  font-size: .95rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  font-weight: 500;
}

.b-input input::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.4;
  cursor: pointer;
}

.b-select::after {
  content: '▼';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .6rem;
  color: var(--gold);
  pointer-events: none;
}

.b-btn {
  flex: 0 0 220px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-b);
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
}

.b-btn:hover {
  background: var(--gold-dark);
}

/* === AMENITY MARQUEE === */
.amenity-marquee-wrap {
  margin-top: 40px;
  overflow: hidden;
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  gap: 80px;
  padding-left: 80px;
}

.m-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--txt-on-light);
  font-size: .75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.m-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: transform 0.4s var(--ease);
}

.m-item:hover {
  color: var(--gold-dark);
}

.m-item:hover svg {
  transform: scale(1.2) rotate(5deg);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* === SECTION SPACING === */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

/* === ABOUT SECTION === */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about-dark-strip {
  position: absolute;
  top: 33%;
  bottom: 13%;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  z-index: 0;
  overflow: hidden;
}

.about-dark-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Images/SVG/bg.svg') center/350px repeat;
  opacity: 0.1;
  filter: invert(1);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-col {
  position: relative;
  padding-top: 40px;
}

.about-img-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-bg-shape {
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 82%;
  background: var(--bg-light);
  border-radius: 200px 200px 0 0;
  border: 1px solid var(--border-on-light);
  overflow: hidden;
}

.about-cutout-img {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4));
  transition: var(--ease);
  cursor: pointer;
}

.about-img-col:hover .about-cutout-img {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .6));
}

.about-overlay-box {
  position: absolute;
  bottom: -10px;
  right: -20px;
  background: var(--bg-dark);
  color: var(--white);
  padding: 30px 35px;
  max-width: 280px;
  border-left: 2px solid var(--gold);
  z-index: 3;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
}

.about-overlay-box .overlay-label {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-overlay-box h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 400;
  color: inherit;
  line-height: 1.3;
}

.about-right {
  padding-top: 20px;
  color: var(--white);
}

.about-right .sec-label {
  justify-content: flex-start;
  color: var(--gold);
}

.about-right h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 30px;
  color: var(--white);
}

.about-right h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-right p {
  color: rgba(255, 255, 255, 0.8);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .about-features {
  border-top-color: var(--border-on-dark);
}

.about-feature .feat-num {
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.about-feature h4 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--white);
}

.about-feature p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* === LOCATION SECTION === */
.location-section {
  position: relative;
}

.location-full-map {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.location-full-map::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  z-index: 5;
  pointer-events: none;
}

.location-full-map .map-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.location-full-map .map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2) brightness(0.8);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.05);
  /* Start slightly zoomed for smoother transition */
  will-change: transform;
}

.map-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 14, 13, 0.9) 0%, rgba(15, 14, 13, 0.4) 50%, rgba(15, 14, 13, 0.1) 100%);
  pointer-events: none;
}

.relative-pos {
  position: relative;
  height: 100%;
  pointer-events: none;
}

.location-floating-card {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  width: 360px;
  background: rgba(26, 24, 22, 0.95);
  backdrop-filter: blur(15px);
  padding: 50px 40px;
  border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: all;
  text-align: center;
}

.card-branding {
  margin-bottom: 30px;
}

.card-logo {
  height: 70px;
  width: auto;
  margin: 0 auto;
}

.card-content h3 {
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
}

.card-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.3;
}

.btn-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: #1a1816;
  padding: 20px;
  border-radius: 8px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--ease);
}

.btn-directions:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Transit Connectivity Design */
.transit-section {
  padding: 120px 0;
}

.transit-header,
.location-hubs-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.transit-header h2,
.location-hubs-header h2 {
  margin-top: 10px;
}

.transit-header p,
.location-hubs-header p {
  opacity: 0.7;
}

.transit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.transit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(197, 160, 89, 0.1);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.transit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--ease);
  transform-origin: right;
}

.transit-card:hover {
  background: rgba(197, 160, 89, 0.05);
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-5px);
}

.transit-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.tc-icon {
  margin-bottom: 25px;
  color: var(--gold);
}

.tc-icon svg {
  width: 32px;
  height: 32px;
  transition: var(--ease);
}

.transit-card:hover .tc-icon svg {
  transform: scale(1.1);
}

.tc-content h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--white);
}

.tc-content span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .transit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .transit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .transit-card {
    padding: 25px 15px;
  }
}

@media (max-width: 1024px) {
  .location-floating-card {
    left: 20px;
    width: 320px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .location-full-map {
    height: 500px;
  }

  .location-floating-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 90%;
    max-width: 320px;
    margin: 20px auto 0;
    padding: 30px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    border-radius: 12px;
  }

  .card-branding {
    margin-bottom: 20px;
  }

  .card-logo {
    height: 50px;
  }

  .card-content h3 {
    font-size: 1.6rem;
  }

  .btn-directions {
    padding: 15px;
    font-size: 0.75rem;
  }
}


/* === ROOMS SECTION === */
.rooms-section {
  padding: 120px 0 80px;
}

.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.rooms-header-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0;
}

.rooms-header-left h2 em {
  font-style: italic;
  color: var(--gold);
}

.rooms-header-right {
  max-width: 400px;
}

.rooms-header-right p {
  font-size: .95rem;
}

.best-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.2);
  margin: 30px 0 40px;
}

.best-price-bar .bp-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.best-price-bar .bp-left svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
}

.best-price-bar .bp-left strong {
  color: inherit;
  font-size: .9rem;
}

.best-price-bar .bp-left span {
  color: inherit;
  opacity: 0.7;
  font-size: .9rem;
}


/* --- Room Card Marquee --- */
.rooms-marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 80px;
  /* Space for dots */
  position: relative;
}

.rooms-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s var(--ease);
  color: var(--gold);
  /* Gold for theme match */
}

.rooms-nav-btn:hover {
  background: var(--bg-dark);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.rooms-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.rooms-nav-btn.prev {
  left: 30px;
}

.rooms-nav-btn.next {
  right: 30px;
}

.rooms-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 154, 110, 0.3);
  /* Muted gold */
  cursor: pointer;
  transition: 0.4s var(--ease);
  border: 1px solid transparent;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(184, 154, 110, 0.5);
}

.rooms-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  width: max-content;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

/* Auto-scroll will be handled by JS to allow manual override */

.rooms-marquee-track:hover {
  animation-play-state: paused;
}

.room-card {
  width: 380px;
  flex-shrink: 0;
  background: #1a1816;
  /* Deep dark background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.room-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Images/SVG/bg.svg') center/180px repeat;
  opacity: 0.1;
  filter: invert(1);
  pointer-events: none;
  z-index: 0;
}

.room-card:hover {
  transform: translateY(-20px) scale(1.02);
  /* More pronounced "pop up" effect */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.room-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.room-card:hover .room-card-img img {
  transform: scale(1.05);
}

.room-gallery-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-dark);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s var(--ease);
  z-index: 10;
}

.room-card:hover .room-gallery-trigger {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.room-gallery-trigger:hover {
  background: var(--gold);
  color: #fff;
}

.room-card-num {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--font-b);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--bg-dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  z-index: 5;
}

.room-card-units {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-family: var(--font-b);
  font-size: 0.65rem;
  letter-spacing: 1px;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
}

.room-card-body {
  padding: 24px 5px 0;
}

.room-card-body h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--gold);
  /* Gold for titles in dark mode */
}

.room-card-body p {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.room-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.room-spec svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.section-light .room-card-footer {
  border-top-color: var(--border-on-light);
}

.room-reserve {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.room-reserve svg {
  width: 12px;
  height: 12px;
}

.room-reserve:hover {
  color: var(--gold);
}

/* --- Room Gallery Modal --- */
.room-gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
}

.room-gallery-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 11, 10, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: relative;
  width: 90%;
  max-width: 1100px;
  max-height: 85vh;
  background: #fff;
  border-radius: 4px;
  padding: 50px;
  overflow-y: auto;
  z-index: 1;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease);
}

.room-gallery-modal.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--bg-dark);
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-header {
  margin-bottom: 30px;
  text-align: center;
}

.modal-header h2 {
  font-family: var(--font-h);
  font-size: 2rem;
  color: var(--bg-dark);
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.modal-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s var(--ease);
}

.modal-grid img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .room-card {
    width: 320px;
  }

  .modal-container {
    padding: 30px 20px;
  }
}


/* === AMENITIES SECTION === */
.amenities-section {
  padding: 100px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.amenity-card {
  padding: 40px 35px;
  border: 1px solid var(--border-on-dark);
  background: rgba(255, 255, 255, .02);
  border-radius: 4px;
  transition: 0.3s ease;
}

.section-light .amenity-card {
  border-color: var(--border-on-light);
  background: rgba(0, 0, 0, 0.02);
}

.amenity-card:hover {
  background: rgba(255, 255, 255, .04);
  border-color: var(--gold);
}

.section-light .amenity-card:hover {
  background: rgba(0, 0, 0, 0.04);
}

.amenity-card svg {
  width: 38px;
  height: 38px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
  margin-bottom: 20px;
}

.amenity-card h4 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.amenity-card p {
  font-size: .9rem;
  line-height: 1.7;
}

/* === DINING & BANQUET === */
.dining-section {
  padding: 100px 0;
}

.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.dining-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.dining-block:first-child {
  padding-right: 60px;
}

.dining-block:last-child {
  padding-left: 60px;
}

.dining-block img {
  width: 280px;
  height: 320px;
  object-fit: cover;
}

.dining-block .dining-label {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dining-block .dining-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.dining-block h3 {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: inherit;
}

.dining-block p {
  font-size: .88rem;
  color: inherit;
  opacity: 0.8;
  line-height: 1.8;
}

/* === GALLERY === */
.gallery-section {
  padding: 100px 0;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
}

.gallery-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.gallery-header p {
  max-width: 380px;
  text-align: right;
  color: inherit;
  opacity: 0.8;
}

/* --- Gallery Tabs --- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.g-tab {
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-b);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
  transition: 0.3s var(--ease);
}

.g-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.4s var(--ease);
  transform: translateX(-50%);
}

.g-tab.active {
  color: var(--gold);
}

.g-tab.active::after {
  width: 100%;
}

.g-tab:hover {
  color: #fff;
}

/* --- Tab Content Visibility --- */
.gallery-content {
  display: none;
  animation: galleryFade 0.6s var(--ease) forwards;
}

.gallery-content.active {
  display: block;
}

@keyframes galleryFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- ALL: Scrolling Marquee Effect --- */
.gallery-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.gallery-marquee-row {
  display: flex;
  gap: 20px;
  width: max-content;
}

.gallery-marquee-row img {
  height: 320px;
  width: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.gallery-marquee-row img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  z-index: 2;
}

.r-ltr {
  animation: gMarqueeLTR 80s linear infinite;
}

.r-rtl {
  animation: gMarqueeRTL 80s linear infinite;
}

.r-ltr:hover,
.r-rtl:hover {
  animation-play-state: paused;
}

@keyframes gMarqueeLTR {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes gMarqueeRTL {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* --- Grids for categories --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.gallery-grid img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* === TESTIMONIALS (Card-Based) === */
.testimonials {
  padding: 120px 0;
  overflow: hidden;
}

.reviews-marquee-container {
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.reviews-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: reviewsScroll 40s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  width: 400px;
  background: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  border-bottom: 3px solid transparent;
  transition: 0.4s var(--ease);
}

.review-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--gold);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.review-card p {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ra-info h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--bg-dark);
  margin-bottom: 2px;
}

.ra-info span {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ra-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .review-card {
    width: 320px;
    padding: 30px;
  }
}


/* === CONTACT SECTION === */
.contact-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.contact-header {
  max-width: 800px;
  margin: 0 auto 80px;
}

.contact-header h2 {
  margin-top: 15px;
  margin-bottom: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}


.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cg-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cg-header svg {
  width: 18px;
  height: 18px;
}

.cg-header span {
  font-family: var(--font-b);
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--txt-main);
}

.contact-group p {
  font-size: 1.1rem;
  color: var(--txt-main);
  line-height: 1.6;
}

.contact-group a {
  color: inherit;
  transition: 0.3s;
}

.contact-group a:hover {
  color: var(--gold);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px;
  border-radius: 4px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--ease);
}

.btn-wa {
  background: var(--gold);
  color: #1a1816;
}

.btn-wa:hover {
  background: #b5904d;
  transform: translateY(-3px);
}

.btn-call {
  background: #1a1816;
  color: var(--white);
}

.btn-call:hover {
  background: #333;
  transform: translateY(-3px);
}


/* Inquiry Form */
.contact-form-container {
  background: #faf9f7;
  padding: 30px;
  border-radius: 8px;
}

.form-row.triple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.booking-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: var(--font-b);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-inquiry-form input[type="text"],
.booking-inquiry-form input[type="date"],
.booking-inquiry-form select {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 18px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--txt-main);
  transition: 0.3s;
}

.booking-inquiry-form input:focus,
.booking-inquiry-form select:focus {
  border-color: var(--gold);
  outline: none;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 5px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.radio-label input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.radio-label span {
  font-family: var(--font-b);
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--txt-main);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border-radius: 4px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--ease);
}

.btn-wa-send {
  background: var(--gold);
  color: #1a1816;
}

.btn-email-send {
  background: #1a1816;
  color: var(--white);
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 80px 0 140px;
    /* More bottom room for nav */
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .contact-sidebar {
    align-items: center;
    text-align: center;
  }

  .contact-group {
    align-items: center;
  }

  .contact-actions {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
  }

  .form-row.split,
  .form-row.triple {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-container {
    padding: 40px 25px;
  }

  .radio-group {
    gap: 15px 20px;
    justify-content: center;
  }

  .form-actions {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* === PARTNERS SLIDER === */
.partners-section {
  padding: 120px 0 0;
  background: var(--bg-dark);
}

.partners-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.partners-header h2 {
  margin-top: 15px;
  margin-bottom: 20px;
}

.partners-header p {
  opacity: 0.7;
}


/* === FOOTER REDESIGN === */
.footer {
  background: var(--bg-deep);
  /* Deeper black for premium feel */
  padding: 60px 0 0;
  color: var(--white);
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Subtle architectural gradient */
.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 80px;
  margin-bottom: 80px;
}

.brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.15));
}

.f-bio {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.f-social-links {
  display: flex;
  gap: 15px;
}

.f-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--ease);
}

.f-social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translateY(-5px);
}

.f-social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.f-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 35px;
  color: var(--white);
  letter-spacing: 1.5px;
  position: relative;
}

.f-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.f-links {
  list-style: none;
  padding: 0;
}

.f-links li {
  margin-bottom: 15px;
}

.f-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--ease);
  display: inline-block;
}

.f-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.contact-col {
  display: flex;
  flex-direction: column;
}

.f-contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.f-contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  text-align: left;
}

.f-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.f-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.f-contact-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.f-contact-item a:hover {
  color: var(--gold);
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.fb-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.fb-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

.fb-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.fb-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  transition: var(--ease);
}

.fb-links a:hover {
  color: var(--gold);
}

.designer-link span {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .footer {
    text-align: center;
    padding-bottom: 100px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    width: 100%;
    margin-bottom: 40px;
  }

  .f-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .f-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    width: 100%;
  }

  .f-links li {
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
  }

  .f-social-links,
  .f-contact-items {
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
  }

  .f-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
  }

  .f-contact-item p {
    text-align: center;
  }

  .f-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
  }

  .brand-col {
    order: 1;
    flex: 0 0 100%;
  }

  .f-col:nth-child(2) {
    order: 2;
    flex: 0 0 50%;
  }

  .f-col:nth-child(3) {
    order: 3;
    flex: 0 0 50%;
  }

  .contact-col {
    order: 4;
    flex: 0 0 100%;
  }

  .brand-col .f-bio {
    max-width: 280px;
    margin: 0 auto 30px;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  .fb-content {
    flex-direction: column;
    text-align: center;
  }

  .fb-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}


/* Partner Marquee Specifics */
.partner-marquee {
  background: var(--bg-light);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  padding: 40px 0;
  margin-top: 60px;
}

.partner-marquee .m-item {
  color: var(--txt-on-light) !important;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.8;
}

.partner-marquee .m-item img {
  margin-right: 12px;
  height: 32px;
  width: auto;
  filter: none;
}

/* Consolidation handled above */

/* === BOTTOM NAV REDESIGN === */
.bottom-nav {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 500px;
  height: 75px;
  z-index: 20005;
}

.bottom-nav-bg {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.85);
  backdrop-filter: blur(25px) saturate(2);
  border-radius: 40px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.bn-links {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 8px;
  align-items: center;
}

.bn-indicator {
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc((100% - 16px) / 7);
  height: 59px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.02));
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 30px;
  z-index: 1;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  color: rgba(235, 227, 213, 0.4);
  cursor: pointer;
  height: 100%;
  position: relative;
  transition: color 0.3s ease;
}

.bn-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bn-item span {
  position: absolute;
  bottom: 12px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.bn-item.active {
  color: var(--gold);
}

.bn-item.active svg {
  transform: translateY(-10px);
}

.bn-item.active span {
  opacity: 1;
  transform: translateY(0);
}

/* Special Book Button in Nav */
.bn-book-btn {
  color: var(--gold) !important;
}

.bn-book-btn .close-icon {
  display: none;
  fill: none !important;
}

.bn-book-btn svg {
  fill: var(--gold);
}

.bn-book-btn.modal-active .wa-icon {
  display: none;
}

.bn-book-btn.modal-active .close-icon {
  display: block;
  stroke: var(--gold);
}

/* === WHATSAPP BOOKING MODAL (CENTERED FLOATING) === */
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  /* Add delay for visibility on close so opacity finishes first */
  transition-delay: 0s, 0.4s;
}

.wa-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s, 0s;
}

.wa-modal-content {
  position: relative;
  width: calc(100% - 40px);
  max-width: 480px;
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-modal.active .wa-modal-content {
  transform: scale(1) translateY(0);
}

.wa-modal-header {
  background: var(--bg-card);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wa-avatar-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
  padding: 2px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.wa-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.wa-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--wa-green);
  border: 2px solid var(--bg-card);
  border-radius: 50%;
}

.wa-header-info h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-family: var(--font-b);
  margin-bottom: 4px;
  font-weight: 600;
}

.wa-status-text {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
}

.wa-modal-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
}

.wa-modal-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

.wa-chat-body {
  padding: 10px 25px 25px;
}

.wa-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.wa-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wa-input-group.small {
  flex: 0 0 70px;
}

.wa-input-group.full {
  flex: 1 1 100%;
}

.wa-input-group label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.wa-input-group input,
.wa-input-group select,
.wa-input-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.wa-input-group input:focus,
.wa-input-group select:focus,
.wa-input-group textarea:focus {
  border-color: var(--gold);
}

.wa-input-group textarea {
  height: 80px;
  resize: none;
}

.wa-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 14px;
  padding: 18px;
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.3);
  filter: brightness(1.1);
}

/* Date Picker Customization */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
}

/* === RESPONSIVE === */
@media(max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .rooms-header,
  .dining-grid {
    grid-template-columns: 1fr;
  }

  .about-cutout-img {
    width: 100%;
  }

  .rooms-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 15px;
  }

  .rooms-header-left .sec-label {
    justify-content: center;
  }

  .rooms-header-right {
    max-width: 100%;
    text-align: center;
  }

  .dining-block:first-child {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .dining-block:last-child {
    padding-left: 0;
  }

  .hero-stats {
    padding: 20px 24px;
  }

  .stats-row {
    gap: 30px;
  }

  .gallery-header {
    flex-direction: column;
    gap: 16px;
  }

  .gallery-header p {
    text-align: left;
  }

  .booking-bar-container {
    margin-top: 20px;
  }

  .booking-bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    z-index: 10;
  }

  .booking-form {
    flex-wrap: wrap;
  }

  .b-input,
  .b-select {
    flex: 1 1 33.333%;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  .b-btn {
    flex: 1 1 100%;
    height: 70px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
  }
  
  .about-img-wrapper {
    height: 380px;
  }

  .about-dark-strip {
    top: 150px;
    bottom: 0;
  }

  .about-right {
    display: contents;
  }

  .about-right .sec-label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .about-right h2 {
    grid-column: 2;
    grid-row: 2;
  }

  .about-right p {
    grid-column: 2;
    grid-row: 3;
  }

  .about-img-col {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .about-features {
    grid-column: 1 / -1;
    grid-row: 4;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 20px;
  }
}

@media(max-width: 768px) {
  .hero {
    height: 250vh;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-content {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .hero-stats {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .about {
    padding: 80px 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-img-wrapper {
    height: 320px;
  }

  .about-dark-strip {
    top: 300px;
    bottom: 0;
  }

  .about-overlay-box {
    position: relative;
    bottom: auto;
    right: auto;
    margin: -20px auto 0;
    max-width: 100%;
  }

  .about-right {
    text-align: center;
  }

  .about-right .sec-label {
    justify-content: center;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

  .gallery-marquee-row img {
    height: 200px;
  }

  .room-card {
    width: 300px;
  }

  .rooms-nav-btn {
    display: none;
  }

  .best-price-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 15px 20px;
  }

  .rooms-section {
    padding: 80px 0 60px;
  }

  .dining-block {
    grid-template-columns: 1fr;
  }

  .dining-block img {
    width: 100%;
    height: 250px;
  }

  .b-input,
  .b-select {
    flex: 1 1 50%;
  }
}

@media(max-width: 480px) {
  .about {
    padding: 60px 0;
  }

  .about-img-wrapper {
    height: 260px;
  }

  .about-dark-strip {
    top: 250px;
    bottom: 0;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-marquee-row img {
    height: 160px;
  }

  .room-card {
    width: 280px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-btns {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero-btns .btn {
    flex: 1;
    padding: 12px 5px;
    font-size: 0.7rem;
    text-align: center;
    border-width: 1px !important;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .hero-pin {
    height: calc(100vh - var(--nav-h-mobile) - 30px);
    top: var(--nav-h-mobile);
  }

  .hero-content {
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .transit-section {
    padding: 80px 0;
  }

  .contact-section {
    padding: 60px 0 120px;
  }

  .b-input,
  .b-select {
    flex: 1 1 100%;
    border-right: none;
  }
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .4s var(--ease);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 85vh;
  transform: scale(0.9);
  transition: .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -50px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: .3s;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: -60px;
    right: 0;
  }
}