/* ============================================
   YETFEM HOTEL - Modern Luxury Stylesheet
   Complete CSS - Production Ready
   ============================================ */

/* ===== CSS Variables ===== */
:root {
  --primary: #0b132b;
  --primary-light: #1c2541;
  --secondary: #d4af37;
  --secondary-light: #f0d690;
  --accent: #b08d1f;
  --dark: #070b1a;
  --light: #f8f9fa;
  --white: #ffffff;

  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;

  --success: #10b981;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --section-padding: 120px;
  --transition-base: 0.3s ease;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.preloader-text {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 4px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
}

#navbar.scrolled {
  padding: 15px 0;
  background: rgba(13, 27, 42, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
}

.nav-link {
  position: relative;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition-base);
}

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

.nav-link.active {
  color: var(--secondary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */

/* Hero container */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-top: 5px;
  background: #04060f;
}

/* Abstract canvas background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-video-bg canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Left-side directional overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    108deg,
    rgba(4, 6, 15, 0.92) 0%,
    rgba(4, 6, 15, 0.74) 42%,
    rgba(4, 6, 15, 0.14) 70%,
    transparent 100%
  );
}

/* Bottom fade for stats bar legibility */
.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(4, 6, 15, 0.88) 0%,
    transparent 100%
  );
}

/* Floating gold particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  animation: particleFloat 15s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.hero-particles span:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.hero-particles span:nth-child(2) {
  left: 85%;
  top: 30%;
  animation-delay: 2s;
  animation-duration: 18s;
}
.hero-particles span:nth-child(3) {
  left: 40%;
  top: 60%;
  animation-delay: 4s;
  animation-duration: 15s;
}
.hero-particles span:nth-child(4) {
  left: 70%;
  top: 75%;
  animation-delay: 1s;
  animation-duration: 20s;
}
.hero-particles span:nth-child(5) {
  left: 25%;
  top: 80%;
  animation-delay: 3s;
  animation-duration: 14s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
}

/* ── Left vertical gold rule ── */
.hero-rule {
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 175, 55, 0.55) 18%,
    rgba(212, 175, 55, 0.55) 82%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
}

.hero-rule-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow:
    0 0 14px rgba(212, 175, 55, 0.85),
    0 0 28px rgba(212, 175, 55, 0.4);
}

/* ── Ghost oversized letters ── */
.hero-ghost-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--font-primary);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.055);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  animation: heroFadeIn 1.4s ease 0.8s both;
}

/* ── Main Wrapper ── */
.hero-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px 140px 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
}

/* ── Hero Content ── */
.hero-content {
  color: #ffffff;
}

/* ── Eyebrow label ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.eyebrow-line {
  display: block;
  width: 44px;
  height: 1px;
  background: #d4af37;
  flex-shrink: 0;
}

.eyebrow-copy {
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d4af37;
}

.eyebrow-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.45);
  flex-shrink: 0;
}

/* ── Title ── */
.hero-main-title {
  margin: 0 0 28px 0;
  line-height: 1;
  text-align: left;
}

.title-line-1 {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 6px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(212, 175, 55, 0.08);
}

/* Gold first-letter drop */
.title-drop {
  color: #d4af37;
}

.title-line-2 {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.15;
  padding-left: 4px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.title-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  padding-left: 2px;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.title-location i {
  color: #d4af37;
  font-size: 0.65rem;
}

/* ── Tagline ── */
.hero-tagline {
  font-family: var(--font-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  max-width: 400px;
  line-height: 1.75;
  margin: 0 0 44px 0;
  border-left: 2px solid rgba(212, 175, 55, 0.4);
  padding-left: 16px;
  text-shadow: none;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* ── CTA Buttons ── */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.72s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Primary — solid gold with separated icon box */
.hero-btn-primary {
  background: #d4af37;
  color: #060810;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.38);
}

.hero-btn-primary span:first-child {
  padding: 16px 24px;
  display: block;
}

.btn-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.5);
}

.hero-btn-primary:hover .btn-icon-box {
  background: rgba(0, 0, 0, 0.28);
}

.hero-btn-primary:hover .btn-icon-box i {
  transform: translateX(3px);
}

.btn-icon-box i {
  transition: transform 0.3s ease;
}

/* Ghost — bare underline link */
.hero-btn-ghost {
  background: none;
  color: rgba(255, 255, 255, 0.72);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 14px 0;
  gap: 10px;
}

.hero-btn-ghost i {
  font-size: 0.68rem;
  transition: transform 0.3s ease;
}

.hero-btn-ghost:hover {
  color: #d4af37;
  border-color: #d4af37;
  transform: none;
  box-shadow: none;
}

.hero-btn-ghost:hover i {
  transform: translateX(4px);
}

/* ── Bottom Stats Bar ── */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
  z-index: 4;
}

