/* ============================================
   FLORENCE BOUTIQUE HOTEL - LUXURY CSS
   Dark Luxury + Gold + Glassmorphism
   ============================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --black: #0f0f0f;
  --black-light: #1a1a1a;
  --black-medium: #141414;
  --gold: #EFBF04;
  --gold-light: #f5d442;
  --gold-dark: #c49b00;
  --brand: #d10056;
  --brand-light: #ff1a75;
  --white: #f5f5f5;
  --white-dim: #cccccc;
  --gray: #888888;
  --gray-dark: #333333;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg-strong: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 0 40px rgba(239, 191, 4, 0.15);
  --shadow-brand: 0 0 40px rgba(209, 0, 86, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
  --font-heading: 'Merienda', cursive;
  --font-body: 'Inter', 'Poppins', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*,
*::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);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--brand));
  border-radius: 3px;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold), var(--brand));
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold);
}

/* ── Page Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  opacity: 0;
  transform: translateY(30px);
  animation: loaderReveal 1s ease forwards 0.3s;
  text-align: center;
}

.loader-logo span {
  display: block;
  font-size: 0.35em;
  font-family: var(--font-body);
  letter-spacing: 0.5em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-top: 10px;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderReveal 0.6s ease forwards 0.8s;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--brand));
  width: 0%;
  animation: loaderFill 2s ease forwards 1s;
}

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

@keyframes loaderFill {
  to {
    width: 100%;
  }
}

.page-loader.loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

/* ── Cursor Glow (Desktop Only) ── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 191, 4, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 5%;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-logo .logo-dot {
  color: var(--brand);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--brand));
  transition: width 0.4s ease;
}

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

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

.nav-book-btn {
  padding: 12px 45px;
  min-width: 160px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  font-weight: 600 !important;
  border-radius: 50px;
  letter-spacing: 0.05em !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(239, 191, 4, 0.3);
}

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

.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 191, 4, 0.4);
  color: var(--black) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 350px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid var(--glass-border);
  }

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

  .nav-links a {
    font-size: 1rem;
  }

  .nav-book-btn {
    width: auto !important;
    min-width: 160px;
    text-align: center;
  }
}

/* ── Section Utilities ── */
.section {
  padding: 100px 5%;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--black);
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 15, 15, 0.3) 0%,
      rgba(15, 15, 15, 0.5) 40%,
      rgba(15, 15, 15, 0.9) 100%);
  z-index: 1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(209, 0, 86, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(239, 191, 4, 0.06) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(239, 191, 4, 0.1);
  border: 1px solid rgba(239, 191, 4, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-badge .star {
  font-size: 0.9rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--white);
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 3s ease infinite;
}

@keyframes goldShimmer {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-dim);
  font-weight: 300;
  margin-bottom: 45px;
  line-height: 1.7;
  opacity: 0.85;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(239, 191, 4, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(239, 191, 4, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(239, 191, 4, 0.15);
}

/* Hero Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: dotFall 2s ease-in-out infinite;
}

.scroll-dot:nth-child(1) { animation-delay: 0s; }
.scroll-dot:nth-child(2) { animation-delay: 0.2s; }
.scroll-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotFall {
  0% {
    opacity: 0;
    transform: translateY(-15px) scale(0.5);
  }
  30% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translateY(8px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.3);
  }
}

/* Hero 3D Canvas */
.hero-3d-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-3d-canvas {
    display: none;
  }
}

/* ── Floating Particles ── */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ── ABOUT SECTION ── */
.about {
  background: var(--black);
  overflow: hidden;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-deep);
}

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

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

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  opacity: 0.2;
  z-index: -1;
}

.about-stats {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 25px;
}

.stat-card {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 20px 25px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 35px;
  font-weight: 300;
}

.about-features {
  margin-top: 20px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition);
}

.about-feature:hover {
  border-color: rgba(239, 191, 4, 0.2);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, rgba(239, 191, 4, 0.15), rgba(209, 0, 86, 0.08));
  border: 1px solid rgba(239, 191, 4, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transform: perspective(400px) rotateX(4deg) rotateY(-4deg);
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
  transform: perspective(400px) rotateX(0deg) rotateY(0deg) scale(1.08);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(239, 191, 4, 0.12);
}

.about-feature span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-dim);
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image img {
    height: 400px;
  }

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

