@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* New CSS  */

:root {
  --background: #07070d;
  --foreground: #f0e6cc;
  --card: #100e0a;
  --card-foreground: #f0e6cc;
  --primary: #c9a84c;
  --primary-dark: #8b6e2f;
  --primary-foreground: #07070d;
  --muted: #1c1914;
  --muted-foreground: #7a6a48;
  --border: rgba(201, 168, 76, 0.18);
  --font-display: "Playfair Display", Georgia, serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 300;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

button {
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.4s ease;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(-20px);
  backdrop-filter: blur(12px);
}

.navbar.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 4px;
  font-weight: 700;
  transition: all 0.3s;
}

.nav-logo:hover {
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
}

.nav-links {
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-book-nav {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 28px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.btn-book-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e0c060;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-book-nav:hover::before {
  left: 0;
}

.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== ENTRANCE PAGE ===== */
.entrance {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s ease;
  background: #000;
  opacity: 1;
  z-index: 1000;
}

.entrance.hidden {
  opacity: 0;
  pointer-events: none;
}

.entrance-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://files.manuscdn.com/user_upload_by_module/session_file/310519663785638182/giJAwHhCcrKYYXId.jpg');
  filter: brightness(0.05);
  transition: filter 3.5s ease;
}

.entrance.door-open .entrance-bg {
  filter: brightness(0.65);
}

.entrance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.door-container {
  position: relative;
  z-index: 20;
  perspective: 1600px;
  perspective-origin: 55% 50%;
}

.door-frame {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 18px;
}

.door-hinge {
  position: absolute;
  width: 14px;
  height: 32px;
  border-radius: 4px;
  background: linear-gradient(to right, #c8902c, #f0c060, #c8902c);
  left: 12px;
  z-index: 30;
}

.door-hinge.top {
  top: 80px;
}

.door-hinge.bottom {
  bottom: 112px;
}

.door-panel {
  width: 288px;
  height: 520px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transform-origin: left center;
  transition: transform 3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.entrance.door-open .door-panel {
  transform: rotateY(-80deg);
}

.door-front {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #6b3a1f 0%, #4a2510 35%, #3a1d0c 60%, #2d1508 100%);
  backface-visibility: hidden;
}

.door-upper-panel,
.door-lower-panel {
  position: absolute;
  left: 20px;
  right: 20px;
  border: 1.5px solid rgba(201, 168, 76, 0.22);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.35);
}

.door-upper-panel {
  top: 24px;
  height: 150px;
}

.door-lower-panel {
  top: 194px;
  bottom: 28px;
}

.door-handle-plate {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 72px;
  background: linear-gradient(to right, #b8842a, #f0c060, #c8902c);
  border-radius: 4px;
}

.door-lever {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translateX(-50%);
  width: 34px;
  height: 9px;
  background: linear-gradient(to bottom, #f0c060, #b8842a);
  border-radius: 4px;
}

.door-number {
  position: absolute;
  left: 20px;
  bottom: 60px;
  padding: 4px 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(201, 168, 76, 0.8);
  letter-spacing: 3px;
}

.entrance-branding {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 80px;
  z-index: 30;
  pointer-events: none;
}

.entrance-content {
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.8s ease 1.2s, transform 1.8s ease 1.2s;
}

.entrance.door-open .entrance-content {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.entrance-location {
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fadeInUp 1s ease 1.5s both;
}

.entrance-title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 4px;
}

.entrance-title.italic {
  font-style: italic;
}

.entrance-title.tracking {
  letter-spacing: 0.3em;
}

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

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

/* ===== MAIN SLIDER CONTAINER ===== */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  flex-shrink: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

/* ===== SLIDE: HOME ===== */
.slide-home {
  background: #000;
  height: 100vh;
  overflow: hidden;
}

.slide-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://files.manuscdn.com/user_upload_by_module/session_file/310519663785638182/giJAwHhCcrKYYXId.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 1;
  animation: zoomIn 8s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.slide-home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.slide-home h1 {
  font-size: 80px;
  margin-bottom: 24px;
  font-style: italic;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  animation: slideInDown 0.8s ease-out;
}

.slide-home p {
  font-size: 20px;
  color: rgba(240, 230, 204, 0.85);
  margin-bottom: 48px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.slide-home button {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ===== BUTTON STYLES ===== */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 16px 48px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e0c060;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

/* ===== SLIDE: ROOMS ===== */
.slide-rooms {
  background: var(--background);
  padding: 100px 24px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.slide-rooms-header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
  margin-top: 20px;
}

.slide-rooms-header h2 {
  font-size: 52px;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  display: block;
  width: 100%;
}

.slide-rooms-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--primary);
}

.room-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.room-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 50px;
  align-items: center;
}

.room-image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.room-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.room-image:hover::before {
  opacity: 1;
}

.room-image:hover {
  transform: scale(1.03);
}

.room-info {
  padding: 0 20px;
}

.room-info h3 {
  font-size: 44px;
  margin-bottom: 24px;
  font-weight: 600;
}

.room-info p {
  font-size: 15px;
  color: rgba(240, 230, 204, 0.75);
  margin-bottom: 32px;
  line-height: 1.8;
  font-weight: 300;
}

.room-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(240, 230, 204, 0.7);
  font-weight: 300;
  transition: all 0.3s;
}

.feature-item:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.feature-dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.room-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.room-thumbnail {
  width: 100%;
  height: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.5;
  position: relative;
}

.room-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
  pointer-events: none;
}

.room-thumbnail:hover {
  cursor: pointer;
}

.room-thumbnail:hover::after,
.room-thumbnail.active::after {
  opacity: 1;
}

.room-thumbnail:hover,
.room-thumbnail.active {
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.08);
}