.stat-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 32px;
  background: rgba(4, 6, 15, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.3s ease;
  cursor: default;
}

.stat-cell:hover {
  background: rgba(212, 175, 55, 0.07);
}

.stat-cell + .stat-cell {
  border-left: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-icon-box {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.stat-cell:hover .stat-icon-box {
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.07);
}

.stat-icon-box i {
  color: #d4af37;
  font-size: 0.95rem;
}

.stat-body h4 {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 3px;
}

.stat-body p {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.03em;
  margin: 0;
}

/* ── Right scroll indicator ── */
.hero-scroll-track {
  position: absolute;
  right: 38px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: heroFadeIn 1s ease 1.3s both;
}

.scroll-line {
  width: 1px;
  height: 58px;
  background: rgba(212, 175, 55, 0.18);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #d4af37;
  animation: scrollDrop 1.9s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

.scroll-label {
  font-family: var(--font-primary);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  writing-mode: vertical-rl;
}

/* ── Hero keyframes ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   GLOBAL KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

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

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

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

/* ============================================
   BUTTONS (global)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  backdrop-filter: blur(10px);
  padding: 14px 28px;
  font-size: 0.95rem;
}

.btn-ghost:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-nav {
  padding: 12px 28px !important;
  font-size: 0.9rem !important;
}

/* ============================================
   SECTIONS (global)
   ============================================ */
.section {
  padding: var(--section-padding) 20px;
}

.section-dark {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 15px;
  position: relative;
  padding: 0 30px;
}

.section-label::before,
.section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--secondary);
}

.section-label::before {
  left: 0;
}
.section-label::after {
  right: 0;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-title .accent {
  color: var(--secondary);
}

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

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

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--gray-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-number {
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 900;
  color: var(--secondary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}

.about-content h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--secondary);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: absolute;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.1);
}

.about-image-main {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-image-secondary {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-wrapper {
  margin-top: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.5s ease;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.room-image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.9), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.room-badge.popular {
  background: rgba(212, 175, 55, 0.95);
  color: var(--white);
}

.room-badge.luxury {
  background: rgba(184, 134, 11, 0.95);
  color: var(--white);
}

.room-content {
  padding: 35px;
}

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

.room-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.room-price {
  text-align: right;
}

.price-amount {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.price-period {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.room-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 25px;
}

.room-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
  padding: 25px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.room-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.room-feature-item i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.gallery-large {
  grid-column: span 2;
  height: 450px;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-overlay h4 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.amenity-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.amenity-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.amenity-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.amenity-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--gray-100);
}

.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.author-info {
  text-align: left;
}

.author-info h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.rating {
  color: var(--secondary);
  font-size: 0.9rem;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-nav {
  width: 45px;
  height: 45px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-base);
  cursor: pointer;
}

.testimonial-nav:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.testimonial-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.dot.active {
  background: var(--secondary);
  width: 35px;
  border-radius: 6px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: start;
  gap: 20px;
  transition: all var(--transition-base);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: black;
}

.contact-details p,
.contact-details a {
  font-size: 1rem;
  color: rgba(32, 31, 31, 0.8);
}

.contact-details a:hover {
  color: var(--secondary);
}

.contact-form-wrapper {
  background: rgba(75, 64, 64, 0.05);
  /* backdrop-filter: blur(10px); */
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 13, 13, 0.1);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 35px;
  color: black;
}

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

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 50px 18px 18px;
  background: rgba(26, 24, 24, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: black;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(19, 16, 16, 0.12);
}

.form-group label {
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--transition-base);
  pointer-events: none;
  padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  font-size: 0.85rem;
  color: black;
  background: var(--primary-light);
}

.form-group i {
  position: absolute;
  right: 18px;
  top: 18px;
  color: black;
  font-size: 1.1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 20px 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--secondary);
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links i {
  color: var(--secondary);
  width: 20px;
}

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

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer-bottom i {
  color: var(--secondary);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  z-index: 10;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-image-section {
  height: 100%;
  min-height: 400px;
}

#modalImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 50px;
  overflow-y: auto;
}

#modalTitle {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 30px;
}

#modalAmount {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
}

.modal-price .price-period {
  font-size: 1rem;
  color: var(--gray-500);
}

#modalDescription {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 30px;
}

#modalFeatures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 30px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

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

.booking-section {
  background: var(--gray-100);
  padding: 30px;
  border-radius: var(--radius-md);
}

.booking-section h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}

.booking-section h4 i {
  color: var(--secondary);
}

