/* ═══════════════════════════════════════════════════════════════
   Dr Hayat Benlemlih – Luxury Medical Aesthetic Clinic
   style.css – Logo-Matched Gold & Ivory Theme
═══════════════════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-soft: #D4B04C;
  --gold-light: #E8C96A;
  --gold-pale: #F0D98A;
  --cream: #FDFAF3;
  --cream-2: #F7F2E8;
  --cream-3: #EDE5D0;
  --ivory: #FAF6EC;
  --dark-gold: #8B6914;
  --warm-dark: #2C2416;
  --warm-mid: #5C4A22;
  --text-warm: #3A2E1A;
  --text-soft: #5C4A22;

  --glass-bg: rgba(201, 168, 76, 0.06);
  --glass-border: rgba(201, 168, 76, 0.25);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.18);
  --grad-gold: linear-gradient(135deg, #C9A84C, #E8C96A);
  --grad-gold-v: linear-gradient(180deg, #C9A84C, #D4B04C);
  --font-playfair: 'Playfair Display', serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --font-inter: 'Inter', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background-color: var(--ivory);
  color: var(--warm-dark);
  font-family: var(--font-inter);
  overflow-x: hidden;
}

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-soft); }

::selection { background: rgba(201, 168, 76, 0.25); color: var(--warm-dark); }

/* ═══════════════ UTILITIES ═══════════════ */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn-gold {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--warm-dark) !important;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}
.btn-shine:hover::after { left: 160%; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--warm-mid) !important;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.875rem;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--dark-gold) !important;
  transform: translateY(-2px);
}

.btn-magnetic { position: relative; }

/* ═══════════════ SECTION BADGES ═══════════════ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-gold);
  padding: 6px 14px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.08);
}

.section-badge::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grad-gold);
}

/* ═══════════════ SECTION GLOW ═══════════════ */
.section-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.08;
  background: var(--gold-soft);
}
.section-glow-left { top: -100px; left: -200px; }
.section-glow-right { top: -100px; right: -200px; }

/* ═══════════════ REVEAL ANIMATIONS ═══════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: opacity, transform;
}
.reveal-up.in-view  { animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
.reveal-left.in-view { animation: fadeLeft 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
.reveal-right.in-view { animation: fadeRight 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards; }

.hero-left .reveal-up,
.hero-right .reveal-up {
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-left .reveal-up { animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
.hero-right .reveal-up { animation: fadeRight 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards; }

/* ═══════════════ NAVBAR ═══════════════ */
#navbar {
  background: linear-gradient(180deg, rgba(0,0,0,.45), transparent);
  backdrop-filter: blur(8px);
}
#navbar.scrolled {
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 30px rgba(139, 105, 20, 0.1);
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(92, 74, 34, 0.8);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad-gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--dark-gold); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.ham-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
#hamburger.open .ham-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open .ham-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  background: rgba(253, 250, 243, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.mobile-drawer.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.drawer-link {
  color: var(--warm-dark);
  text-decoration: none;
  transition: all 0.3s;
}
.drawer-link:hover { color: var(--dark-gold); }

/* ═══════════════ HERO ═══════════════ */
#hero {
  position: relative;
  background: #0d0b07;
  overflow: hidden;
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,168,76,.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(201,168,76,.08), transparent 35%),
    linear-gradient(180deg, #161109 0%, #080704 100%);
}

/* MOBILE FIRST */
.hero-content-wrap {
  min-height: auto;
  padding: 110px 20px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.25);
  background: rgba(201,168,76,.08);
  color: #dcbf69;
  font-size: .62rem;
  letter-spacing: .12em;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dcbf69;
}

/* TITLE */
.hero-title {
  margin-top: 20px;
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.08;
  color: #fff;
  max-width: 500px;
}

.hero-title .gold-text { display: block; }

/* SUBTEXT */
.hero-sub {
  margin-top: 18px;
  max-width: 540px;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  line-height: 1.75;
}