/* ===== SLIDE: PACKAGES ===== */
.slide-packages {
  background: var(--background);
  padding: 100px 24px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.slide-packages-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  margin-top: 20px;
}

.slide-packages-header h2 {
  font-size: 52px;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
  display: block;
  width: 100%;
}

.slide-packages-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--primary);
}

.slide-packages-header p {
  font-size: 15px;
  color: rgba(240, 230, 204, 0.6);
  letter-spacing: 0.3px;
  font-weight: 300;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1300px;
  width: 100%;
  margin: 20px auto 30px;
  padding: 0 10px;
  position: relative;
  z-index: 20;
  isolation: isolate;
}

.package-card {
  background: linear-gradient(135deg, rgba(16, 14, 10, 0.8) 0%, rgba(28, 25, 20, 0.5) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 45px 28px 35px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  z-index: 1;
}


.package-card:hover {
  border-color: var(--primary);
  box-shadow: 0 25px 70px rgba(201, 168, 76, 0.15);
}

.package-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.05) 100%);
  margin-top: 10px;
  z-index: 30;
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.22), 0 20px 60px rgba(201, 168, 76, 0.12);
  cursor: pointer;
  pointer-events: auto;
}

.package-card.featured:hover {
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.32), 0 25px 70px rgba(201, 168, 76, 0.18);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #d4a855);
  color: var(--primary-foreground);
  padding: 8px 20px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
  z-index: 10;
  white-space: nowrap;
  pointer-events: none;
}

.package-card.featured .package-label,
.package-card.featured .package-title,
.package-card.featured .package-price,
.package-card.featured .package-period,
.package-card.featured .package-desc,
.package-card.featured .package-features,
.package-card.featured .package-features * {
  pointer-events: none;
}