.booking-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.payment-info {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.payment-row:last-child {
  border-bottom: none;
}

.payment-row .label {
  font-weight: 600;
  color: var(--primary);
}

.payment-row .value {
  color: var(--gray-600);
}

.payment-note {
  font-size: 0.88rem !important;
  color: var(--gray-500) !important;
  margin-bottom: 20px !important;
}

.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #1ebe57 !important;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

/* ============================================
   AOS — Animate on Scroll
   ============================================ */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}
[data-aos="fade-down"] {
  transform: translateY(-30px);
}
[data-aos="fade-left"] {
  transform: translateX(30px);
}
[data-aos="fade-right"] {
  transform: translateX(-30px);
}
[data-aos="zoom-in"] {
  transform: scale(0.95);
}

[data-aos].aos-animate[data-aos="fade-up"],
[data-aos].aos-animate[data-aos="fade-down"],
[data-aos].aos-animate[data-aos="fade-left"],
[data-aos].aos-animate[data-aos="fade-right"] {
  transform: translate(0, 0);
}

[data-aos].aos-animate[data-aos="zoom-in"] {
  transform: scale(1);
}

/* ============================================
   MULTIPAGE — Inner Page Hero
   ============================================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 19, 43, 0.85) 0%,
    rgba(28, 37, 65, 0.7) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.page-hero-content .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.page-hero-content .breadcrumb a {
  color: var(--secondary);
}
.page-hero-content .breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero-content h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.page-hero-content h1 span {
  color: var(--secondary);
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   MULTIPAGE — Rooms Filter
   ============================================ */
.rooms-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.room-card.hidden {
  display: none;
}

/* ============================================
   MULTIPAGE — Gallery Page
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.gallery-grid-full {
  columns: 3 300px;
  gap: 16px;
}

.gallery-grid-full .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: auto;
  cursor: pointer;
  position: relative;
}

.gallery-grid-full .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-grid-full .gallery-item:hover img {
  transform: scale(1.04);
}

/* ============================================
   MULTIPAGE — Amenities Page
   ============================================ */
.amenities-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.amenity-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.amenity-card-img {
  height: 200px;
  overflow: hidden;
}

.amenity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-card-img img {
  transform: scale(1.06);
}

.amenity-card-body {
  padding: 28px;
}

.amenity-card-body .amenity-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.amenity-card-body h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.amenity-card-body p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   MULTIPAGE — About Page
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.team-card p {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.value-card:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-4px);
}

.value-card .value-icon {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   MULTIPAGE — Contact Page
   ============================================ */
.contact-info-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-card .c-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-info-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.contact-info-card a:hover {
  color: var(--secondary);
}

.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
  margin-top: 60px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(7, 11, 26, 0.97);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
}

.lightbox-inner img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
}

/* ============================================
   BOOKING STRIP CTA
   ============================================ */
.booking-strip {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 70px 20px;
  text-align: center;
}

.booking-strip h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 14px;
  font-family: var(--font-primary);
}

.booking-strip p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.booking-strip .btn {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}

.booking-strip .btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --section-padding: 100px;
  }
  .about-grid,
  .contact-wrapper {
    gap: 60px;
  }
  .modal-content {
    grid-template-columns: 1fr;
  }
  .modal-image-section {
    min-height: 350px;
  }
}

