/* ============================================
   DIVINE PROFESSIONAL FAMILY SALON
   Premium Salon Website — Design System
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette — Rich Gold & Deep Charcoal */
  --gold-50:  #fefce8;
  --gold-100: #fef9c3;
  --gold-200: #fef08a;
  --gold-300: #fde047;
  --gold-400: #facc15;
  --gold-500: #d4a017;
  --gold-600: #b8860b;
  --gold-700: #92690a;
  --gold-800: #6b4e09;
  --gold-900: #422f07;

  /* Neutral Dark Palette */
  --dark-50:  #f8f8f8;
  --dark-100: #e8e8e8;
  --dark-200: #d4d4d4;
  --dark-300: #a3a3a3;
  --dark-400: #737373;
  --dark-500: #525252;
  --dark-600: #404040;
  --dark-700: #2a2a2a;
  --dark-800: #1a1a1a;
  --dark-900: #0f0f0f;
  --dark-950: #080808;

  /* Rose Accent */
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;

  /* Gradients */
  --gradient-gold:    linear-gradient(135deg, #d4a017 0%, #f5d372 50%, #d4a017 100%);
  --gradient-dark:    linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  --gradient-hero:    linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(26,26,26,0.85) 50%, rgba(15,15,15,0.95) 100%);
  --gradient-card:    linear-gradient(145deg, rgba(42,42,42,0.6) 0%, rgba(26,26,26,0.8) 100%);
  --gradient-overlay:  linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);

  /* Glass */
  --glass-bg:     rgba(26, 26, 26, 0.65);
  --glass-border: rgba(212, 160, 23, 0.15);
  --glass-blur:   blur(20px);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-elegant:  'Cormorant Garamond', Georgia, serif;

  /* Spacing Scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-xl:   0 16px 48px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 24px rgba(212,160,23,0.25);
  --shadow-glow: 0 0 40px rgba(212,160,23,0.15);

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--dark-950);
  color: var(--dark-200);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

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

ul, ol { list-style: none; }

/* ---------- Scrollbar Styling ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-900); }
::-webkit-scrollbar-thumb {
  background: var(--gold-600);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-500); }

/* ---------- Selection ---------- */
::selection {
  background: var(--gold-500);
  color: var(--dark-950);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-500);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark-50);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  margin: var(--space-lg) auto 0;
  border-radius: var(--radius-full);
  position: relative;
}

.section-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  color: var(--gold-500);
  background: var(--dark-950);
  padding: 0 10px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--dark-950);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 2px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-700);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes preloaderSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(500%); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-elegant);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--dark-300);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-200);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--duration-normal) var(--ease-out);
}

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

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

.nav-cta {
  background: transparent !important;
  border: 1.5px solid var(--gold-500) !important;
  color: var(--gold-400) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: all var(--duration-normal) var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--gold-500) !important;
  color: var(--dark-950) !important;
  box-shadow: var(--shadow-gold) !important;
}

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

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

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

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

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

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

@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

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

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,160,23,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-xl);
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-elegant);
  font-size: 0.9rem;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.hero-badge i {
  font-size: 0.75rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--dark-50);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.hero-title .gold { color: var(--gold-500); }

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--dark-300);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.8s var(--ease-out) 0.7s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.9s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  animation: fadeUp 0.8s var(--ease-out) 1.1s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--dark-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: var(--space-xs);
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: fadeUp 0.8s var(--ease-out) 1.3s both;
}

.hero-scroll-text {
  font-size: 0.7rem;
  color: var(--dark-400);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

@keyframes scrollLine {
  0%   { top: -50%; }
  100% { top: 150%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--dark-950);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--dark-200);
  border: 1.5px solid var(--dark-500);
}

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

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}

.btn i {
  font-size: 1.1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--dark-900);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

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

.about-img-main {
  width: 75%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

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

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

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--dark-900);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 3;
  background: var(--gold-500);
  color: var(--dark-950);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

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

.about-experience-badge .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about-content {
  padding-left: var(--space-xl);
}

.about-content .section-subtitle {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-content .section-divider {
  margin-left: 0;
}

.about-text {
  font-size: 1rem;
  color: var(--dark-300);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.92rem;
  color: var(--dark-200);
}

.about-feature i {
  color: var(--gold-500);
  font-size: 0.9rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--dark-950);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-glow);
}

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

.service-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  color: var(--gold-500);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-icon {
  background: var(--gold-500);
  color: var(--dark-950);
  transform: scale(1.08);
  box-shadow: var(--shadow-gold);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-50);
  margin-bottom: var(--space-sm);
}

.service-desc {
  font-size: 0.85rem;
  color: var(--dark-400);
  line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: var(--dark-900);
  overflow: hidden;
}

.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-400);
  background: transparent;
  border: 1px solid var(--dark-600);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--gold-500);
  color: var(--dark-950);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}

.gallery-masonry {
  columns: 4;
  column-gap: var(--space-md);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-out);
}

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

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--duration-slow) 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.8) 100%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

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