.package-label {
  font-size: 11px;
  color: rgba(240, 230, 204, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
}

.package-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--foreground);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.package-price {
  font-size: 38px;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.package-period {
  font-size: 12px;
  color: rgba(240, 230, 204, 0.55);
  margin-bottom: 20px;
  letter-spacing: 0.1px;
  font-weight: 300;
}

.package-desc {
  font-size: 12px;
  color: rgba(240, 230, 204, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
  letter-spacing: 0.1px;
  font-weight: 300;
}

.package-features {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  flex-grow: 1;
}

.package-features li {
  padding: 8px 0;
  font-size: 11px;
  color: rgba(240, 230, 204, 0.65);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  letter-spacing: 0.1px;
  font-weight: 300;
  transition: all 0.3s;
}

.package-features li:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-btn {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 28px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: 100%;
  font-weight: 700;
  border-radius: 3px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  z-index: 4;
  cursor: pointer;
  pointer-events: auto;
}

.package-card.featured .package-btn {
  position: relative !important;
  z-index: 999 !important;
  pointer-events: auto !important;
}

.package-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e0c060;
  transition: left 0.4s ease;
  z-index: -1;
}

.package-btn:hover::after {
  left: 0;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

/* ===== SLIDE: VIRTUAL TOUR ===== */
.slide-virtual-tour {
  background: linear-gradient(135deg, #0a0a0f 0%, #0f0f1a 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-virtual-tour::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

.slide-virtual-tour h2 {
  font-size: 60px;
  margin-bottom: 32px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.slide-virtual-tour p {
  font-size: 16px;
  color: rgba(240, 230, 204, 0.65);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.btn-tour {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 16px 56px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border-radius: 3px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.btn-tour::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e0c060;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-tour:hover::before {
  left: 0;
}

.btn-tour:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4);
}

/* ===== SLIDE: CONTACT & ADDRESS ===== */
.slide-contact-address {
  background: var(--background);
  padding: 100px 24px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

.contact-header h2 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  display: block;
  width: 100%;
}

.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--primary);
}

.contact-header p {
  font-size: 15px;
  color: rgba(240, 230, 204, 0.6);
  font-weight: 300;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 30px;
}

.contact-item {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(16, 14, 10, 0.6) 0%, rgba(28, 25, 20, 0.3) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.1);
  transform: translateY(-5px);
}

.contact-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--primary);
}

