/* ==========================================================================
   Page 9 Salon - Luxury Beauty & Hair Studio
   Design System & Styling Master Sheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #F8F5F2;
  --bg-secondary: #FFFFFF;
  --bg-dark: #111111;
  --bg-dark-card: #1A1A1A;
  
  --gold-primary: #C8A96A;
  --gold-hover: #D6B36A;
  --gold-light: rgba(200, 169, 106, 0.12);
  --gold-glow: rgba(200, 169, 106, 0.35);
  
  --text-dark: #1D1D1D;
  --text-muted: #666666;
  --text-light: #F8F5F2;
  --text-white: #FFFFFF;
  
  --border-color: #ECECEC;
  --border-dark: #2A2A2A;
  --border-gold: rgba(200, 169, 106, 0.3);
  
  --success: #2E7D32;
  --btn-black: #111111;
  --btn-white: #FFFFFF;
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  /* Elevation Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 10px 25px rgba(200, 169, 106, 0.25);
  
  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Header Height */
  --header-height: 90px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

/* Custom Cursor */
.custom-cursor {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

.custom-cursor.hovered {
  width: 50px;
  height: 50px;
  background: var(--gold-light);
  border-color: var(--gold-hover);
}

@media (pointer: coarse) {
  .custom-cursor, .custom-cursor-dot {
    display: none !important;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F0ECE7;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-hover);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark h4 {
  color: var(--text-light);
}

.section-dark p {
  color: #A0A0A0;
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.sub-title::before, .sub-title::after {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--gold-primary);
}

.main-title {
  font-size: 2.75rem;
  margin-bottom: 18px;
}

.header-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-normal);
}

/* Button Variants */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #B89758 100%);
  color: var(--btn-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s ease;
  z-index: -1;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold-primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(200, 169, 106, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--text-dark);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--btn-white);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

.btn-outline-white:hover {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
  color: var(--btn-white);
  transform: translateY(-3px);
}

.btn-black {
  background-color: var(--btn-black);
  color: var(--btn-white);
}

.btn-black:hover {
  background-color: var(--gold-primary);
  color: var(--btn-white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1EBE57;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

/* Button Ripple Animation Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   4. PRELOADER & SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
#preloader {
  display: none !important;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Hide preloader completely in Elementor editor */
.elementor-editor-active #preloader {
  display: none !important;
}

.preloader-content {
  text-align: center;
}

.preloader-logo-img {
  max-height: 75px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px var(--gold-glow));
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(200, 169, 106, 0.15);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Top Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-hover));
  width: 0%;
  z-index: 100000;
  transition: width 0.1s ease-out;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 9999;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(236, 236, 236, 0.6);
  height: 80px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo Image */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

\.brand-logo-img {
  transition: var(--transition-fast);
  object-fit: contain;
}

.header.scrolled \.brand-logo-img {
  transition: var(--transition-fast);
  object-fit: contain;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary) !important;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 10001;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  margin-bottom: 6px;
  transition: var(--transition-fast);
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.header.scrolled .hamburger-btn span {
  background-color: var(--text-dark);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 9998;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--bg-dark);
  z-index: 10000;
  padding: calc(90px + env(safe-area-inset-top)) 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active {
  right: 0;
}

\.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10002;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.mobile-nav-close:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
  border-color: var(--gold-primary);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold-primary);
  padding-left: 10px;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.05);
  animation: hero-zoom 20s infinite alternate cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes hero-zoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.18); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
}

/* Floating Particles & Light Effects */
.hero-glow-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 2;
  animation: float-glow 8s infinite alternate ease-in-out;
}

@keyframes float-glow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 40px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4.25rem;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--gold-primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 40px auto;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-down-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-primary);
  border-radius: 14px;
  position: relative;
}

.scroll-down-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  animation: scroll-wheel 1.8s infinite ease-in-out;
}

