/* ============================================
   CHAHAT VILLA — Premium Luxury Website
   Design: Dark + Gold + Glassmorphism
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --gold: #c9a86c;
  --gold-light: #dfc9a0;
  --gold-dark: #a08040;
  --gold-glow: rgba(201, 168, 108, 0.15);
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-darker: rgba(0, 0, 0, 0.75);
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --green-whatsapp: #25D366;
  --green-whatsapp-dark: #1da851;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1280px;
  --gap: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.3s var(--ease-out);
  --transition-medium: 0.6s var(--ease-out);
  --transition-slow: 1s var(--ease-out);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

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

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

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

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white-50);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 24px 0;
  border: none;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  background: #f8f6f0;
  padding: 2px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.06);
  box-shadow: 0 0 15px rgba(201, 168, 108, 0.4);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-70);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

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

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

.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white-70);
  transition: color var(--transition-fast);
}

.nav-instagram svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform var(--transition-fast);
}

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

.nav-instagram:hover svg {
  transform: scale(1.15);
}

.nav-cta {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--gold) !important;
  border-radius: 50px;
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
}

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

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  transform-origin: center;
}

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

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

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

/* ============================================
   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: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 900px;
  padding: 48px 56px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--white-30);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  animation: fadeInDown 1s var(--ease-out) 0.3s backwards;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  animation: fadeInUp 1s var(--ease-out) 0.5s backwards;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

.hero-location {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 40px;
  animation: fadeInUp 1s var(--ease-out) 0.7s backwards;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s var(--ease-out) 0.9s backwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 30px rgba(201, 168, 108, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 108, 0.4);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--white-30);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--white-70);
  background: var(--white-10);
  transform: translateY(-2px);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

.btn-instagram-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.btn-instagram-pill:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 39, 67, 0.4);
  color: var(--white);
}

.btn-instagram-pill svg {
  width: 18px;
  height: 18px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s var(--ease-out) 1.2s backwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white-10);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s var(--ease-in-out) infinite;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

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

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

.about-description {
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: 40px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 108, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.highlight-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.highlight-text p {
  font-size: 0.82rem;
  color: var(--white-50);
  line-height: 1.5;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.about-img:first-child {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
}

.about-img:nth-child(2),
.about-img:nth-child(3) {
  border-radius: var(--radius-md);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

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

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

/* Gallery filter buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-50);
  background: transparent;
  border: 1px solid var(--white-10);
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--white-90);
  border-color: var(--white-30);
}

.filter-btn.active {
  color: var(--bg-primary);
  background: var(--gold);
  border-color: var(--gold);
}

/* Masonry-like gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.gallery-item.hidden {
  display: none;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
}

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

.gallery-item-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Span variations for visual interest */
.gallery-item.span-2 {
  grid-column: span 2;
}

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

/* Gallery: initially hide extra items */
.gallery-item.gallery-extra {
  display: none;
}

.gallery-grid.gallery-expanded .gallery-item.gallery-extra {
  display: block;
}

/* View More Button */
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.btn-view-more:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 108, 0.3);
}

.btn-view-more svg {
  transition: transform var(--transition-fast);
}

.btn-view-more.expanded svg {
  transform: rotate(180deg);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.9);
  transition: transform var(--transition-medium);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

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

.lightbox-close:hover {
  background: var(--white-30);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--white-30);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--white-50);
  letter-spacing: 2px;
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

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

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

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.amenity-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--white-05);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.amenity-card:hover {
  border-color: rgba(201, 168, 108, 0.2);
  transform: translateY(-4px);
  background: var(--bg-tertiary);
}

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

.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 108, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-fast);
}

.amenity-card:hover .amenity-icon {
  background: rgba(201, 168, 108, 0.25);
  border-color: rgba(201, 168, 108, 0.4);
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.amenity-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.82rem;
  color: var(--white-50);
  line-height: 1.6;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.experience-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.experience-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 400px;
  cursor: default;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.experience-card:hover .experience-card-overlay {
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
}

.experience-card-text {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.experience-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.experience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.experience-card p {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.6;
  opacity: 0.85;
}

/* ============================================
   CONTACT / BOOKING SECTION
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-inner .section-subtitle {
  margin: 0 auto 48px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--green-whatsapp);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--green-whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.btn-call:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201, 168, 108, 0.3);
}

.btn-call svg {
  width: 20px;
  height: 20px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-item {
  text-align: center;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 108, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-info-item h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 6px;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-10);
  height: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.7) contrast(1.2);
  transition: filter var(--transition-fast);
}

.contact-map:hover iframe {
  filter: grayscale(0.3) brightness(0.85) contrast(1.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--white-05);
}

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

.footer-text {
  font-size: 0.82rem;
  color: var(--white-30);
}

.footer-text a {
  color: var(--gold);
  transition: color var(--transition-fast);
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-50);
  transition: all var(--transition-fast);
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   INSTAGRAM SHOWCASE SECTION
   ============================================ */
.instagram-section {
  padding: 60px 0 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.instagram-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%);
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.instagram-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(220, 39, 67, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.instagram-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(201, 168, 108, 0.12);
  border: 1px solid rgba(201, 168, 108, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.instagram-badge svg {
  width: 15px;
  height: 15px;
}

.instagram-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.instagram-desc {
  font-size: 0.98rem;
  color: var(--white-70);
  max-width: 580px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
}

.btn-instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 25px rgba(220, 39, 67, 0.35);
}

.btn-instagram-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(220, 39, 67, 0.55);
  color: var(--white);
}

.btn-instagram-cta svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-socials {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.instagram-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
  transition: all var(--transition-fast);
  color: var(--white);
}

.instagram-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(220, 39, 67, 0.65);
}

.instagram-float svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.whatsapp-float {
  position: static;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: pulse-float 2s ease-in-out infinite;
}

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

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

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

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

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 200%; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse-float {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

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

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

  .about-grid {
    gap: 50px;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right var(--transition-fast);
    border-left: 1px solid var(--white-10);
  }

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

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  /* Mobile hero */
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-instagram-pill {
    width: 100%;
    justify-content: center;
  }

  .floating-socials {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .instagram-float {
    width: 46px;
    height: 46px;
  }

  .instagram-float svg {
    width: 20px;
    height: 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 360px;
  }

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

  /* Mobile gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  /* Mobile amenities */
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  /* Mobile experience */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-card {
    height: 300px;
  }

  /* Mobile contact */
  .contact-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn-whatsapp,
  .btn-call {
    width: 100%;
    justify-content: center;
  }

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

  .contact-map {
    height: 220px;
  }

  /* Mobile lightbox */
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  /* Mobile footer */
  .footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

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

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

  .hero-badge {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
}