/* ── ROOMS SECTION ── */
.rooms {
  background: var(--white);
  overflow: hidden;
}

.rooms-header {
  text-align: center;
  margin-bottom: 40px;
}

.rooms-header .section-subtitle {
  margin: 0 auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
}

.room-card:hover {
  transform: translateY(-10px);
  border-color: rgba(239, 191, 4, 0.2);
  box-shadow: var(--shadow-gold);
}

.room-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

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

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 15, 15, 0.8) 100%);
}

.room-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 15px;
  background: rgba(209, 0, 86, 0.9);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.room-card-content {
  padding: 30px;
}

.room-card-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.room-card-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.room-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-card-amenities {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.room-amenity-tag {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--black-light);
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.room-book-btn {
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.room-book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(239, 191, 4, 0.4);
}

@media (max-width: 968px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ── AMENITIES SECTION ── */
.amenities {
  background: var(--black);
  overflow: hidden;
}

.amenities-header {
  text-align: center;
  margin-bottom: 40px;
}

.amenities-header .section-subtitle {
  margin: 0 auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.amenity-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239, 191, 4, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.amenity-card:hover::before {
  opacity: 1;
}

.amenity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 191, 4, 0.3);
  box-shadow: var(--shadow-gold);
}

.amenity-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(239, 191, 4, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
  position: relative;
  transform: perspective(500px) rotateX(5deg) rotateY(-5deg);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 2px 6px rgba(239, 191, 4, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.amenity-card:hover .amenity-icon {
  background: rgba(255, 255, 255, 1);
  transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.1);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(239, 191, 4, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.amenity-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.amenity-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .amenity-card {
    padding: 25px 15px;
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── GALLERY SECTION ── */
.gallery {
  background: var(--black-medium);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-video-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
}

.gallery-hero-video {
  width: 100%;
  display: block;
  object-fit: cover;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 15, 15, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

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

.gallery-item-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }

}
/* @media (max-width: 1980px) {
  .gallery-hero-video {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
}
  
} */
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: var(--shadow-deep);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

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

/* ── TESTIMONIALS SECTION ── */
.testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.swiper-container {
  padding-bottom: 60px;
  overflow: visible;
}

.testimonial-card {
  background: var(--black);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(239, 191, 4, 0.2);
  transform: translateY(-5px);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 15px;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-from {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 3px;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--gray-dark);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--gold), var(--brand));
  width: 50px;
}

/* ── BOOKING SECTION ── */
.booking {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(209, 0, 86, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.booking-content {
  position: relative;
  z-index: 1;
}

.booking-form-wrapper {
  position: relative;
  z-index: 1;
}

.booking-form {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 45px;
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(239, 191, 4, 0.1);
}

.form-group select option {
  background: var(--black);
  color: var(--white);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
}

.whatsapp-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 12px;
  color: #25d366;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-booking:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .booking-form {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT SECTION ── */
.contact {
  background: var(--black);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(239, 191, 4, 0.2);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(239, 191, 4, 0.1), rgba(209, 0, 86, 0.05));
  border: 1px solid rgba(239, 191, 4, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--white);
}

.contact-card-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-card-text a {
  color: var(--gold);
}

.contact-card-text a:hover {
  color: var(--gold-light);
}

.contact-map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 100%;
  min-height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) brightness(0.8) contrast(1.1);
  transition: filter 0.5s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0) brightness(0.9) contrast(1);
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-map {
    min-height: 280px;
  }

  .contact-info-cards {
    margin-top: 15px;
    gap: 10px;
  }

  .contact-card {
    padding: 16px;
  }
}

/* ── FOOTER ── */
.footer {
  background: var(--black-medium);
  border-top: 1px solid var(--glass-border);
  padding: 80px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-logo .foot-dot {
  color: var(--brand);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--brand));
  border-color: transparent;
  color: var(--black);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-copyright a {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-legal a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid var(--glass-border);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  font-size: 1.2rem;
  color: var(--gold);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ── Floating Booking CTA (Mobile) ── */
.mobile-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}

.mobile-booking-info {
  display: flex;
  flex-direction: column;
}

.mobile-booking-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-booking-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.mobile-booking-price span {
  font-size: 0.75rem;
  color: var(--gray);
  font-family: var(--font-body);
}

