/* ========================================
   D'CHARTINI VILLA — styles.css
   ======================================== */

/* ========== VARIABLES ========== */
:root {
  --gold: #C9A84C;
  --gold-light: #F3DB92;
  --gold-pale: #FBF3DC;
  --dark: #1A1409;
  --brown: #362B15;
  --brown-mid: #5C4826;
  --cream: #FAF6EE;
  --white: #ffffff;
  --text: #3D2E10;
  --text-light: #7A6645;
  --shadow: 0 20px 60px rgba(54,43,21,0.15);
  --shadow-sm: 0 4px 20px rgba(54,43,21,0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ========== CURSOR GLOW ========== */
.cursor-glow {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ========== NAVBAR ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--transition);
}

nav.scrolled {
  background: rgba(26, 20, 9, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 68px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo img {
  height: 65px;
  width: auto;
  transition: height 0.4s var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
nav.scrolled .nav-logo img { height: 50px; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li { position: relative; }

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
}

.nav-links a:hover {
  background: rgba(243,219,146,0.15);
  color: var(--gold-light);
}

.nav-links .btn-book {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 9px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-links .btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(26,20,9,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 160px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--transition);
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8) !important;
  border-radius: 6px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(201,168,76,0.15) !important;
  color: var(--gold-light) !important;
  padding-left: 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li {
  margin: 4px 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--transition);
}
.mobile-menu.open ul li { transform: translateY(0); opacity: 1; }
.mobile-menu.open ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open ul li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu ul li a {
  text-decoration: none;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  display: block;
  padding: 6px 0;
}
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-menu .mobile-book {
  margin-top: 20px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-book:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,7,2,0.5) 0%, rgba(10,7,2,0.2) 40%, rgba(10,7,2,0.6) 100%),
    url('assets/banner-3.png') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 8s var(--transition) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  animation: heroFadeIn 1.2s var(--transition) 0.3s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 1s var(--transition) 0.6s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 1s var(--transition) 0.8s both;
}

.hero-title span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeIn 1s var(--transition) 1s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1s var(--transition) 1.2s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  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: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeIn 1s var(--transition) 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.8); }
}

.hero-stats {
  position: absolute;
  bottom: 40px; right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: heroFadeIn 1s var(--transition) 1.4s both;
}

.stat-item { text-align: right; color: white; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ========== SECTION COMMON ========== */
.section { padding: 100px 5%; }
.section-header { margin-bottom: 60px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  height: 1px;
  background: var(--gold);
  flex: none;
  width: 30px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.section-title em { font-style: italic; color: var(--gold); }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========== ABOUT ========== */
.about-section { background: var(--white); }

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--brown-mid);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: all 0.3s ease;
}

.feature-item:hover { background: var(--gold-pale); transform: translateX(4px); }

.feature-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-item p {
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  margin: 0;
  line-height: 1.4;
}

.about-img-wrapper { position: relative; }

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 70%; height: 70%;
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  z-index: 0;
}

.about-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}


/* ========== FACILITIES ========== */
.facility-section { background: var(--cream); }

.facility-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.facility-header .section-title { max-width: 480px; }

.facility-header p {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  text-align: right;
}

.facility-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.facility-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}

.facility-card:nth-child(1) { grid-column: span 2; }
.facility-card:nth-child(4) { grid-column: span 2; }

.facility-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--transition), filter 0.6s ease;
  display: block;
  filter: brightness(0.75);
}

.facility-card:nth-child(1) img,
.facility-card:nth-child(4) img { height: 320px; }

.facility-card:hover img { transform: scale(1.07); filter: brightness(0.55); }

.facility-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,9,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all 0.4s ease;
}

.facility-card-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--transition) 0.1s;
}

.facility-card:hover .facility-card-tag { opacity: 1; transform: translateY(0); }

.facility-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.02em;
}

