/* ===== VARIABLES ===== */
:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #c9a96e;
  --accent-light: #e0c997;
  --gold: #d4af37;
  --white: #ffffff;
  --light: #f8f6f2;
  --gray: #8a8a8a;
  --dark: #0f0f1a;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
}

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

ul { list-style: none; }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader.hide-anim {
  animation: preloaderExit 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes preloaderExit {
  0% { clip-path: circle(150% at 50% 50%); }
  100% { clip-path: circle(0% at 50% 50%); }
}

.preloader.hidden {
  display: none;
}

/* Ambient glow */
.preloader::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  animation: ambientPulse 3s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Particles */
.preloader-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.preloader-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}

.preloader-particle:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; animation-duration: 2.5s; }
.preloader-particle:nth-child(2) { left: 70%; top: 20%; animation-delay: 0.4s; animation-duration: 3.2s; }
.preloader-particle:nth-child(3) { left: 40%; top: 70%; animation-delay: 0.8s; animation-duration: 2.8s; }
.preloader-particle:nth-child(4) { left: 80%; top: 60%; animation-delay: 1.2s; animation-duration: 3.5s; }
.preloader-particle:nth-child(5) { left: 10%; top: 80%; animation-delay: 0.2s; animation-duration: 2.6s; }
.preloader-particle:nth-child(6) { left: 60%; top: 45%; animation-delay: 0.6s; animation-duration: 3s; }
.preloader-particle:nth-child(7) { left: 90%; top: 35%; animation-delay: 1s; animation-duration: 2.4s; }
.preloader-particle:nth-child(8) { left: 30%; top: 15%; animation-delay: 1.4s; animation-duration: 3.3s; }

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; transform: translateY(-10px) scale(1); }
  80% { opacity: 0.6; transform: translateY(-60px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

/* Inner content */
.preloader-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Ring spinner */
.preloader-ring {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  position: relative;
}

.preloader-ring::before,
.preloader-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.preloader-ring::before {
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  animation: ringSpinA 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-ring::after {
  inset: 10px;
  border-bottom-color: rgba(201,169,110,0.4);
  border-left-color: rgba(201,169,110,0.4);
  animation: ringSpinB 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes ringSpinA {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes ringSpinB {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* Center dot */
.preloader-ring-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201,169,110,0.6); }
  50% { transform: scale(1.4); box-shadow: 0 0 20px 5px rgba(201,169,110,0.3); }
}

/* Logo letters */
.preloader-logo {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.preloader-letter {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px) rotateX(90deg);
  animation: letterReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-letter:nth-child(1) { animation-delay: 0.3s; }
.preloader-letter:nth-child(2) { animation-delay: 0.5s; color: var(--accent); }
.preloader-letter:nth-child(3) { animation-delay: 0.7s; }

@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

/* Subtitle */
.preloader-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  margin-top: 0.8rem;
  opacity: 0;
  animation: subFade 0.8s ease forwards 1s;
}

@keyframes subFade {
  to { opacity: 1; }
}

/* Progress bar */
.preloader-progress {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1.5rem auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.preloader-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), rgba(201,169,110,0.4));
  animation: progressFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

@keyframes progressFill {
  0% { width: 0; }
  60% { width: 70%; }
  100% { width: 100%; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.1s;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99997;
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.3rem;
  font-weight: 700;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-book-btn {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.6rem 1.8rem;
  font-size: 0.8rem !important;
  letter-spacing: 0.15rem;
  cursor: pointer;
  transition: var(--transition);
}

.nav-book-btn:hover {
  background: var(--accent);
  color: var(--primary) !important;
}

.nav-book-btn::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.2); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 26, 0.6) 0%,
    rgba(15, 15, 26, 0.4) 50%,
    rgba(15, 15, 26, 0.8) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.6s;
}

.hero-title .accent {
  color: var(--accent);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.9s;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.2s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 7rem 0;
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-badge::before,
.section-badge::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section-title .accent {
  color: var(--accent);
  font-style: italic;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--primary);
  padding: 3rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-width: 0;
}

.about-grid > * {
  min-width: 0;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 85%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img-small {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-experience {
  position: absolute;
  top: 2rem;
  right: -1rem;
  background: var(--accent);
  color: var(--primary);
  padding: 1.5rem 2rem;
  text-align: center;
}

.about-experience .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.about-content .section-badge {
  justify-content: flex-start;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.about-content .section-subtitle {
  margin: 0;
}

.about-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-feature i {
  color: var(--accent);
  font-size: 1.2rem;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== ROOMS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.room-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 26, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.room-info {
  padding: 2rem;
}

.room-category {
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.room-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.room-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.room-amenities {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #666;
}

.room-amenity i {
  color: var(--accent);
  font-size: 0.9rem;
}

.room-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.room-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.room-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
  font-family: var(--font-body);
}

.room-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-link:hover {
  gap: 0.8rem;
}

/* ===== PARALLAX BANNER ===== */
.parallax-banner {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.7);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.parallax-content .section-title {
  margin-bottom: 1.5rem;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  min-width: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--accent);
  color: var(--white);
}

.amenity-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.amenity-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

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

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 1.2rem;
  color: var(--white);
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  padding: 1rem;
  transition: var(--transition);
}

.lightbox-nav:hover {
  color: var(--accent);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.contact-info-card:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-info-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--light);
  padding: 3rem;
  border-radius: 2px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #ddd;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--primary);
  transition: var(--transition);
  outline: none;
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

/* ===== MAP ===== */
.map-section {
  height: 450px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5);
  transition: filter 0.3s ease;
}

.map-section iframe:hover {
  filter: grayscale(0);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about .nav-logo {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.footer-contact-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg img {
  animation: none;
  transform: scale(1);
}

.page-hero-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero-content .hero-badge {
  animation-delay: 0.2s;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.4s;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.6s;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

/* ===== ABOUT PAGE DETAILED ===== */
.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-detail-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
}

.about-detail-text p {
  margin-bottom: 1.5rem;
}

.about-list {
  margin: 1rem 0 1.5rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #555;
}

.about-list li i {
  color: var(--accent);
}

.about-sidebar-card {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.about-sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* ===== NEARBY PLACES ===== */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.place-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.place-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.place-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.place-text {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== GALLERY PAGE MASONRY ===== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid #ddd;
  background: transparent;
  color: var(--primary);
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
}

.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  aspect-ratio: auto;
}

/* ===== ROOMS PAGE DETAIL ===== */
.room-detail-card {
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.room-detail-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.room-detail-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-detail-content .room-category {
  font-size: 0.75rem;
}

.room-detail-content .room-name {
  font-size: 1.8rem;
}

.room-detail-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.room-detail-amenity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #555;
}

.room-detail-amenity i {
  color: var(--accent);
  width: 18px;
  text-align: center;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    border-right: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

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

  .gallery-masonry {
    columns: 3;
  }

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

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

  .room-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.5s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-masonry {
    columns: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .room-detail-amenities {
    grid-template-columns: 1fr;
  }

  .cursor-dot, .cursor-ring {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 600px;
  }

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

  .gallery-masonry {
    columns: 1;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== AOS OVERRIDE ===== */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== MAGNETIC BUTTON EFFECT ===== */
.magnetic-btn {
  transition: transform 0.3s ease;
}

/* ===== TEXT SPLIT ANIMATION ===== */
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charReveal 0.5s ease forwards;
}

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

/* ===== SMOOTH IMAGE LOADING ===== */
img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.loaded {
  opacity: 1;
}
