:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --dark: #0D0D0D;
    --dark2: #161616;
    --dark3: #1E1B17;
    --cream: #F5F0E8;
    --cream2: #EDE6D6;
    --text-light: #B8B0A0;
    --white: #FFFFFF;
  }
  body.light-mode {
  --dark: #ffffff;
  --dark2: #f8f8f8;
  --dark3: #eeeeee;
  --cream: #111111;
  --cream2: #222222;
  --text-light: #444444;
  --white: #000000;
}
body.light-mode,
body.light-mode #amenities,
body.light-mode #rooms,
body.light-mode #gallery,
body.light-mode #about,
body.light-mode #testimonials {
  background: #ffffff;
}

body.light-mode .topbar,
body.light-mode nav.scrolled,
body.light-mode footer {
  background: #f7f7f7;
}

body.light-mode nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.light-mode .booking-bar,
body.light-mode .review-card,
body.light-mode .booking-popup-content {
  background: #ffffff;
  border-color: rgba(0,0,0,0.12);
}

body.light-mode .feature-item,
body.light-mode .features-strip {
  background: #f3f3f3;
}
.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(0,0,0,0.25);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--gold);
  color: var(--dark);
}

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── TOP BAR ── */
.topbar {
  background: #080808;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.topbar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* LIGHT MODE FIX */
body.light-mode .topbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

body.light-mode .topbar * {
  color: #000000 !important;
  opacity: 1 !important;
}

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 60px;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
    transition: all 0.4s ease;
    background: transparent;
  }
  nav.scrolled {
    background: rgba(10,8,6,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    height: 68px;
  }
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--gold);
    text-decoration: none;
  }
  .logo span { font-style: italic; color: var(--cream); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--cream); text-decoration: none; font-weight: 400;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-book {
    background: var(--gold); color: var(--dark);
    padding: 12px 28px; font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; font-weight: 600;
    transition: all 0.3s; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .nav-book:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ── */
  #hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-slides { position: absolute; inset: 0; }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
  }
  .hero-content {
    position: relative; z-index: 2; text-align: center;
    animation: heroFadeIn 1.5s ease forwards;
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px; font-weight: 400;
  }
  .hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 300; line-height: 1;
    color: var(--white); letter-spacing: 4px; margin-bottom: 10px;
  }
  .hero-content h1 em { font-style: italic; color: var(--gold); }
  .hero-content p {
    font-size: 14px; letter-spacing: 2px; color: rgba(255,255,255,0.75);
    margin: 24px auto; max-width: 480px; line-height: 1.8;
  }
  .hero-btns { display: flex; gap: 16px; justify-content: center; margin-top: 40px; }
  .btn-primary {
    background: var(--gold); color: var(--dark);
    padding: 16px 40px; font-size: 11px; letter-spacing: 2.5px;
    text-transform: uppercase; text-decoration: none; font-weight: 600;
    transition: all 0.3s; clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.4); color: var(--white);
    padding: 16px 40px; font-size: 11px; letter-spacing: 2.5px;
    text-transform: uppercase; text-decoration: none; font-weight: 400;
    transition: all 0.3s; clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center;
    gap: 8px; color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; cursor: pointer;
  }
  .scroll-line {
    width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
  }
  @keyframes scrollPulse { 0%,100%{ opacity:0.4; transform:scaleY(1); } 50%{ opacity:1; transform:scaleY(0.6); } }

  /* ── BOOKING BAR ── */
  .booking-bar {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.2);
    margin: 0 60px;
    transform: translateY(-40px);
    padding: 30px 50px;
    display: flex; gap: 20px; align-items: flex-end;
    position: relative; z-index: 10;
  }
  .booking-bar .field { flex: 1; }
  .booking-bar label {
    display: block; font-size: 9px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  }
  .booking-bar input, .booking-bar select {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--cream); padding: 10px 0; font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 300; outline: none; transition: border-color 0.3s;
  }
  .booking-bar input::placeholder { color: rgba(255,255,255,0.3); }
  .booking-bar input:focus, .booking-bar select:focus { border-color: var(--gold); }
  .booking-bar select option { background: var(--dark2); }
  .btn-check {
    background: var(--gold); color: var(--dark);
    padding: 14px 36px; font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 600; border: none; cursor: pointer;
    white-space: nowrap; transition: all 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .btn-check:hover { background: var(--gold-light); }

  /* ── SECTION LABELS ── */
  .section-label {
    font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px; display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px); font-weight: 300; line-height: 1.1;
    color: var(--cream);
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .divider {
    width: 60px; height: 1px; background: var(--gold); margin: 24px 0;
  }

  /* ── FEATURES STRIP ── */
  .features-strip {
    display: flex; background: var(--dark3);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .feature-item {
    flex: 1; padding: 32px 24px; text-align: center;
    border-right: 1px solid rgba(201,168,76,0.1);
    transition: background 0.3s;
  }
  .feature-item:last-child { border-right: none; }
  .feature-item:hover { background: rgba(201,168,76,0.05); }
  .feature-icon { font-size: 26px; margin-bottom: 12px; }
  .feature-item h4 {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--cream); font-weight: 400;
  }

  /* ── ABOUT ── */
  #about { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-images { position: relative; height: 580px; }
  .about-img-main {
    position: absolute; top: 0; left: 0; width: 78%; height: 85%;
    object-fit: cover; filter: brightness(0.9);
  }
  .about-img-secondary {
    position: absolute; bottom: 0; right: 0; width: 52%; height: 52%;
    object-fit: cover; border: 4px solid var(--dark);
    filter: brightness(0.85);
  }
  .about-badge {
    position: absolute; top: 50%; left: 68%; transform: translate(-50%,-50%);
    background: var(--gold); color: var(--dark);
    width: 100px; height: 100px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; z-index: 3;
    box-shadow: 0 0 0 8px var(--dark);
  }
  .about-badge .num { font-size: 36px; font-weight: 300; line-height: 1; }
  .about-badge .txt { font-size: 9px; letter-spacing: 2px; font-family: 'Montserrat', sans-serif; }
  .about-text p { font-size: 14px; line-height: 1.9; color: var(--text-light); margin-bottom: 20px; }
  .stats-row { display: flex; gap: 40px; margin-top: 40px; }
  .stat-item { text-align: center; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--gold); }
  .stat-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }

  /* ── ROOMS ── */
  #rooms { padding: 100px 60px; }
  .rooms-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .room-card { position: relative; overflow: hidden; cursor: pointer; }
  .room-card:first-child { grid-column: span 2; height: 460px; }
  .room-card:not(:first-child) { height: 340px; }
  .room-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(1.05); transition: transform 0.7s ease; }
  .room-card:nth-child(3) img {object-position: center 75%;}
  .room-card:nth-child(4) img {object-position: center 75%;}
  .room-card:hover img { transform: scale(1.06); }
  .room-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
    transition: opacity 0.4s;
  }
  .room-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px; transform: translateY(0); transition: transform 0.4s;
  }
  .room-type { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .room-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: var(--white); }
  .room-price { font-size: 13px; color: var(--text-light); margin-top: 6px; }
  .room-price strong { color: var(--gold); font-weight: 400; font-size: 18px; }
  .room-details {
    display: flex; gap: 20px; margin-top: 12px;
    opacity: 0; transform: translateY(10px); transition: all 0.4s 0.1s;
  }
  .room-card:hover .room-details { opacity: 1; transform: translateY(0); }
  .room-detail { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.7); }
  .room-book-btn {
    display: inline-block; margin-top: 14px;
    background: var(--gold); color: var(--dark);
    padding: 10px 24px; font-size: 9px; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; font-weight: 600;
    opacity: 0; transform: translateY(10px); transition: all 0.4s 0.15s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }
  .room-card:hover .room-book-btn { opacity: 1; transform: translateY(0); }

  /* ── GALLERY ── */
  #gallery { padding: 100px 60px; }
  .gallery-tabs { display: flex; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
  .g-tab {
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--text-light); background: none; border: none; cursor: pointer;
    padding: 8px 0; border-bottom: 1px solid transparent; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
  }
  .g-tab.active, .g-tab:hover { color: var(--gold); border-color: var(--gold); }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
  .gallery-grid .g-item { overflow: hidden; aspect-ratio: 1; }
  .gallery-grid .g-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .gallery-grid .g-item:hover img { transform: scale(1.08); }

  /* ── LUXURY CTA BAND ── */
  .luxury-band {
    position: relative; height: 380px; overflow: hidden; margin-top: 80px;
    display: flex; align-items: center; justify-content: center; text-align: center;
  }
  .luxury-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .luxury-band::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
  }
  .luxury-band-content { position: relative; z-index: 2; }
  .luxury-band h2 { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--white); margin-bottom: 16px; }
  .luxury-band p { font-size: 13px; letter-spacing: 2px; color: rgba(255,255,255,0.7); margin-bottom: 30px; }

  /* ── AMENITIES ── */
  #amenities { padding: 100px 60px; }
  .amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
  .amenity-card { position: relative; overflow: hidden; height: 280px; }
  .amenity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
  .amenity-card:hover img { transform: scale(1.1); }
  .amenity-card::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.55),rgba(0,0,0,0.1)); }
  .amenity-label {
    position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--white);
    font-weight: 300;
  }
  .amenity-label::before { content:''; display:block; width:30px; height:1px; background:var(--gold); margin-bottom:10px; }

  /* ── TESTIMONIALS ── */
  #testimonials { padding: 100px 60px; background: var(--dark2); }
  .testimonials-header { text-align: center; margin-bottom: 70px; }
  .testimonials-header .divider { margin: 24px auto; }
  .reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .review-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 40px; position: relative;
    transition: border-color 0.3s;
  }
  .review-card:hover { border-color: rgba(201,168,76,0.3); }
  .quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 80px; color: var(--gold); opacity: 0.2; line-height: 0.6; margin-bottom: 20px; }
  .review-text { font-size: 14px; line-height: 1.85; color: var(--text-light); margin-bottom: 28px; }
  .reviewer { display: flex; align-items: center; gap: 14px; }
  .reviewer-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--dark); font-weight: 600; }
  .reviewer-name { font-size: 13px; font-weight: 500; color: var(--cream); letter-spacing: 1px; }
  .reviewer-tag { font-size: 10px; color: var(--gold); letter-spacing: 2px; margin-top: 3px; }
  .stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 8px; }

  /* ── CONTACT/FOOTER ── */
  footer { background: #080808; padding: 45px 60px 20px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-brand .logo { font-size: 32px; display: block; margin-bottom: 20px; }
  .footer-brand p { font-size: 13px; line-height: 1.8; color: var(--text-light); max-width: 320px; }
  .footer-social { display: flex; gap: 12px; margin-top: 28px; }
  .social-btn {
    width: 24px; height: 24px; border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); text-decoration: none; font-size: 13px;
    transition: all 0.3s;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col h5 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul a { font-size: 13px; color: var(--text-light); text-decoration: none; transition: color 0.3s; }
  .footer-col ul a:hover { color: var(--gold); }
  .contact-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; color: var(--text-light); font-size: 13px; line-height: 1.6; }
  .contact-line span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
  .footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav, .topbar, #about, #rooms, #gallery, #amenities, #testimonials, footer { padding-left: 24px; padding-right: 24px; }
    .booking-bar { margin: 0 24px; flex-direction: column; }
    #about { grid-template-columns: 1fr; }
    .about-images { height: 300px; margin-bottom: 40px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .room-card:first-child { grid-column: span 1; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-grid .g-item:nth-child(5) { grid-column: span 2; }
    .amenities-grid { grid-template-columns: repeat(2,1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .nav-links, .nav-book { display: none; }
    .features-strip { flex-wrap: wrap; }
    .feature-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  }

 .whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.whatsapp-float i {
  line-height: 1;
}

.booking-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.booking-popup.show {
  display: flex;
}

.booking-popup-content {
  background: var(--dark2);
  color: var(--cream);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.booking-popup-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}

.booking-popup-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.booking-popup-content button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 30px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

body.light-mode .booking-bar input {
  border: 1px solid rgba(0,0,0,0.28);
  padding: 14px 12px;
  background: #ffffff;
}

body.light-mode .booking-bar input::placeholder {
  color: #555555;
}

@media (max-width: 768px) {
  nav {
    padding: 18px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-book {
    display: none;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .booking-bar {
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 28px;
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}

.booking-bar input,
.booking-bar select,
.booking-bar button {
  width: 100%;
}

.booking-bar .form-group {
  width: 100%;
}

  .rooms-grid,
  .gallery-grid,
  .amenities-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .room-card {
    height: 420px;
  }

  .section-title {
    font-size: 46px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 30px;
    right: 18px;
    bottom: 18px;
  }
}

.room-card {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* Room image/card directions */
.room-card.slide-left {
  transform: translateX(-90px);
}

.room-card.slide-right {
  transform: translateX(90px);
}

.room-card.show {
  opacity: 1;
  transform: translateX(0);
}

/* Room info starts opposite direction */
.room-info {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1.2s ease 0.25s, transform 1.2s ease 0.25s;
}

.room-card.slide-right .room-info {
  transform: translateX(-70px);
}

.room-card.show .room-info {
  opacity: 1;
  transform: translateX(0);
}

.gallery-grid .g-item {
  opacity: 0;
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.gallery-grid .g-item.gallery-left {
  transform: translateX(-90px);
}

.gallery-grid .g-item.gallery-right {
  transform: translateX(90px);
}

.gallery-grid .g-item.gallery-show {
  opacity: 1;
  transform: translateX(0);
}

.luxury-band-content {
  opacity: 0;
  transform: translateY(70px) scale(0.96);
  transition:
    opacity 1.6s ease,
    transform 1.6s ease;
}

.luxury-band-content.band-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.luxury-band-inner {
  opacity: 0;
  transform: translateY(70px) scale(0.96);
  transition:
    opacity 1.6s ease,
    transform 1.6s ease;
}

.luxury-band-inner.band-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.room-info {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.room-card:nth-child(3) .room-info {
  transform: translateX(-70px);
}

.room-card.show .room-info {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .booking-bar {
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 30px 22px !important;
    box-sizing: border-box !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .booking-bar .field {
    width: 100% !important;
  }

  .booking-bar input,
  .booking-bar select,
  .booking-bar button {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

html,
body {
  overflow-x: hidden;
}

#whatsappFloat.whatsapp-float {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 999999 !important;
  transform: none;
}

body.light-mode .footer-bottom,
body.light-mode .footer-bottom p,
body.light-mode .footer-bottom span {
  color: #333333 !important;
}

body.light-mode .footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.15);
}
body.light-mode .luxury-band-content h2 {
  color: #ffffff;
}
body.light-mode .top-bar,
body.light-mode .top-contact,
body.light-mode .top-contact a,
body.light-mode .top-bar a {
  color: #222222 !important;
}

body.light-mode .topbar {
  background: #f5f5f5 !important;
  opacity: 1 !important;
}

body.light-mode .topbar,
body.light-mode .topbar span,
body.light-mode .topbar a {
  color: #000000 !important;
  opacity: 1 !important;
  filter: none !important;
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 48px;
  }
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.logo img {
  height: 58px;
  width: auto;
}

.footer-logo img {
  height: 110px;
  width: auto;
}
.logo img,
.footer-logo img {
  object-fit: contain;
  display: block;
}

/* NAVBAR LOGO */
nav .logo img {
  height: 70px !important;
  width: auto !important;
  max-height: none !important;
  display: block !important;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 12px;
  padding: 0;
}

.footer-brand .logo img {
  height: 90px !important;
  width: auto;
  display: block;
  margin-left: 0;
}
.footer-brand {
  padding-left: 0 !important;
}
.footer-brand {
  padding-top: 32px;
  padding-bottom: 18px;
}

.footer-brand .logo {
  margin-bottom: -15px;
}

.footer-brand p {
   line-height: 1.7;
  margin-bottom: 8px;
}
.footer-brand {
  transform: translateY(-50px);
}
.footer-social {
  margin-top: 8px !important;
}
.footer-bottom {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 25px;
}