/* ===================================================================
   ANSTIME PREMIUM BARBER - CASABLANCA
   Design System & Luxury Creative 3D Stylesheet
   =================================================================== */

/* --- ROOT VARIABLES --- */
:root {
  /* Color Palette matching ANSTIME Logo */
  --gold-light: #F7E7B4;
  --gold-primary: #D4AF37;
  --gold-medium: #C59D3F;
  --gold-dark: #96742D;
  --gold-deep: #614B1B;
  
  --gold-gradient: linear-gradient(135deg, #FDF0CD 0%, #D4AF37 45%, #96742D 100%);
  --gold-gradient-shine: linear-gradient(90deg, #C59D3F 0%, #FFF3D1 50%, #C59D3F 100%);
  --gold-glass-bg: rgba(212, 175, 55, 0.06);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.3);
  --gold-glow-strong: 0 0 45px rgba(212, 175, 55, 0.55);

  --bg-black: #08080A;
  --bg-card: rgba(16, 16, 20, 0.78);
  --bg-card-hover: rgba(22, 22, 28, 0.9);
  --bg-surface: #111115;
  --bg-surface-elevated: #18181E;

  --border-subtle: rgba(212, 175, 55, 0.18);
  --border-active: rgba(212, 175, 55, 0.55);

  --text-main: #EDECE8;
  --text-muted: #9E9EA8;
  --text-dim: #70707A;

  --whatsapp-green: #25D366;
  --whatsapp-glow: 0 0 20px rgba(37, 211, 102, 0.4);

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBAL SETTINGS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-main);
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  background-color: var(--bg-black);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* --- 3D CANVAS & AMBIENT GLOW (ÉPURÉ & DOUX) --- */
.canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#webgl-canvas {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.5s ease;
}

.ambient-glow {
  position: fixed;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.glow-top {
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
}

.glow-bottom {
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, var(--gold-medium) 0%, transparent 70%);
}

/* ===================================================================
   PRELOADER ANIMÉ
   =================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #060608;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

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

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  max-width: 420px;
  padding: 2rem;
}

.preloader-emblem-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  perspective: 800px;
}

.preloader-logo-img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.6);
  z-index: 2;
  animation: logoPulse 3s infinite ease-in-out;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed var(--gold-primary);
  pointer-events: none;
}

.orbit-outer {
  width: 175px;
  height: 175px;
  border-color: rgba(212, 175, 55, 0.5);
  animation: spinClockwise 12s linear infinite;
}

.orbit-middle {
  width: 155px;
  height: 155px;
  border: 1.5px solid rgba(243, 224, 163, 0.4);
  border-left-color: var(--gold-light);
  border-right-color: transparent;
  animation: spinCounterClockwise 7s linear infinite;
}

.orbit-inner {
  width: 135px;
  height: 135px;
  border: 1px dotted rgba(212, 175, 55, 0.7);
  animation: spinClockwise 4s linear infinite;
}

.preloader-logo-glow {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  filter: blur(15px);
  animation: pulseGlow 2.5s infinite alternate;
}

.preloader-brand {
  margin-bottom: 1.5rem;
}

.preloader-brand .brand-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.2rem;
}

.preloader-brand .brand-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  font-weight: 600;
  opacity: 0.85;
  display: block;
}

.loader-bar-wrap {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 15px var(--gold-primary);
  border-radius: 999px;
  transition: width 0.15s ease-out;
}

.loader-percent {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
}

.loader-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* Animations Keyframes */
@keyframes spinClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.75);
  }
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

/* ===================================================================
   HEADER & NAVBAR
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  padding: 0.6rem 0;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-logo-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-link:hover .nav-logo-box {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.brand-spec {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Nav Menu Desktop */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #D6D6DF;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast), left var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-phone-quick {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.05);
  transition: all var(--transition-fast);
}

.btn-phone-quick i {
  color: var(--gold-primary);
}

.btn-phone-quick:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