@keyframes scroll-wheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION & STATS
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--bg-secondary);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.about-content-wrapper {
  padding-left: 20px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* Counter Statistics Bar */
.stats-bar {
  margin-top: 50px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background-color: var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--gold-primary);
  color: var(--btn-white);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.service-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(29, 29, 29, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   9. PRICE MENU SECTION WITH LIVE SEARCH & CLICKABLE PRICE CARDS
   -------------------------------------------------------------------------- */
.price-menu-container {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.price-search-bar {
  max-width: 500px;
  margin: 0 auto 40px auto;
  position: relative;
}

.price-search-input {
  width: 100%;
  padding: 16px 24px 16px 54px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.price-search-input:focus {
  border-color: var(--gold-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--gold-light);
}

.price-search-icon {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

/* Interactive Price Card */
.price-item-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.price-item-card:hover {
  background-color: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.price-item-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: var(--transition-fast);
}

.price-item-card:hover .price-item-name {
  color: var(--gold-primary);
}

.price-item-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.price-item-val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-align: right;
  white-space: nowrap;
}

.price-item-cta {
  font-size: 0.72rem;
  font-weight: 600;
  color: #25D366;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.price-item-card:hover .price-item-cta {
  opacity: 1;
  transform: translateX(2px);
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-hover));
  opacity: 0;
  transition: var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition-fast);
}

.why-card:hover .why-icon {
  background: var(--gold-primary);
  color: var(--btn-white);
  transform: rotateY(180deg);
}

.why-title {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   11. GALLERY & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 29, 29, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  color: var(--btn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  transform: scale(0.6);
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

.gallery-title {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold-primary);
}

.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   12. BEFORE & AFTER TRANSFORMATION SLIDER
   -------------------------------------------------------------------------- */
.ba-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-primary);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--gold-primary);
}

.ba-after-img {
  width: 900px;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--gold-primary);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  color: var(--btn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
}

.ba-label-before { right: 20px; }
.ba-label-after { left: 20px; }

/* --------------------------------------------------------------------------
   13. SPECIAL OFFERS & COUNTDOWN
   -------------------------------------------------------------------------- */