/* BUTTONS */
.hero-buttons {
  width: 100%;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.hero-btn-primary,
.hero-btn-secondary {
  width: min(290px, 100%);
  padding: 15px;
  text-align: center;
}

.hero-btn-primary { background: var(--grad-gold); }
.hero-btn-secondary {
  border: 1px solid rgba(201,168,76,.35);
  color: #dcbf69 !important;
}

/* REMOVE EMPTY RIGHT SIDE ON MOBILE */
.hero-right { display: none; }

/* DESKTOP */
@media (min-width: 1024px) {
  .hero-content-wrap {
    min-height: 100vh;
    padding: 120px 40px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    text-align: left;
  }
  .hero-left { align-items: flex-start; }
  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
  .hero-right {
    display: flex;
    justify-content: flex-end;
  }
}

/* Hero Glass Card */
.hero-glass-card {
  position: relative;
  background: rgba(44, 36, 22, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.1);
  overflow: hidden;
}
@media (max-width: 400px) {
  .hero-glass-card { padding: 22px 16px; max-width: 100%; }
}

.hero-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
  pointer-events: none;
}

.card-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
}
@media (max-width: 400px) { .card-info-row { padding: 10px 12px; gap: 10px; } }

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  gap: 10px;
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.float-anim { animation: float 6s ease-in-out infinite; }

/* Scroll indicator */
.scroll-indicator { animation: float 2s ease-in-out infinite; }
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ═══════════════ ABOUT ═══════════════ */
.about-portrait-wrap { position: relative; }
.about-portrait-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-portrait-frame {
  position: relative;
  width: min(360px, 78vw);
  height: auto;
  aspect-ratio: 360 / 460;
  max-width: 100%;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.08), rgba(247, 242, 232, 0.9));
  box-shadow: 0 40px 100px rgba(139, 105, 20, 0.15), 0 0 0 1px rgba(201, 168, 76, 0.12);
}
@media (max-width: 640px) { .about-portrait-frame { width: min(300px, 85vw); } }

.about-shape-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.05);
}
.about-shape-2 {
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.03);
}
.about-exp-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: rgba(253, 250, 243, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(139, 105, 20, 0.12);
}

@media (max-width: 480px) {
  .about-shape-1, .about-shape-2 { display: none; }
  .about-exp-badge { position: static; display: inline-block; margin-top: 16px; }
}
@media (min-width: 481px) and (max-width: 1023px) {
  .about-exp-badge { right: 10px; bottom: 20px; }
}

/* About Highlight Cards */
.about-highlight-card {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.35s ease;
  cursor: default;
}
.about-highlight-card:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 105, 20, 0.12);
}
.about-highlight-card .font-medium {
  color: var(--warm-dark);
}
.about-highlight-icon { font-size: 1.5rem; }

/* About grids */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 380px) { .about-highlights-grid { grid-template-columns: 1fr; } }

/* ═══════════════ SERVICES ═══════════════ */
.service-card {
  position: relative;
  background: rgba(253, 250, 243, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 18px;
  padding: 28px 26px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  box-shadow: 0 2px 20px rgba(139, 105, 20, 0.06);
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(253, 250, 243, 1);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(139, 105, 20, 0.15), 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon-wrap {
  background: rgba(201, 168, 76, 0.2);
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-playfair);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.8rem;
  color: var(--text-warm);
  line-height: 1.7;
}
.service-arrow {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(201, 168, 76, 0.5);
  transition: all 0.3s ease;
}
.service-card:hover .service-arrow {
  color: var(--gold);
  transform: translateX(4px);
}
.service-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover .service-glow { opacity: 1; }

/* CTA Service Card */
.service-card-cta {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(247, 242, 232, 0.9));
  border-color: rgba(201, 168, 76, 0.3);
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.service-card-cta h3 { color: var(--warm-dark); }
.service-card-cta .text-xs { color: var(--text-soft); }
.service-cta-bg {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
  pointer-events: none;
}

/* ═══════════════ BEFORE / AFTER ═══════════════ */
.transform-card {
  background: rgba(253, 250, 243, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(139, 105, 20, 0.08);
}
.transform-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 60px rgba(139, 105, 20, 0.15);
  transform: translateY(-4px);
}

.transform-images {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 220px;
}
.transform-before, .transform-after {
  height: 100%;
  overflow: hidden;
}
.transform-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  transition: transform 0.5s ease;
}
.transform-card:hover .transform-placeholder { transform: scale(1.04); }