/* Generic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0c0b09;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.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: left 0.6s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
}

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

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-light);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #0a0a0c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.btn-gold-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  background: var(--gold-gradient);
  color: #0c0b09;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
  transition: all var(--transition-fast);
}

.btn-gold-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.5);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  padding: 0;
}

.menu-toggle .bar {
  width: 100%;
  height: 2.5px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: #0d0d10;
  border-left: 1px solid var(--border-subtle);
  z-index: 1002;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 2rem;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.drawer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
}

.drawer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.drawer-brand p {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.25em;
}

.drawer-close {
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.mob-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #D6D6DF;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.mob-link i {
  color: var(--gold-primary);
  width: 20px;
  text-align: center;
}

.mob-link:hover, .mob-link.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  transform: translateX(6px);
}

.drawer-contact-card {
  margin-top: auto;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-contact-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.drawer-tel, .drawer-wa, .drawer-ig {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.drawer-wa {
  color: var(--whatsapp-green);
  font-weight: 600;
}

.drawer-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  z-index: 10;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.badge-icon {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-description strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.btn-glow {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.highlight-item i {
  font-size: 1.4rem;
  color: var(--gold-primary);
}

.highlight-item div {
  display: flex;
  flex-direction: column;
}

.highlight-item strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.highlight-item span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.highlight-divider {
  width: 1px;
  height: 32px;
  background: rgba(212, 175, 55, 0.2);
}

/* Hero 3D Badge Showcase */
.hero-3d-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  position: relative;
}

.floating-badge-card {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

.badge-card-inner {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(212, 175, 55, 0.35);
  animation: floatMedallion 6s infinite ease-in-out;
}

.badge-ring-outer {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.35);
  animation: spinClockwise 25s linear infinite;
}

.badge-ring-inner {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold-light);
  opacity: 0.6;
  animation: spinCounterClockwise 15s linear infinite;
}

.badge-image-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold-primary);
  background: #000;
  position: relative;
}

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

.badge-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.badge-caption {
  position: absolute;
  bottom: -20px;
  background: rgba(14, 14, 18, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transform: translateZ(30px);
}

.caption-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold-light);
}

.caption-stars {
  color: var(--gold-primary);
  font-size: 0.72rem;
  display: flex;
  gap: 0.15rem;
}