.offer-banner {
  background: linear-gradient(135deg, #1F1B16 0%, #111111 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  border: 1px solid var(--border-gold);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.countdown-box {
  display: flex;
  gap: 16px;
  margin: 30px 0;
}

.countdown-unit {
  background: rgba(200, 169, 106, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px;
  min-width: 80px;
  text-align: center;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.countdown-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   14. TEAM SECTION
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
  height: 340px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.06);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-exp {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. TESTIMONIALS CAROUSEL
   -------------------------------------------------------------------------- */
.testimonials-slider {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.client-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.client-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   16. BOOK APPOINTMENT FORM & CONTACT SECTION
   -------------------------------------------------------------------------- */
.booking-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.booking-form-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--gold-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Contact Info Box */
.contact-info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.map-container {
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   17. FOOTER & FLOATING ELEMENTS
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--bg-dark);
  color: #A0A0A0;
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #A0A0A0;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-primary);
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.85rem;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.35rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.12);
}

.floating-wa {
  background-color: #25D366;
}

.floating-call {
  background-color: var(--gold-primary);
}

.floating-top {
  background-color: var(--btn-black);
  opacity: 0;
  visibility: hidden;
}

.floating-top.visible {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   18. SCROLL REVEAL ANIMATION CLASSES
   -------------------------------------------------------------------------- */
.reveal, .reveal-left, .reveal-right {
  opacity: 1 !important;
  transform: none !important;
}

.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1 !important;
  transform: none !important;
}

/* Fix for Elementor Editor: always show elements */
.elementor-editor-active .reveal,
.elementor-editor-active .reveal-left,
.elementor-editor-active .reveal-right {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.elementor-editor-active .section {
  content-visibility: visible !important;
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-grid, .booking-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .offer-banner {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 80px 0;
  }

  .header {
    height: 76px;
  }

  .header.scrolled {
    height: 72px;
  }

  .header-container {
    padding: 0 6px;
  }

  .nav-menu {
    display: none;
  }
  
  .header-actions .btn-gold {
    display: none;
  }
  
  .hamburger-btn {
    display: block;
  }

  \.brand-logo-img {
  transition: var(--transition-fast);
  object-fit: contain;
}
  
  .hero {
    min-height: 640px;
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2.35rem;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }
  
  .main-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about-grid {
    gap: 32px;
  }

  .about-img-main {
    height: 360px;
  }

  .about-content-wrapper {
    padding-left: 0;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-badge {
    position: static;
    display: inline-block;
    margin-top: 18px;
    padding: 18px 22px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  
  .stat-item::after {
    display: none !important;
  }

  .services-tabs {
    gap: 10px;
  }

  .tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .services-grid,
  .menu-cards-grid,
  .team-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-width: 0;
  }

  .price-menu-tabs {
    gap: 10px;
  }

  .price-menu-tabs .tab-btn {
    width: 100%;
    justify-content: center;
  }
  
  .service-card,
  .price-item-card,
  .why-card,
  .testimonial-card,
  .booking-form-box,
  .contact-card {
    padding: 20px;
  }

  .price-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    min-width: 0;
  }

  .price-item-right {
    align-items: flex-start;
    width: 100%;
  }

  .price-item-val {
    white-space: normal;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .price-menu-container {
    padding: 24px;
  }

  .offer-banner {
    padding: 28px;
    gap: 24px;
  }

  .countdown-box {
    flex-wrap: wrap;
    gap: 10px;
  }

  .countdown-unit {
    min-width: 70px;
    flex: 1 1 calc(50% - 10px);
  }

  .ba-container {
    height: 320px;
  }

  .booking-contact-grid {
    gap: 30px;
  }

  .map-container {
    height: 220px;
  }

  .footer {
    padding: 60px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 72px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-tag {
    padding: 8px 16px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }

  .sub-title {
    font-size: 0.74rem;
    letter-spacing: 2px;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .price-menu-container,
  .booking-form-box,
  .contact-card,
  .testimonial-card {
    padding: 18px;
  }

  .mobile-nav-drawer {
    max-width: 100%;
    padding: 88px 24px 24px;
  }
}

/* ==========================================================================
   OFFICIAL RATE CARD BOOKLET & MENU VIEW SWITCHER STYLES
   ========================================================================== */

.menu-view-switcher {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.view-btn {
  padding: 14px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.view-btn:hover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.view-btn.active {
  background: linear-gradient(135deg, var(--color-gold) 0%, #b89324 100%);
  color: #0b0f19;
  border-color: var(--color-gold);
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

/* Booklet Cards Grid */
.menu-booklet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  transition: all 0.4s ease;
}

.menu-booklet-card {
  background: rgba(18, 24, 38, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.menu-booklet-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.2);
}

.booklet-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 0.73;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.booklet-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-booklet-card:hover .booklet-img-wrapper img {
  transform: scale(1.04);
}

.booklet-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 15, 25, 0.85);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.booklet-overlay-btn {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.booklet-img-wrapper:hover .booklet-overlay-btn {
  opacity: 1;
}

.booklet-overlay-btn span {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #b89324 100%);
  color: #0b0f19;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.booklet-info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.booklet-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 600;
}

.booklet-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}

.booklet-actions {
  display: flex;
  gap: 12px;
}

.booklet-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Lightbox Modal Enhancements for Menu */
.menu-lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(15px);
  padding: 20px;
}

.menu-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-lightbox-container {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.menu-lightbox-footer {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  background: rgba(18, 24, 38, 0.9);
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
}

.menu-lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold);
}

.menu-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 24, 38, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.menu-lightbox-nav:hover {
  background: var(--color-gold);
  color: #0b0f19;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.menu-lightbox-prev { left: -25px; }
.menu-lightbox-next { right: -25px; }

.menu-lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff4757;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
  transition: transform 0.2s ease;
  z-index: 11;
}

.menu-lightbox-close:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .menu-lightbox-prev { left: 5px; }
  .menu-lightbox-next { right: 5px; }
  .menu-lightbox-footer { flex-direction: column; gap: 10px; text-align: center; border-radius: 20px; }
}



/* ==========================================================================
   CONTACT FORM 7 LUXURY STYLING
   ========================================================================== */
.wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wpcf7-form p {
  margin: 0;
}
.wpcf7-form .full-width {
  grid-column: 1 / -1;
}
.wpcf7-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fdfdfd;
  transition: var(--transition-fast);
  color: var(--text-dark);
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: var(--bg-light);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.wpcf7-form input[type="submit"] {
  grid-column: 1 / -1;
  width: 100%;
  padding: 18px;
  background-color: #25d366; /* WhatsApp Green */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: 10px;
}
.wpcf7-form input[type="submit"]:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}
@media (max-width: 768px) {
  .wpcf7-form {
    grid-template-columns: 1fr;
  }
}