.before-placeholder { background: linear-gradient(160deg, #e8dfc8 0%, #d4c8a8 100%); }
.after-placeholder { background: linear-gradient(160deg, rgba(201, 168, 76, 0.15) 0%, rgba(247, 242, 232, 0.95) 100%); }

.transform-overlay-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(253, 250, 243, 0.85);
  color: var(--text-warm);
  border: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(8px);
}
.after-label {
  color: var(--dark-gold);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(253, 250, 243, 0.9);
}

.transform-arrow-divider { padding: 0 4px; z-index: 2; }
.transform-arrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-dark);
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}

.transform-caption {
  padding: 16px 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.transform-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
}
.transform-result { font-size: 0.7rem; color: var(--text-soft); text-align: right; }

/* Transformations CTA button row */
.transformations-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials-carousel { position: relative; }
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.testimonial-card {
  flex-shrink: 0;
  width: calc(33.33% - 14px);
  background: rgba(253, 250, 243, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(139, 105, 20, 0.06);
}
@media (max-width: 1024px) { .testimonial-card { width: calc(50% - 10px); } }
@media (max-width: 640px) { .testimonial-card { width: calc(100% - 0px); } }

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 12px 40px rgba(139, 105, 20, 0.12);
}

.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.875rem; color: var(--text-warm); line-height: 1.8; font-style: italic; margin-bottom: 24px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--warm-dark);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: var(--warm-dark); }
.testimonial-soin { font-size: 0.7rem; color: var(--dark-gold); margin-top: 2px; }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: transparent;
  color: var(--dark-gold);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-btn:hover { background: var(--grad-gold); color: var(--warm-dark); border-color: transparent; }

.testimonials-dots { display: flex; gap: 8px; align-items: center; }
.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dot.active { width: 20px; border-radius: 3px; background: var(--grad-gold); }

/* ═══════════════ RESERVATION ═══════════════ */
.reservation-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.reservation-form-card {
  background: rgba(253, 250, 243, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 60px rgba(139, 105, 20, 0.1);
}
@media (max-width: 640px) { .reservation-form-card { padding: 24px 20px; } }
@media (max-width: 768px) { .reservation-form-card { padding: 28px 20px; } }
@media (max-width: 380px) { .reservation-form-card { padding: 20px 16px; } }

.reservation-form-card h3 { color: var(--warm-dark); }

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-warm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.form-input {
  display: block;
  width: 100%;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--warm-dark);
  font-family: var(--font-inter);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: #8B7853; opacity: 1; }
.form-input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.07);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A84C'%3E%3Cpath d='M8 10.5L3 5.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
}
.form-select option { background: #fdfaf3; color: var(--warm-dark); }
.form-textarea { resize: vertical; min-height: 110px; }

/* Side Contact Cards */
.contact-side-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(253, 250, 243, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 16px;
  padding: 20px 22px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 2px 15px rgba(139, 105, 20, 0.06);
}
.contact-side-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(253, 250, 243, 1);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(139, 105, 20, 0.12);
}
.whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.04);
}
.contact-side-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.whatsapp-icon {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25D366;
}
.phone-icon, .location-icon {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* Contact side card text */
.contact-side-card .font-semibold { color: var(--warm-dark); }
.contact-side-card .text-text-gray { color: var(--text-soft); }
.contact-side-card .text-xs { color: var(--text-soft); }

/* Hours table text */
.contact-side-card .text-cream { color: var(--warm-dark) !important; }
.contact-side-card .text-text-gray.text-sm { color: var(--text-soft) !important; }

/* ═══════════════ CONTACT ═══════════════ */
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Map */
.map-placeholder {
  background: rgba(247, 242, 232, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: sepia(20%) saturate(0.9) brightness(0.95);
  transition: filter 0.4s ease;
}
.map-placeholder iframe:hover { filter: sepia(0%) saturate(1) brightness(1); }

/* ═══════════════ FOOTER ═══════════════ */
.footer-link { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.3s ease; }
.footer-link:hover { color: rgba(240, 217, 138, 0.6); }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 217, 138, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ═══════════════ WHATSAPP FAB ═══════════════ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5); }
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: fabPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes fabPing {
  0%   { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(1.6); opacity: 0; }
}

