/* ============================================================
   מאור קוסקס - Barber Studio | programiel.com Dark Style
   Dark Theme + Purple/Gold + Hebrew RTL
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Dark palette - programiel.com inspired */
  --bg:           #080812;
  --bg-2:         #0d0d1a;
  --bg-3:         #12121f;
  --bg-card:      #0f0f1e;
  --bg-card-2:    #141428;

  /* Purple primary */
  --purple:       #7c3aed;
  --purple-light: #a78bfa;
  --purple-dim:   #4c1d95;
  --purple-glow:  rgba(124, 58, 237, 0.35);

  /* Gold accent - barber luxury */
  --gold:         #f59e0b;
  --gold-light:   #fcd34d;
  --gold-dark:    #b45309;
  --gold-glow:    rgba(245, 158, 11, 0.3);

  /* Text */
  --text:         #f1f5f9;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;

  /* Borders */
  --border:       rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);

  /* Barber pole colors */
  --pole-red:     #dc2626;
  --pole-white:   #f8fafc;
  --pole-blue:    #2563eb;

  /* Utilities */
  --success:      #22c55e;
  --danger:       #ef4444;
  --radius:       0.75rem;
  --radius-lg:    1rem;
  --radius-xl:    1.5rem;
  --radius-full:  9999px;
  --font:         'Heebo', sans-serif;
  --transition:   all 0.25s ease;
}

/* ── Reset (scoped to landing sections) ───────────────────── */
html { scroll-behavior: smooth; }
.landing-section a { color: inherit; text-decoration: none; transition: var(--transition); }
.landing-section ul { list-style: none; }
.landing-section img { max-width: 100%; }
.hero a { color: inherit; text-decoration: none; }
.hero ul { list-style: none; }
.navbar a { color: inherit; text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ── Layout ─────────────────────────────────────────────────── */
.landing-section > .container,
.hero > .container,
.navbar .container,
.booking-section > .booking-section-title {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.w-full { width: 100%; justify-content: center; }

/* ── Buttons (scoped to landing/hero/navbar) ─────────────── */
.landing-section .btn,
.hero .btn,
.navbar .btn,
.booking-section .booking-section-title .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.landing-section .btn-lg,
.hero .btn-lg,
.navbar .btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

.landing-section .btn-primary,
.hero .btn-primary,
.navbar .btn-primary,
.booking-section .btn-primary {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px var(--purple-glow);
}
.landing-section .btn-primary:hover,
.hero .btn-primary:hover,
.navbar .btn-primary:hover,
.booking-section .btn-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, var(--purple));
  box-shadow: 0 8px 32px var(--purple-glow);
  transform: translateY(-2px);
  color: #fff;
}

.navbar .btn-ghost,
.landing-section .btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-light);
  color: var(--text-muted);
}
.navbar .btn-ghost:hover,
.landing-section .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.landing-section .btn-outline,
.hero .btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-muted);
}
.landing-section .btn-outline:hover,
.hero .btn-outline:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  background: rgba(124,58,237,0.08);
}

.landing-section .btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}
.landing-section .btn-outline-white:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── Glass card ─────────────────────────────────────────────── */
.glass-dark {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

/* ── Section helpers ─────────────────────────────────────────── */
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--purple-light);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.sec-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.sec-cta { text-align: center; margin-top: 2.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.sec-cta p { color: var(--text-dim); font-size: 0.9rem; }

/* ── Gradient text ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes floatDelay {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-8px) rotate(-5deg); }
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:0.4; transform: scale(1.5); }
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity:1; }
  50%      { transform: translateY(8px); opacity:0.4; }
}
@keyframes poleRotate {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}

.anim-float      { animation: float 3.5s ease-in-out infinite; }
.anim-float-delay { animation: float 3.5s ease-in-out 1.5s infinite; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(8,8,18,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,18,0.97);
  border-bottom-color: rgba(124,58,237,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Barber Pole Logo */
.brand-pole {
  width: 32px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.brand-pole.small { width: 24px; height: 32px; border-radius: 3px; }
.pole-stripe { flex: 1; }
.stripe-red   { background: var(--pole-red); }
.stripe-white { background: var(--pole-white); }
.stripe-blue  { background: var(--pole-blue); }

.brand-txt { display: flex; flex-direction: column; }
.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--purple-light); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,0.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 100%, rgba(245,158,11,0.06) 0%, transparent 50%),
              var(--bg);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(124,58,237,0.12);
  top: -200px; right: -150px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(245,158,11,0.06);
  bottom: -100px; left: -100px;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Hero text */
.hero-text { animation: fadeUp 0.7s ease-out both; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 1.5rem;
}
.tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hstat { display: flex; flex-direction: column; gap: 0.2rem; }
.hstat-num {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hstat-lbl { font-size: 0.75rem; color: var(--text-dim); font-weight: 500; }
.hstat-sep { width: 1px; height: 36px; background: var(--border-light); }

/* Hero Mockup */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.7s ease-out 0.2s both;
}