.gallery-item-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-50);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--dark-200);
  background: none;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-out);
  z-index: 10001;
}

.lightbox-close:hover { color: var(--gold-500); }

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--dark-200);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  border: none;
}

.lightbox-nav:hover {
  background: var(--gold-500);
  color: var(--dark-950);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews {
  background: var(--dark-950);
  overflow: hidden;
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-big-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
}

.reviews-stars {
  color: var(--gold-400);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--dark-400);
}

.reviews-track {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  padding-bottom: var(--space-xl);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 380px;
  max-width: 380px;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.review-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--dark-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-50);
}

.review-date {
  font-size: 0.78rem;
  color: var(--dark-500);
}

.review-stars {
  color: var(--gold-400);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.review-text {
  font-size: 0.92rem;
  color: var(--dark-300);
  line-height: 1.7;
  font-style: italic;
}

.review-quote {
  font-size: 2rem;
  color: var(--gold-500);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
  font-family: Georgia, serif;
}

/* ============================================
   BOOKING / CONTACT SECTION
   ============================================ */
.booking {
  background: var(--dark-900);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.booking-info {
  padding-right: var(--space-xl);
}

.booking-info .section-subtitle,
.booking-info .section-title {
  text-align: left;
}

.booking-info .section-divider {
  margin-left: 0;
}

.booking-text {
  font-size: 1rem;
  color: var(--dark-300);
  line-height: 1.8;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.booking-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.booking-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: var(--radius-sm);
  color: var(--gold-500);
  font-size: 1.1rem;
}

.booking-detail-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-50);
  margin-bottom: 2px;
}

.booking-detail-content p {
  font-size: 0.88rem;
  color: var(--dark-400);
}

.booking-detail-content a {
  color: var(--gold-500);
  font-weight: 500;
}

.booking-detail-content a:hover {
  color: var(--gold-400);
}

/* Booking Form */
.booking-form-wrapper {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
}

.booking-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-50);
  margin-bottom: var(--space-xs);
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--dark-400);
  margin-bottom: var(--space-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-sm);
  color: var(--dark-100);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  background: rgba(212,160,23,0.04);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--dark-500);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23737373' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--dark-800);
  color: var(--dark-100);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: var(--space-lg);
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

.form-whatsapp-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--dark-500);
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.form-whatsapp-note i { color: #25d366; }

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  position: relative;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) contrast(1.1) brightness(0.7);
  transition: filter var(--duration-normal) var(--ease-out);
}

.map-container:hover iframe {
  filter: grayscale(0.2) contrast(1) brightness(0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-950);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-lg);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--dark-400);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-700);
  border-radius: var(--radius-sm);
  color: var(--dark-300);
  font-size: 1rem;
  transition: all var(--duration-normal) var(--ease-out);
}

.footer-social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--dark-950);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-50);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--dark-400);
  transition: all var(--duration-fast) var(--ease-out);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer-links a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-links a i {
  font-size: 0.6rem;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.footer-links a:hover i {
  opacity: 1;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--dark-400);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-hours li:last-child { border-bottom: none; }

.footer-hours .day { color: var(--dark-300); }
.footer-hours .time { color: var(--gold-500); font-weight: 500; }

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

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

.footer-badges {
  display: flex;
  gap: var(--space-md);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: var(--dark-400);
  padding: 6px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--dark-700);
  border-radius: var(--radius-full);
}

.footer-badge i { color: var(--gold-500); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--duration-normal) var(--ease-out);
  animation: whatsappPulse 2s infinite;
}

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

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

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

.back-to-top:hover {
  background: var(--gold-500);
  color: var(--dark-950);
  transform: translateY(-4px);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

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

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

  .gallery-masonry {
    columns: 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--dark-900);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-2xl);
    gap: var(--space-lg);
    transition: right var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-xl);
  }

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

  .nav-links a {
    font-size: 1.05rem;
    width: 100%;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero Mobile */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    gap: var(--space-xl);
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  /* About Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-images {
    height: auto;
    display: flex;
    gap: var(--space-md);
  }

  .about-img-main {
    width: 60%;
    height: 300px;
    position: relative;
  }

  .about-img-secondary {
    position: relative;
    width: 40%;
    height: 300px;
    border: none;
  }

  .about-experience-badge {
    display: none;
  }

  .about-content {
    padding-left: 0;
  }

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

  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  /* Gallery Mobile */
  .gallery-masonry {
    columns: 2;
    column-gap: var(--space-sm);
  }

  .gallery-item {
    margin-bottom: var(--space-sm);
  }

  /* Reviews Mobile */
  .review-card {
    min-width: 300px;
    max-width: 300px;
  }

  /* Booking Mobile */
  .booking-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .booking-info {
    padding-right: 0;
  }

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

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating Buttons Mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }

  .back-to-top {
    right: 82px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Small Phone */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: var(--space-md);
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

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

  .gallery-masonry {
    columns: 1;
  }

  .reviews-rating-summary {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .review-card {
    min-width: 280px;
    max-width: 280px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}