/* ═══════════════ TILT CARD ═══════════════ */
.tilt-card { transform-style: preserve-3d; }

/* ═══════════════ PARTICLES ═══════════════ */
#particles-canvas { z-index: 1; }

/* ═══════════════ SMOOTH SCROLL ═══════════════ */
.smooth-scroll { text-decoration: none; }

/* ═══════════════ SECTION BACKGROUNDS ═══════════════ */
#about { background-color: var(--cream); }
#services { background-color: var(--cream-2); }
#transformations { background-color: var(--cream); }
#testimonials { background-color: var(--ivory); }
#reservation { background-color: var(--cream-2); }
#contact { background-color: var(--cream); }
footer { background-color: var(--warm-dark); border-top: 1px solid rgba(201, 168, 76, 0.15); }

/* Footer text */
footer p, footer li { color: rgba(255, 255, 255, 0.82); }
footer .footer-link { color: rgba(255, 255, 255, 0.78); }
footer .footer-link:hover { color: var(--gold-light); }
footer .social-icon { background: rgba(201, 168, 76, 0.08); border-color: rgba(201, 168, 76, 0.2); color: rgba(240, 217, 138, 0.6); }
footer .social-icon:hover { background: rgba(201, 168, 76, 0.18); color: var(--gold-light); }
footer .text-text-gray { color: rgba(240, 217, 138, 0.6) !important; }

/* Footer brand text */
footer .font-playfair { color: var(--gold-light) !important; }
footer .font-semibold:not(.footer-link) { color: var(--cream) !important; }
footer h4 { color: var(--cream) !important; }

/* Navbar */
#navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,.92); }
#navbar.scrolled .nav-link { color: var(--warm-dark); }
#navbar:not(.scrolled) .font-playfair { -webkit-text-fill-color: var(--gold-soft); }
#navbar:not(.scrolled) .text-text-gray { color: rgba(255,255,255,0.6) !important; }

/* ═══════════════ GLOBAL TEXT FIXES ═══════════════ */
body { color: var(--warm-dark); }
h1, h2, h3, h4, h5, h6 { color: var(--warm-dark); }
p, li { color: var(--text-warm); }

/* About section text */
#about p { color: var(--text-warm); }
#about h2, #about h3 { color: var(--warm-dark); }

/* Services section text */
#services h2 { color: var(--warm-dark); }
#services p { color: var(--text-warm); }

/* Transformations section */
#transformations h2 { color: var(--warm-dark); }
#transformations p { color: var(--text-warm); }

/* Testimonials section – light background */
#testimonials h2 { color: var(--warm-dark); }
#testimonials p { color: var(--text-warm); }
.testimonial-text { color: var(--text-warm); }
.testimonial-name { color: var(--warm-dark); }
.testimonial-soin { color: var(--dark-gold); }

/* Reservation section */
#reservation h2 { color: var(--warm-dark); }
#reservation p { color: var(--text-warm); }

/* Contact section */
#contact h2 { color: var(--warm-dark); }
#contact p { color: var(--text-warm); }
.contact-info-item .font-semibold { color: var(--warm-dark); }
.contact-info-item .text-text-gray { color: var(--text-soft); }
.contact-info-item a { color: var(--text-soft); }
.contact-info-item a:hover { color: var(--dark-gold); }

/* Portrait image */
.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Transform images */
.transform-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

/* ═══════════════ HERO ANIMATED GRADIENT ═══════════════ */
.hero-gradient-bg {
  background: radial-gradient(ellipse at 30% 60%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
              linear-gradient(180deg, #2C2416 0%, #1A1508 100%);
}

/* Hours row text override for side cards on light backgrounds */
.contact-side-card span.text-cream,
.contact-side-card .text-cream {
  color: var(--warm-dark) !important;
}
.contact-side-card span.text-gold,
.contact-side-card .text-gold {
  color: var(--dark-gold) !important;
}