/* CSS Barber Pole decoration */
.deco-pole {
  position: absolute;
  top: -20px;
  left: -10px;
  width: 20px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  z-index: 2;
}
.pole-inner {
  width: 100%; height: 100%;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.pole-helix {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--pole-red)   0px,
    var(--pole-red)   10px,
    var(--pole-white) 10px,
    var(--pole-white) 20px,
    var(--pole-blue)  20px,
    var(--pole-blue)  30px,
    var(--pole-white) 30px,
    var(--pole-white) 40px
  );
  background-size: 40px 40px;
  animation: poleRotate 1.5s linear infinite;
}

/* Booking mock card */
.mock-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  width: 100%;
  max-width: 370px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.1);
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
}
.mock-card:hover { transform: rotate(0deg); }

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #ffbd2e; }
.mock-dots span:nth-child(3) { background: #28c840; }
.mock-title { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); }

.mock-services { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.mock-svc {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.83rem;
}
.mock-svc > i:first-child { color: var(--text-dim); font-size: 0.9rem; flex-shrink: 0; }
.mock-svc div { flex: 1; }
.mock-svc strong { display: block; color: var(--text); font-size: 0.83rem; }
.mock-svc small { color: var(--text-dim); font-size: 0.72rem; }
.mock-svc.active {
  border-color: var(--purple);
  background: rgba(124,58,237,0.08);
}
.mock-svc.active > i:first-child { color: var(--purple-light); }
.check { color: var(--purple-light) !important; font-size: 0.9rem; }

.mock-slots { margin-bottom: 1.25rem; }
.slots-label { font-size: 0.75rem; font-weight: 600; color: var(--text-dim); margin-bottom: 0.6rem; }
.slots-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.slot {
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
}
.slot:hover { border-color: var(--purple); color: var(--purple-light); }
.slot-active { background: var(--purple); border-color: var(--purple); color: #fff; }
.slot-taken { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }

/* Float badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  white-space: nowrap;
  z-index: 3;
}
.fb-green {
  background: var(--success);
  color: #fff;
  top: -15px; left: 20px;
}
.fb-dark {
  background: var(--bg-card-2);
  border: 1px solid var(--border-light);
  color: var(--text);
  bottom: -10px; right: 20px;
}

/* Scroll down */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid var(--border-light);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-down span {
  width: 4px; height: 10px;
  border-radius: 2px;
  background: var(--purple-light);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--bg-2);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-dim), transparent);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.svc-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.svc-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  background: var(--bg-card-2);
}
.svc-card.svc-featured {
  border-color: rgba(245,158,11,0.3);
  background: linear-gradient(145deg, var(--bg-card-2), rgba(245,158,11,0.04));
}
.svc-card.svc-featured:hover {
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 12px 40px rgba(245,158,11,0.1);
}

.svc-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
}

.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.svc-icon.purple {
  background: rgba(124,58,237,0.12);
  color: var(--purple-light);
  border: 1px solid rgba(124,58,237,0.2);
}
.svc-icon.gold {
  background: rgba(245,158,11,0.1);
  color: var(--gold-light);
  border: 1px solid rgba(245,158,11,0.2);
}

.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.svc-card > p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

.svc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.svc-dur i { margin-left: 0.3rem; }
.svc-price { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.gold-txt {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(124,58,237,0.1);
  color: var(--purple-light);
  border: 1px solid rgba(124,58,237,0.2);
  transition: var(--transition);
}
.svc-btn:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.svc-btn-gold {
  background: rgba(245,158,11,0.1);
  color: var(--gold-light);
  border-color: rgba(245,158,11,0.2);
}
.svc-btn-gold:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.svc-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: rgba(124,58,237,0.12);
  filter: blur(20px);
  opacity: 0;
  transition: var(--transition);
  border-radius: 50%;
}
.svc-glow.glow-gold { background: rgba(245,158,11,0.12); }
.svc-card:hover .svc-glow { opacity: 1; }

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0920 0%, #0f0f1e 50%, #12090d 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-glow-l {
  position: absolute;
  left: 5%; top: 50%;
  transform: translateY(-50%);
  width: 300px; height: 200px;
  background: rgba(124,58,237,0.12);
  filter: blur(60px);
  border-radius: 50%;
}
.stats-glow-r {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 300px; height: 200px;
  background: rgba(245,158,11,0.08);
  filter: blur(60px);
  border-radius: 50%;
}
.stats-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  align-items: center;
}
.stat-blk { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.stat-n {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-l { font-size: 0.9rem; color: var(--text-dim); font-weight: 500; }
.stat-div { width: 1px; height: 60px; background: var(--border-light); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0;
  background: var(--bg);
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-card-wrap { position: relative; }
.about-card {
  padding: 2rem;
  text-align: center;
}
.about-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dim), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px var(--purple-glow);
}
.about-card h3 {
  font-size: 1.3rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.25rem;
}
.about-role {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  color: var(--purple-light);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.about-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--text-muted);
}
.chip-gold { border-color: rgba(245,158,11,0.3); color: var(--gold-light); background: rgba(245,158,11,0.06); }
.hours-box { background: rgba(255,255,255,0.03); border-radius: var(--radius); padding: 1rem; text-align: right; border: 1px solid var(--border); }
.hours-title { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.hour-row { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.82rem; color: var(--text-dim); border-bottom: 1px solid rgba(255,255,255,0.04); }
.hour-row:last-child { border-bottom: none; }
.hour-row.closed { color: var(--danger); opacity: 0.6; }

.deco-scissors {
  position: absolute;
  bottom: -24px; left: -24px;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px var(--gold-glow);
}

.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text .sec-title { text-align: right; }
.about-text > p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; }