@media (max-width: 1024px) {
  .hero-wrapper {
    padding: 0 40px 130px 80px;
  }
  .hero-rule {
    left: 28px;
  }
  .hero-ghost-text {
    font-size: clamp(8rem, 22vw, 14rem);
  }
  .stat-cell {
    padding: 18px 20px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 40px;
    gap: 25px;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-xl);
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .contact-wrapper,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 500px;
  }
  .rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
  }
  .modal-body {
    padding: 40px;
  }
  #modalFeatures {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }
  .nav-container {
    padding: 0 20px;
  }
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-wrapper {
    padding: 0 24px 120px 24px;
  }
  .hero-rule {
    display: none;
  }
  .hero-ghost-text {
    display: none;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-scroll-track {
    display: none;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr;
  }
  .stat-cell + .stat-cell {
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
  }
  .about-images {
    height: 400px;
  }
  .features-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 300px;
  }
  .testimonial-card {
    padding: 40px 30px;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
  .2026 {
    padding: 35px 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-main {
    gap: 40px;
  }
  .modal-body {
    padding: 30px 20px;
  }
  #modalTitle {
    font-size: 2rem;
  }
  #modalAmount {
    font-size: 2.5rem;
  }
  .page-hero {
    height: 320px;
  }
  .gallery-grid-full {
    columns: 2 200px;
  }
  .amenities-detailed-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-full {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }
  .section-header {
    margin-bottom: 50px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-wrapper {
    padding: 0 20px 110px 20px;
  }
  .title-line-1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }
  .title-line-2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  .hero-stats-bar {
    display: none;
  }
  .about-images {
    height: 350px;
  }
  .room-content {
    padding: 25px;
  }
  .room-features-list {
    grid-template-columns: 1fr;
  }
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  .author-info {
    text-align: center;
  }
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .gallery-grid-full {
    columns: 1;
  }
  .contact-info-full {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE ENHANCEMENTS — All Pages
   ============================================ */
.nav-container {
  padding: 0 clamp(16px, 4vw, 40px) !important;
}
@media (max-width: 992px) {
  .nav-links {
    top: 70px;
    left: 0;
    right: 0;
    padding: 24px clamp(16px, 5vw, 40px);
    gap: 0;
    transform: translateY(-110%);
    align-items: flex-start;
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    font-size: 1rem;
  }
  .btn-nav {
    margin-top: 10px;
    display: inline-block;
    text-align: center;
  }
}
.page-hero {
  height: clamp(280px, 40vw, 460px) !important;
  padding-top: 70px !important;
}
.section {
  padding: clamp(60px, 8vw, 120px) clamp(16px, 4vw, 40px);
}
.container {
  padding: 0 clamp(16px, 4vw, 40px);
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images {
    height: 380px !important;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .room-header {
    flex-direction: column;
    gap: 8px;
  }
  .room-price {
    text-align: left;
  }
  .room-content {
    padding: 24px 20px;
  }
  .room-image-wrapper {
    height: 240px;
  }
  .about-images {
    height: 300px !important;
  }
}
@media (max-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr;
  }
  .modal-image-section {
    min-height: 260px;
  }
  .modal-body {
    padding: 28px 20px;
  }
  #modalTitle {
    font-size: 1.8rem;
  }
  #modalAmount {
    font-size: 2.2rem;
  }
  #modalFeatures {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.gallery-grid-full {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 280px !important;
  gap: clamp(10px, 2vw, 18px) !important;
  columns: unset !important;
}
.gallery-grid-full .gallery-item {
  break-inside: unset !important;
  margin-bottom: 0 !important;
  height: auto !important;
}
.gallery-grid-full .gallery-item.is-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.gallery-grid-full .gallery-item.is-tiktok {
  grid-row: span 2;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-grid-full .tiktok-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-grid-full .tiktok-wrapper blockquote.tiktok-embed {
  margin: 0 !important;
  padding: 0 !important;
  min-width: unset !important;
  max-width: 100% !important;
  width: 100% !important;
  border: none !important;
}
.gallery-grid-full .tiktok-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  border: none !important;
}
.gallery-item.hidden {
  display: none !important;
}
@media (max-width: 900px) {
  .gallery-grid-full {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 260px !important;
  }
}
@media (max-width: 520px) {
  .gallery-grid-full {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 280px !important;
  }
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}
.quick-book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
@media (max-width: 560px) {
  .quick-book-grid {
    grid-template-columns: 1fr;
  }
}
.contact-map-wrapper {
  height: clamp(260px, 40vw, 420px) !important;
  margin-top: 40px !important;
}
@media (max-width: 768px) {
  .contact-info-full {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .contact-info-full {
    grid-template-columns: 1fr !important;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.quick-book {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.quick-book h3 {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-bottom: 8px;
}
.quick-book > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: clamp(20px, 3vw, 32px);
  font-size: 0.95rem;
}
.quick-book .form-group input,
.quick-book .form-group select {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
  border-radius: 8px;
}
.quick-book .form-group label {
  color: rgba(255, 255, 255, 0.65) !important;
  background: transparent !important;
}
.quick-book .form-group input:focus,
.quick-book .form-group select:focus {
  border-color: var(--secondary) !important;
  outline: none;
}
.quick-book .form-group select {
  -webkit-appearance: none;
  appearance: none;
}
.quick-book .form-group select option {
  background: var(--primary);
  color: #fff;
}
.quick-book .btn-primary {
  margin-top: 12px;
  width: 100%;
  max-width: 360px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.whatsapp-banner {
  background: #25d366;
  border-radius: var(--radius-md);
  padding: clamp(18px, 3vw, 28px) clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.whatsapp-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.whatsapp-banner > i {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  flex-shrink: 0;
}
.whatsapp-banner-text h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.whatsapp-banner-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.87rem;
  margin: 0;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.social-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background 0.3s,
    transform 0.2s;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.social-icon:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-primary);
  gap: 12px;
}
.faq-question span {
  flex: 1;
}
.faq-question i {
  transition: transform 0.3s ease;
  color: var(--secondary);
  flex-shrink: 0;
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 0.93rem;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-item.open .faq-answer {
  display: block;
}
.booking-strip {
  padding: clamp(48px, 7vw, 80px) clamp(16px, 5vw, 40px);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