.contact-item p {
  font-size: 14px;
  color: rgba(240, 230, 204, 0.7);
  line-height: 1.8;
  font-weight: 300;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.contact-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.contact-item a:hover::after {
  width: 100%;
}

.contact-item a:hover {
  color: #e0c060;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 50px;
}

.footer-section h4 {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  font-size: 13px;
  color: rgba(240, 230, 204, 0.6);
  line-height: 1.8;
  text-decoration: none;
  font-weight: 300;
  transition: all 0.3s;
}

.footer-section a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-divider {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 30px;
  margin-top: 30px;
}

.footer-bottom {
  font-size: 12px;
  color: rgba(240, 230, 204, 0.4);
  letter-spacing: 0.1em;
  font-weight: 300;
}

.nav-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--primary);
  border-color: rgba(201, 168, 76, 0.2);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }

  .nav-links {
    gap: 30px;
  }

  .slide-home h1 {
    font-size: 64px;
  }

  .slide-home p {
    font-size: 16px;
  }

  .room-display {
    gap: 40px;
  }

  .room-image {
    height: 400px;
  }

  .room-info h3 {
    font-size: 36px;
  }

  .packages-grid {
    gap: 30px;
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .slide {
    min-height: auto;
    overflow-y: visible;
  }

  .navbar {
    padding: 16px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }

  .nav-logo {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    padding: 20px;
    gap: 15px;
    backdrop-filter: blur(12px);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-link {
    font-size: 10px;
  }

  .btn-book-nav {
    padding: 10px 20px;
    font-size: 9px;
  }

  .slide-home h1 {
    font-size: 42px;
    margin-bottom: 16px;
  }

  .slide-home p {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .slide-home button {
    padding: 12px 32px;
    font-size: 10px;
  }

  .slide-rooms {
    padding: 80px 16px 40px;
  }

  .slide-rooms-header h2 {
    font-size: 40px;
  }

  .room-display {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }

  .room-image {
    height: 250px;
  }

  .room-info {
    padding: 0;
  }

  .room-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .room-info p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .room-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-item {
    font-size: 12px;
  }

  .room-thumbnails {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .room-thumbnail {
    height: 80px;
  }

  .slide-packages {
    padding: 80px 16px 40px;
  }

  .slide-packages-header h2 {
    font-size: 40px;
  }

  .slide-packages-header {
    margin-bottom: 40px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .package-card {
    padding: 40px 20px 30px;
  }

  .package-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .package-price {
    font-size: 32px;
  }

  .package-period {
    font-size: 12px;
  }

  .package-desc {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .package-features li {
    font-size: 11px;
    padding: 8px 0;
  }

  .package-btn {
    padding: 12px 24px;
    font-size: 9px;
  }

  .slide-virtual-tour {
    padding: 60px 16px 40px;
  }

  .slide-virtual-tour h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .slide-virtual-tour p {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .btn-tour {
    padding: 12px 32px;
    font-size: 10px;
  }

  .slide-contact-address {
    padding: 80px 16px 40px;
  }

  .contact-header h2 {
    font-size: 40px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-item {
    padding: 30px 20px;
  }

  .contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .contact-item p {
    font-size: 13px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h4 {
    font-size: 12px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 12px;
  }

  .nav-dots {
    display: none;
  }
}

@media (max-width: 480px) {
  .slide {
    min-height: auto;
  }

  .navbar {
    padding: 12px 16px;
  }

  .nav-logo {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .slide-home h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .slide-home p {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .slide-home button {
    padding: 10px 24px;
    font-size: 9px;
  }

  .slide-rooms {
    padding: 70px 12px 30px;
  }

  .slide-rooms-header h2 {
    font-size: 28px;
  }

  .room-image {
    height: 220px;
  }

  .room-info h3 {
    font-size: 22px;
  }

  .room-info p {
    font-size: 12px;
  }

  .room-thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .room-thumbnail {
    height: 60px;
  }

  .slide-packages {
    padding: 70px 12px 30px;
  }

  .slide-packages-header h2 {
    font-size: 28px;
  }

  .packages-grid {
    gap: 16px;
  }

  .package-card {
    padding: 30px 16px 20px;
  }

  .package-title {
    font-size: 18px;
  }

  .package-price {
    font-size: 28px;
  }

  .package-desc {
    font-size: 11px;
  }

  .package-features li {
    font-size: 10px;
    padding: 6px 0;
  }

  .slide-virtual-tour h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .slide-virtual-tour p {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .slide-contact-address {
    padding: 70px 12px 30px;
  }

  .contact-header h2 {
    font-size: 28px;
  }

  .contact-item {
    padding: 20px 16px;
  }

  .contact-item h3 {
    font-size: 16px;
  }

  .contact-item p {
    font-size: 12px;
  }

  .footer-content {
    gap: 20px;
  }
}


/* swiper js css  */


/* ===== BOOKING MODAL FIXES ===== */
/* The body has overflow:hidden for the slider, but we need modals to appear above everything */
#bookingModal {
  z-index: 10500 !important;
}

.modal-backdrop {
  z-index: 10400 !important;
}

/* When the booking modal is open, ensure it is visible */
body.modal-open {
  overflow: hidden !important;
  /* Bootstrap sets this, keep it */
}

#bookingModal .modal-content {
  background: #fff;
  color: #111;
}

#bookingModal .modal-header.bg-primary {
  background-color: #c9a84c !important;
  border-color: #c9a84c !important;
}

#bookingModal .form-label {
  color: #333;
  font-weight: 500;
}

#bookingModal .alert-light {
  background: #f8f5ee;
  border-color: #c9a84c;
  color: #333;
}

#bookingModal .primary-btn {
  background: #c9a84c;
  color: #07070d;
  padding: 12px 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#bookingModal .primary-btn:hover {
  background: #e0c060;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}


.modal-body {
  background-color: #07070d;
  color: var(--primary);
}

#bookingModal .form-label {
  color: white;
  font-weight: 500;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  color: var(--primary) !important;
  background-color: transparent !important;
  background-clip: padding-box;
  border: 1px solid rgb(83, 83, 83) !important;
}

.modal-footer {
  background-color: #07070d !important;
}