@keyframes floatMedallion {
  0%, 100% {
    transform: translateY(0px) rotateX(4deg) rotateY(-4deg);
  }
  50% {
    transform: translateY(-16px) rotateX(-4deg) rotateY(4deg);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: scrollWheel 2s infinite ease;
}

.scroll-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ===================================================================
   SECTION HEADERS
   =================================================================== */
section {
  position: relative;
  z-index: 10;
  padding: 6.5rem 0;
}

.section-header {
  margin-bottom: 3.8rem;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.section-subtitle i {
  font-size: 0.55rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.about-section {
  background: linear-gradient(180deg, transparent 0%, rgba(14, 14, 18, 0.7) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.about-card-gold-border {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-card-gold-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 2px;
  background: var(--gold-gradient);
}

.about-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.about-paragraph {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-size: 1rem;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}

.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.bullet-text strong {
  display: block;
  font-size: 0.98rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.bullet-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about-signature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  margin-top: 2rem;
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  overflow: hidden;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #FFFFFF;
}

.founder-title {
  font-size: 0.75rem;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Stats Card 3D */
.stats-card-3d {
  background: rgba(18, 18, 24, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card-3d:hover {
  border-color: var(--border-active);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-box {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.stat-box:hover {
  transform: translateY(-4px);
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold-primary);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.experience-badge-banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid var(--border-subtle);
}

.experience-badge-banner i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.experience-badge-banner h4 {
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.experience-badge-banner p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================================================================
   SERVICES SECTION
   =================================================================== */
.services-section {
  position: relative;
}

.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
}

.tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(14, 14, 18, 0.6);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold-primary);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #0c0b09;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.service-card.featured-service {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(180deg, rgba(24, 24, 30, 0.85) 0%, rgba(14, 14, 18, 0.85) 100%);
}

.featured-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold-gradient);
  color: #0c0b09;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-gradient);
  color: #08080a;
}

.service-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.service-price {
  display: none !important;
}

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.service-duration i {
  color: var(--gold-primary);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.service-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.service-perks li {
  font-size: 0.84rem;
  color: #D2D2DC;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-perks li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.btn-card-book {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
}

.btn-card-book:hover {
  background: var(--gold-gradient);
  color: #0a0a0d;
  border-color: transparent;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.custom-request-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(212, 175, 55, 0.06);
  border: 1px dashed var(--gold-primary);
  border-radius: 16px;
  padding: 1.8rem 2.2rem;
  gap: 1.5rem;
}

.box-text h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.box-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===================================================================
   GALERIE VISITE DU SALON (REAL PHOTOS)
   =================================================================== */
.gallery-section {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: #0d0d12;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  height: 390px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 35px rgba(212, 175, 55, 0.3);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.1) 0%, rgba(8, 8, 10, 0.4) 50%, rgba(8, 8, 10, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.05) 0%, rgba(8, 8, 10, 0.3) 45%, rgba(8, 8, 10, 0.92) 100%);
}

.gallery-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  background: rgba(8, 8, 10, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-info {
  margin-top: auto;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.gallery-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin: 0;
}

.btn-gallery-zoom {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.gallery-card:hover .btn-gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

.btn-gallery-zoom:hover {
  background: var(--gold-primary);
  color: #08080a;
  border-color: var(--gold-primary);
  transform: scale(1.1);
}

/* --- LIGHTBOX POPUP (FULLSCREEN & RESPONSIVE) --- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 1.5rem;
  box-sizing: border-box;
}

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

/* Hide WhatsApp floating widget & prevent header overlap when lightbox is active */
body.lightbox-open .floating-whatsapp-widget {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 9, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

/* Fixed Close Button - Always visible, top right, touch-friendly */
.lightbox-close-btn {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 100002;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 14, 18, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--gold-primary);
  color: #FFFFFF;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.3);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lightbox-close-btn:hover,
.lightbox-close-btn:active {
  background: var(--gold-primary);
  color: #08080a;
  transform: scale(1.1);
}

.lightbox-dialog {
  position: relative;
  z-index: 100001;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: lightboxPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

@keyframes lightboxPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-content {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(212, 175, 55, 0.2);
  background: #0d0d12;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  max-height: 85dvh;
}

.lightbox-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050508;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}

.lightbox-img {
  max-width: 100%;
  max-height: 52vh;
  max-height: 52dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  flex: 0 0 auto;
  padding: 1.2rem 1.6rem;
  background: #0c0c10;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  max-height: 35vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lightbox-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.lightbox-caption p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0 0 0.9rem 0;
}

/* Friendly Bottom Close Button inside caption */
.lightbox-close-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-close-action:hover,
.lightbox-close-action:active {
  background: var(--gold-primary);
  color: #08080a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #FFFFFF;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 100003;
}

.lightbox-nav:hover {
  background: var(--gold-primary);
  color: #08080a;
  border-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* --- ABOUT REAL PHOTO BANNER --- */
.about-real-photo-banner {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.6s ease;
}

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

.photo-overlay-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 0.35rem 0.8rem;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 30px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .gallery-card {
    height: 350px;
  }
  .lightbox-prev { left: -25px; }
  .lightbox-next { right: -25px; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-card {
    height: 320px;
  }
  .btn-gallery-zoom {
    opacity: 1;
    transform: scale(1);
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .gallery-lightbox {
    padding: 0.85rem;
  }
  .lightbox-dialog {
    max-width: 96vw;
    max-height: 88vh;
    max-height: 88dvh;
  }
  .lightbox-content {
    max-height: 82vh;
    max-height: 82dvh;
    border-radius: 16px;
  }
  .lightbox-img {
    max-height: 42vh;
    max-height: 42dvh;
  }
  .lightbox-caption {
    padding: 0.95rem 1.1rem;
    max-height: 40vh;
  }
  .lightbox-caption h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }
  .lightbox-caption p {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0.8rem;
  }
  .lightbox-close-action {
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
  }
  .lightbox-close-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
  }
  .lightbox-nav {
    display: none;
  }
}

/* ===================================================================
   WHY CHOOSE US SECTION
   =================================================================== */
.why-section {
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.7) 0%, transparent 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.why-card.active {
  border-color: var(--gold-primary);
  background: rgba(22, 22, 28, 0.95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.35);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.why-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.why-card:hover .why-card-icon {
  transform: scale(1.08) rotate(6deg);
  background: var(--gold-gradient);
  color: #0a0a0c;
}

.why-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.why-card:hover .why-toggle-btn {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.why-card.active .why-toggle-btn {
  transform: rotate(45deg);
  background: var(--gold-gradient);
  color: #0c0b09;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.why-card.active .why-card-title {
  color: var(--gold-light);
}

.why-card-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, transform 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}

.why-card.active .why-card-content {
  max-height: 280px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 1.1rem;
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.why-perk-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.why-perk-tag i {
  color: var(--gold-primary);
  font-size: 0.7rem;
}

.why-card-number {
  position: absolute;
  bottom: 0.8rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--transition-fast);
}

.why-card.active .why-card-number {
  color: rgba(212, 175, 55, 0.12);
}

/* ===================================================================
   CONTACT & RESERVATION SECTION
   =================================================================== */
.contact-section {
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}

.contact-glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-brand-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
}

.contact-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-fast);
}

.method-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
  transform: translateX(5px);
}

.method-item.highlight-wa {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.06);
}

.method-item.highlight-wa:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: var(--whatsapp-green);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-item.highlight-wa .method-icon {
  background: rgba(37, 211, 102, 0.18);
  color: var(--whatsapp-green);
}

.method-info {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.method-val {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 700;
}

.method-action {
  font-size: 0.75rem;
  color: var(--gold-primary);
}

.method-item.highlight-wa .method-action {
  color: var(--whatsapp-green);
}

.hours-box {
  background: rgba(14, 14, 18, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 14px;
  padding: 1.2rem;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.hours-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Booking Form Card */
.booking-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.8rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--whatsapp-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.form-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

#whatsapp-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.form-group label .req {
  color: #FF5A5F;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 10px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #111116;
  color: #FFFFFF;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  background: rgba(18, 18, 24, 0.95);
}

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

.btn-submit-wa {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-submit-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}

.form-security-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-security-note strong {
  color: var(--gold-light);
}

/* ===================================================================
   GOOGLE MAPS CONTAINER
   =================================================================== */
.maps-container-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.maps-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.maps-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.maps-title i {
  color: var(--gold-primary);
}

.maps-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.map-frame-box {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.map-frame-box iframe {
  width: 100%;
  height: 100%;
  filter: contrast(1.05) saturate(1.1);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  position: relative;
  z-index: 10;
  background: #060608;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: #0c0b09;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
}

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

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

.footer-links li a:hover i {
  transform: translateX(2px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-list li i {
  color: var(--gold-primary);
  margin-top: 4px;
}

.footer-contact-list li a:hover {
  color: var(--gold-light);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom-row strong {
  color: var(--gold-light);
}

.gold-heart {
  color: var(--gold-primary);
}

.footer-designer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.credit-link {
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.credit-link i {
  color: var(--gold-primary);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.credit-link:hover {
  background: var(--gold-gradient);
  color: #0c0b09;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.credit-link:hover i {
  color: #0c0b09;
}

/* ===================================================================
   FLOATING WHATSAPP BUTTON
   =================================================================== */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.wa-float-btn {
  display: flex;
  align-items: center;
  position: relative;
}

.wa-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float-btn:hover .wa-circle {
  transform: scale(1.1);
}

.wa-pulse {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-green);
  animation: pulseWa 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
  z-index: 1;
}

.wa-tooltip {
  position: absolute;
  right: 76px;
  background: rgba(14, 14, 18, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 1rem;
  border-radius: 10px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.wa-tooltip span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

.wa-tooltip small {
  font-size: 0.72rem;
  color: var(--whatsapp-green);
}

.wa-float-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulseWa {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===================================================================
   RESPONSIVE MEDIA QUERIES
   =================================================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.9rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .nav-menu, .btn-phone-quick, .btn-header-book {
    display: none !important;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-highlights {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.8rem 0;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-card-gold-border {
    padding: 2rem 1.5rem;
  }
  
  /* Compact Contact Section on Tablet & Mobile */
  .contact-section {
    padding: 3.5rem 0;
  }
  .contact-wrapper {
    gap: 1.8rem;
    margin-bottom: 2.5rem;
  }
  .contact-glass-card {
    padding: 1.8rem 1.4rem;
    border-radius: 16px;
  }
  .booking-form-card {
    padding: 1.8rem 1.4rem;
    border-radius: 16px;
  }
  .form-title {
    font-size: 1.35rem;
  }
  .form-desc {
    font-size: 0.88rem;
    margin-bottom: 1.3rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  #whatsapp-booking-form {
    gap: 1rem;
  }
  .maps-container-wrapper {
    padding: 1.4rem;
    border-radius: 16px;
  }
  .maps-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .maps-header-row .btn {
    width: 100%;
    justify-content: center;
  }
  .map-frame-box {
    height: 280px;
    border-radius: 12px;
  }
  
  .custom-request-box {
    flex-direction: column;
    text-align: center;
  }
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .hero-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  .highlight-divider {
    display: none;
  }
  .floating-badge-card {
    width: 290px;
    height: 290px;
  }
  .badge-card-inner {
    width: 250px;
    height: 250px;
  }
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  section {
    padding: 2.8rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .section-lead {
    font-size: 0.9rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .btn {
    width: 100%;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number-wrap {
    font-size: 2.2rem;
  }

  /* Compact Ultra Mobile Contact & Form */
  .contact-section {
    padding: 2.5rem 0;
  }
  .contact-wrapper {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .contact-glass-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
    gap: 1.2rem;
  }
  .contact-card-header {
    gap: 0.8rem;
    padding-bottom: 1rem;
  }
  .contact-brand-img {
    width: 46px;
    height: 46px;
  }
  .contact-card-title {
    font-size: 1.15rem;
  }
  .contact-card-sub {
    font-size: 0.78rem;
  }
  .contact-methods {
    gap: 0.65rem;
  }
  .method-item {
    padding: 0.7rem 0.8rem;
    gap: 0.75rem;
    border-radius: 10px;
  }
  .method-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .method-label {
    font-size: 0.68rem;
  }
  .method-val {
    font-size: 0.88rem;
    word-break: break-word;
  }
  .method-action {
    font-size: 0.7rem;
  }
  .hours-box {
    padding: 0.9rem;
    border-radius: 10px;
  }
  .hours-header {
    font-size: 0.78rem;
  }
  .hours-row {
    font-size: 0.85rem;
  }
  .hours-note {
    font-size: 0.72rem;
  }

  /* Form Styling Mobile */
  .booking-form-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }
  .form-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.6rem;
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    margin-bottom: 0.9rem;
  }
  .form-title {
    font-size: 1.22rem;
    margin-bottom: 0.35rem;
  }
  .form-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  #whatsapp-booking-form {
    gap: 0.85rem;
  }
  .form-group {
    gap: 0.3rem;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  .form-group input, 
  .form-group select, 
  .form-group textarea {
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  .form-group textarea {
    min-height: 65px;
  }
  .btn-submit-wa {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    border-radius: 10px;
    margin-top: 0.3rem;
  }
  .form-security-note {
    font-size: 0.7rem;
    line-height: 1.4;
    flex-direction: column;
    text-align: center;
  }

  /* Map Container Mobile */
  .maps-container-wrapper {
    padding: 1rem;
    border-radius: 14px;
  }
  .maps-title {
    font-size: 1.1rem;
  }
  .maps-sub {
    font-size: 0.78rem;
  }
  .map-frame-box {
    height: 230px;
    border-radius: 10px;
  }

  /* Floating WhatsApp */
  .floating-whatsapp-widget {
    bottom: 1.2rem;
    right: 1.2rem;
  }
  .wa-circle {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}