.feat-list { display: flex; flex-direction: column; gap: 0.9rem; margin: 0.25rem 0; }
.feat-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.feat-icon {
  width: 36px; height: 36px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--purple-light);
  flex-shrink: 0;
}
.feat-gold { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); color: var(--gold-light); }
.feat-item strong { display: block; font-size: 0.92rem; color: var(--text); font-weight: 700; margin-bottom: 0.15rem; }
.feat-item p { font-size: 0.82rem; color: var(--text-dim); margin: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.steps-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  max-width: 280px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  background: var(--bg-card-2);
}
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dim));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 12px var(--purple-glow);
}
.step-icon { font-size: 2.5rem; color: var(--purple-light); margin: 0.75rem 0; }
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.step-line { font-size: 1.2rem; color: var(--border-light); flex-shrink: 0; }
.steps-action { text-align: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  transition: var(--transition);
  cursor: pointer;
}
.gal-item:hover { transform: scale(1.02); }
.gal-tall { grid-row: span 2; aspect-ratio: auto; }
.gal-wide { grid-column: span 2; aspect-ratio: auto; }
.gal-ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-3));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-dim);
  transition: var(--transition);
}
.gal-item:hover .gal-ph {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), var(--bg-card-2));
  color: var(--purple-light);
  border-color: rgba(124,58,237,0.25);
}
.gal-ph span { font-size: 0.82rem; font-weight: 600; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 6rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.rev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.rev-card:hover {
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-3px);
  background: var(--bg-card-2);
}
.rev-card.rev-feat {
  border-color: rgba(245,158,11,0.25);
  background: linear-gradient(145deg, var(--bg-card-2), rgba(245,158,11,0.03));
}
.rev-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.rev-card > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; flex: 1; font-style: italic; }
.rev-author { display: flex; align-items: center; gap: 0.75rem; }
.rev-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.purple-av { background: linear-gradient(135deg, var(--purple-dim), var(--purple)); color: #fff; }
.gold-av   { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #fff; }
.rev-author strong { display: block; font-size: 0.88rem; color: var(--text); font-weight: 700; }
.rev-author small  { font-size: 0.75rem; color: var(--text-dim); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,0.12), transparent 70%),
              var(--bg-3);
}
.cta-glow-1 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(124,58,237,0.12);
  filter: blur(80px);
  top: -100px; right: 5%;
}
.cta-glow-2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(245,158,11,0.07);
  filter: blur(60px);
  bottom: -80px; left: 5%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-icon { color: var(--gold-light); }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--text); }
.cta-inner p { font-size: 1.05rem; color: var(--text-muted); max-width: 480px; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .sec-title { text-align: right; font-size: 1.8rem; }
.cinfo-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 2rem; }
.cinfo-item { display: flex; align-items: flex-start; gap: 1rem; }
.cinfo-icon {
  width: 42px; height: 42px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--purple-light);
  flex-shrink: 0;
}
.cinfo-icon.whatsapp { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.2); color: #4ade80; }
.cinfo-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dim); margin-bottom: 0.2rem; }
.cinfo-item a, .cinfo-item span { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
.cinfo-item a:hover { color: var(--purple-light); }
.social-row { display: flex; gap: 0.6rem; }
.soc-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.soc-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}
.soc-sm { width: 34px; height: 34px; font-size: 0.9rem; }

.contact-book {
  padding: 2rem;
}
.contact-book h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--text);
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.contact-book > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.quick-nav { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.quick-nav > p { font-size: 0.75rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
.quick-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
}
.quick-nav a:hover { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.15); color: var(--purple-light); }
.quick-nav a i { color: var(--text-dim); width: 16px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  background: rgba(124,58,237,0.06);
  filter: blur(60px);
  border-radius: 50%;
}
.footer-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-dim); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--purple-light); }
.footer-cinfo { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-cinfo p { font-size: 0.82rem; color: var(--text-dim); display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-cinfo i { color: var(--purple-light); font-size: 0.8rem; margin-top: 0.1rem; flex-shrink: 0; }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--text-dim); transition: var(--transition); }
.footer-links a:hover { color: var(--purple-light); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 1.75rem; left: 1.75rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dim));
  color: #fff;
  border: none; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px var(--purple-glow);
  transition: var(--transition);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px var(--purple-glow); }

/* ============================================================
   RESPONSIVE - Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-p { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-mockup { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card-wrap { max-width: 380px; margin: 0 auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-div:nth-child(4) { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,8,18,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; width: 100%; font-size: 1rem; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .svc-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-div { display: none; }
  .steps-wrap { flex-direction: column; align-items: center; }
  .step-line { transform: rotate(90deg); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-tall, .gal-wide { grid-row: auto; grid-column: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