.mobile-book-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-booking-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 85px;
  }

  .back-to-top {
    bottom: 155px;
  }

  .footer {
    padding-bottom: 80px;
  }
}

/* ── GSAP Animation Classes ── */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
}

/* ── 3D Scene Section ── */
.three-scene-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Divider ── */
.luxury-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--brand), var(--gold), transparent);
  opacity: 0.3;
}

/* ── Media queries for fine-tuning ── */
@media (max-width: 768px) {
  .section {
    padding: 60px 4%;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .section-label {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  .rooms-header,
  .amenities-header,
  .gallery-header,
  .testimonials-header {
    margin-bottom: 30px;
  }

  .about-grid {
    gap: 30px;
  }

  .about-image img {
    height: 280px;
  }

  .about-text {
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .about-features {
    gap: 10px;
    margin-top: 15px;
  }

  .about-feature {
    padding: 10px;
    gap: 10px;
  }

  .about-feature-icon {
    width: 34px;
    height: 34px;
  }

  .about-feature span {
    font-size: 0.78rem;
  }

  .rooms-grid {
    gap: 20px;
  }

  .room-card-image {
    height: 200px;
  }

  .room-card-content {
    padding: 18px;
  }

  .room-card-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .room-card-desc {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .room-card-amenities {
    gap: 6px;
    margin-bottom: 15px;
  }

  .room-amenity-tag {
    font-size: 0.68rem;
    padding: 4px 8px;
  }

  .room-price {
    font-size: 1.2rem;
  }

  .amenities-grid {
    gap: 10px;
  }

  .amenity-card {
    padding: 20px 12px;
    border-radius: 14px;
  }

  .amenity-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .amenity-icon svg {
    width: 22px;
    height: 22px;
  }

  .amenity-name {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .amenity-desc {
    font-size: 0.7rem;
  }

  .gallery-masonry {
    grid-auto-rows: 150px;
    gap: 8px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-text {
    font-size: 0.88rem;
    margin-bottom: 15px;
  }

  .testimonial-quote {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .booking-grid {
    gap: 15px;
  }

  .booking-form {
    padding: 22px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 0.72rem;
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    font-size: 0.88rem;
  }

  .contact-grid {
    gap: 15px;
  }

  .contact-card {
    padding: 16px;
    gap: 14px;
  }

  .contact-card-icon {
    width: 42px;
    height: 42px;
  }

  .contact-map {
    min-height: 280px;
  }

  .footer {
    padding: 40px 5% 80px;
  }

  .footer-grid {
    gap: 25px;
    margin-bottom: 35px;
  }

  .footer-desc {
    font-size: 0.82rem;
    margin-bottom: 15px;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-sub {
    margin-bottom: 30px;
    font-size: 0.9rem;
  }

  .scroll-indicator {
    bottom: 25px;
  }

  .btn-primary {
    padding: 13px 30px;
    font-size: 0.82rem;
  }

  .btn-secondary {
    padding: 13px 30px;
    font-size: 0.82rem;
  }

  .booking-content .section-subtitle {
    margin-bottom: 15px !important;
  }

  .booking-content .about-feature {
    padding: 8px;
    gap: 8px;
  }

  .booking-content .about-feature-icon {
    width: 30px;
    height: 30px;
  }

  .booking-content .about-feature span {
    font-size: 0.75rem;
  }

  .contact-info-cards {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 4%;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 80%;
    justify-content: center;
    padding: 12px 20px;
  }

  .stat-card {
    padding: 10px 12px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .about-stats {
    gap: 8px;
    bottom: 15px;
    left: 15px;
  }

  .about-image img {
    height: 220px;
  }

  .room-card-content {
    padding: 15px;
  }

  .testimonial-card {
    padding: 18px;
  }

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

  .amenity-card {
    padding: 16px 10px;
  }

  .amenity-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .amenity-icon svg {
    width: 20px;
    height: 20px;
  }

  .amenity-name {
    font-size: 0.78rem;
  }

  .amenity-desc {
    font-size: 0.65rem;
  }

  .gallery-masonry {
    grid-auto-rows: 130px;
  }

  .contact-card-icon {
    width: 38px;
    height: 38px;
  }

  .contact-card-icon svg {
    width: 18px;
    height: 18px;
  }
}