/* ========== ROOMS ========== */
.room-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.room-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.room-section .section-title { color: var(--gold-light); }
.room-section .section-eyebrow { color: rgba(201,168,76,0.8); }
.room-section .section-eyebrow::before,
.room-section .section-eyebrow::after { background: rgba(201,168,76,0.4); }

.room-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.room-header p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: right;
  align-self: flex-end;
}

.room-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201,168,76,0.1);
  transition: border-color 0.3s ease;
}

.room-card:hover { border-color: rgba(201,168,76,0.4); }

.room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition);
  filter: brightness(0.8);
}

.room-card:hover img { transform: scale(1.06); filter: brightness(0.6); }

.room-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,9,0.95) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.room-number {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
}

.room-price {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s var(--transition);
}

.room-card:hover .room-price { opacity: 1; transform: translateY(0); }

/* ========== PRICING ========== */
.price-section { background: var(--white); padding: 100px 5%; }

.price-grid {
  max-width: 800px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.4s ease;
  position: relative;
}

.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }

.price-card-header { padding: 32px 32px 24px; background: var(--cream); }
.price-card.featured .price-card-header { background: var(--dark); }

.price-card-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 4px;
}

.price-card.featured .price-card-title { color: white; }

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 24px 32px;
  background: var(--gold-pale);
}

.price-card.featured .price-amount { background: rgba(201,168,76,0.15); }

.price-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--brown);
  line-height: 1;
}

.price-card.featured .price-number { color: var(--gold-light); }

.price-unit { font-size: 13px; color: var(--text-light); padding-bottom: 8px; font-weight: 500; }

.price-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ========== BOOKING SECTION ========== */
.booking-section {
  background: var(--dark);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.booking-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.booking-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.booking-header { text-align: center; margin-bottom: 60px; }

.booking-header .section-eyebrow { justify-content: center; color: rgba(201,168,76,0.75); }
.booking-header .section-eyebrow::before,
.booking-header .section-eyebrow::after { background: rgba(201,168,76,0.35); }
.booking-header .section-title { color: var(--gold-light); }
.booking-header p { color: rgba(255,255,255,0.45); font-size: 15px; margin-top: 12px; letter-spacing: 0.03em; }

.booking-grid {
  align-items: center;
  justify-content: center;
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.booking-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  position: relative;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.booking-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.booking-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 24px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2);
  background: rgba(255,255,255,0.06);
}

.booking-card:hover::before { opacity: 1; }

.booking-logo-wrap {
  width: 90px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--transition);
}

.booking-card:hover .booking-logo-wrap { transform: scale(1.08); }

.booking-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: all 0.4s ease;
}

.booking-card:hover .booking-logo-wrap img { opacity: 1; filter: none; }

.booking-card-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  transition: color 0.3s ease;
}

.booking-card:hover .booking-card-label { color: rgba(255,255,255,0.75); }

.booking-card-arrow {
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s var(--transition);
}

.booking-card:hover .booking-card-arrow { opacity: 1; transform: translateY(0); }

.booking-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

.booking-note span { color: var(--gold); font-weight: 500; }

/* ========== LOCATION ========== */
.location-section { background: var(--cream); padding: 100px 5%; }
.location-inner { max-width: 1200px; margin: 0 auto; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.location-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 16px;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.location-address .icon { font-size: 20px; color: var(--gold); margin-top: 2px; }
.location-address p { font-size: 15px; line-height: 1.7; color: var(--text); }

.contact-items { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-item:hover { border-color: var(--gold); transform: translateX(6px); color: var(--brown); }

.contact-item .icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dark);
  flex-shrink: 0;
}

.contact-item .label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item .value { font-size: 14px; font-weight: 500; color: var(--brown); }

.maps-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.maps-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ========== FOOTER ========== */
footer { background: var(--dark); padding: 60px 5% 30px; position: relative; }

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer-brand h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; }

.footer-gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }

.footer-gallery a { border-radius: 6px; overflow: hidden; display: block; aspect-ratio: 1; }

.footer-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(0.6);
}

.footer-gallery a:hover img { filter: brightness(0.9) saturate(1.2); transform: scale(1.05); }

.footer-bottom { text-align: center; font-size: 13px; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }
.footer-bottom span { color: var(--gold); }

/* ========== CHATBOT ========== */
.chatbot-trigger {
  position: fixed;
  right: 28px; bottom: 28px;
  z-index: 1000;
  width: 58px; height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.chatbot-trigger:hover { background: var(--gold-light); transform: scale(1.1); box-shadow: 0 12px 40px rgba(201,168,76,0.6); }
.chatbot-trigger i { font-size: 24px; color: var(--dark); }

.chatbot-trigger .pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.chat-container {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 380px; height: 580px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlide 0.4s var(--transition);
  z-index: 999;
  border: 1px solid rgba(201,168,76,0.2);
}

.chat-container.active { display: flex; }

@keyframes chatSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  background: var(--dark);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.chat-header-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
}

.chat-header-info h3 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 2px; }
.chat-header-info p  { font-size: 12px; color: var(--gold); opacity: 0.9; }

.online-dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  position: absolute;
  bottom: 20px; left: 51px;
  border: 1.5px solid var(--dark);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.close-chat-btn {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-chat-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) rotate(90deg); }

.chat-messages { flex: 1; padding: 20px; overflow-y: auto; background: #f8f6f2; scroll-behavior: smooth; }

.message { margin-bottom: 14px; display: flex; animation: msgFade 0.3s ease; }

@keyframes msgFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.message.bot  { justify-content: flex-start; }
.message.user { justify-content: flex-end; }

.message-content {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 18px;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-line;
}

.message.bot .message-content  { background: white; color: var(--text); border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.message.user .message-content { background: var(--brown); color: white; border-bottom-right-radius: 4px; }

.typing-indicator {
  display: none;
  padding: 14px 18px;
  background: white;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.typing-indicator span {
  height: 7px; width: 7px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-8px); }
}

.quick-replies { padding: 12px 16px; background: white; border-top: 1px solid rgba(201,168,76,0.15); display: flex; gap: 8px; flex-wrap: wrap; }

.quick-reply-btn {
  padding: 6px 14px;
  background: var(--cream);
  color: var(--brown);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
}

.quick-reply-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.chat-input { display: flex; gap: 8px; padding: 14px 16px; background: white; border-top: 1px solid #eee; }

.chat-input input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 50px;
  outline: none;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s ease;
  color: var(--text);
}

.chat-input input:focus { border-color: var(--gold); }

.chat-input button {
  width: 40px; height: 40px;
  background: var(--brown);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-input button:hover { background: var(--gold); color: var(--dark); transform: scale(1.05); }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ========== SECTION DIVIDER ========== */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrapper::before { display: none; }
  .about-img-wrapper img { height: 360px; }
  .about-floating-card { bottom: -15px; left: 0; }
  .facility-grid { grid-template-columns: 1fr 1fr; }
  .facility-card:nth-child(1),
  .facility-card:nth-child(4) { grid-column: span 1; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .facility-header { flex-direction: column; gap: 16px; }
  .facility-header p { text-align: left; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px 5%; }
  .hero-stats { display: none; }
  .facility-grid { grid-template-columns: 1fr; }
  .facility-card:nth-child(1),
  .facility-card:nth-child(4) { grid-column: span 1; }
  .room-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 400px; }
  .about-features { grid-template-columns: 1fr; }
  .chat-container {
    left: 50%; right: auto;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
    max-width: 400px;
    bottom: 90px;
  }
  .footer-gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-gallery a:nth-child(n+4) { display: none; }
  .room-header { grid-template-columns: 1fr; gap: 10px; }
  .room-header p { text-align: left; }
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 42px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .booking-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .booking-card { padding: 24px 16px; }
}