/* =============================================
   DoDY – Global Styles
   Color: Deep Plum + Soft Rose + Warm Gold
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:      #6B2D8B;   /* Deep Plum */
  --primary-dark: #4A1D63;
  --primary-light:#9B59B6;
  --secondary:    #E8A0BF;   /* Soft Rose */
  --secondary-dark:#C2699A;
  --accent:       #D4A017;   /* Warm Gold */
  --accent-light: #F5C842;
  --bg:           #FAF8FA;
  --bg-dark:      #F0EBF4;
  --white:        #FFFFFF;
  --text:         #2C2C2C;
  --text-muted:   #7A7A8A;
  --text-light:   #B0A8B9;
  --border:       #E8E0EE;
  --success:      #27AE60;
  --shadow-sm:    0 2px 8px rgba(107,45,139,0.10);
  --shadow-md:    0 4px 20px rgba(107,45,139,0.15);
  --shadow-lg:    0 8px 40px rgba(107,45,139,0.20);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    30px;
  --transition:   0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: 'Inter', sans-serif; }
input, select, textarea { font-family: 'Inter', sans-serif; outline: none; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; color: var(--text); margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header .tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212,160,23,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.4); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-purple { background: var(--bg-dark); color: var(--primary); }
.badge-rose   { background: #FDE8F2; color: var(--secondary-dark); }
.badge-gold   { background: #FEF5D9; color: var(--accent); }
.badge-green  { background: #E8F8EF; color: var(--success); }

/* ---- Rating ---- */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--success);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}
.rating svg { width: 12px; height: 12px; fill: currentColor; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--bg-dark);
  color: var(--primary);
}

.nav-location {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.nav-location:hover { border-color: var(--primary); color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-icon-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: var(--primary); color: var(--white); }
.nav-icon-btn .badge-dot {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--secondary-dark);
  border-radius: 50%;
  border: 2px solid var(--white);
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-nav-items {
  display: flex;
  justify-content: space-around;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 16px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.mobile-nav-item .icon { font-size: 1.3rem; }
.mobile-nav-item.active, .mobile-nav-item:hover { color: var(--primary); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1A0A2E 0%, #4A1D63 40%, #6B2D8B 70%, #9B59B6 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,160,191,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(155,89,182,0.2) 0%, transparent 40%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; }
.hero-shape-3 { width: 200px; height: 200px; top: 30%; right: 10%; background: rgba(212,160,23,0.06); }

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-pill span { width: 6px; height: 6px; background: var(--accent-light); border-radius: 50%; animation: pulse 1.5s infinite; }

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

.hero-h1 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-h1 .highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
}

/* Hero Search Box */
.hero-search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  overflow: hidden;
}
.hero-search-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-right: 1px solid var(--border);
  min-width: 160px;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}
.hero-search-location .icon { color: var(--primary); font-size: 1rem; }
.hero-search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
.hero-search-input-wrap input {
  flex: 1;
  border: none;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
}
.hero-search-input-wrap input::placeholder { color: var(--text-light); }
.hero-search-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.hero-search-btn:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: scale(1.02); }

/* Popular Tags */
.hero-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.hero-popular-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.hero-tag {
  padding: 5px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  border-radius: 20px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.hero-tag:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }

/* Hero Right – Stats Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-visual {
  position: relative;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  text-align: center;
  transition: var(--transition);
}
.hero-stat-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.hero-stat-card .stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.hero-stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
}
.hero-stat-card .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 4px;
}

.hero-live-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.live-dot {
  width: 10px; height: 10px;
  background: #2ECC71;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.hero-live-badge .text { font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.hero-live-badge .text strong { color: var(--white); }

/* =============================================
   CATEGORY SECTION
   ============================================= */
.categories { background: var(--white); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cat-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}
.cat-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-card:hover::before { opacity: 0.05; }
.cat-card:hover .cat-icon-wrap { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.cat-card:hover .cat-icon-wrap .icon { filter: brightness(10); }

.cat-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.cat-icon-wrap .icon { font-size: 2rem; }

.cat-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.cat-card p { font-size: 0.82rem; color: var(--text-muted); }
.cat-count {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 10px;
}

/* =============================================
   POPULAR SERVICES
   ============================================= */
.popular-services { background: var(--bg); }

.services-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-dark), var(--border));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.service-card-img .svc-emoji { font-size: 4rem; }
.service-card-img .svc-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.service-card-body { padding: 16px; }
.service-card-body h4 { font-size: 1rem; margin-bottom: 4px; }
.service-card-body .meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px;
}
.service-card-body .meta .dot { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }
.service-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.service-card-footer .price { font-size: 1rem; font-weight: 700; color: var(--primary); }
.service-card-footer .price span { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); }

/* =============================================
   TOP SALONS
   ============================================= */
.top-salons { background: var(--white); }

.salons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.salon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.salon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }

.salon-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.salon-card-img-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.salon-card:hover .salon-card-img-bg { transform: scale(1.05); }

.salon-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.salon-card-img .overlay-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px;
}
.salon-card-img .fav-btn {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.salon-card-img .fav-btn:hover { background: var(--white); transform: scale(1.1); }
.salon-card-img .distance-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

/* Placeholder image gradients */
.salon-img-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.salon-img-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.salon-img-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.salon-img-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.salon-img-5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.salon-img-6 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

.salon-img-content {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}
.salon-img-content .salon-emoji { font-size: 3.5rem; }
.salon-img-content .salon-name-overlay {
  color: rgba(255,255,255,0.9);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.salon-card-body { padding: 16px; }
.salon-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 8px; margin-bottom: 8px;
}
.salon-card-top h3 { font-size: 1.05rem; flex: 1; }
.salon-card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 10px;
}
.salon-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.salon-card-tags .tag {
  padding: 3px 10px;
  background: var(--bg-dark);
  color: var(--text-muted);
  border-radius: 20px;
  font-size: 0.75rem;
}
.salon-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.salon-price { font-size: 0.82rem; color: var(--text-muted); }
.salon-price strong { color: var(--primary); font-size: 0.9rem; }
.salon-open {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.78rem; color: var(--success); font-weight: 500;
}
.salon-open .dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: linear-gradient(135deg, #1A0A2E, #4A1D63); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.65); }
.how-it-works .section-header .tag { background: rgba(255,255,255,0.15); color: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 45px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary-light));
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.step-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* =============================================
   BOOKING DEMO
   ============================================= */
.booking-demo { background: var(--bg); }

.booking-demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.booking-demo-left h2 { font-size: 2.2rem; margin-bottom: 16px; }
.booking-demo-left p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.booking-demo-features { display: flex; flex-direction: column; gap: 12px; }
.booking-demo-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem;
}
.booking-demo-feature .check {
  width: 28px; height: 28px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}

/* Booking Widget */
.booking-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-widget-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 20px 24px;
  color: var(--white);
}
.booking-widget-header h4 { font-size: 1.1rem; margin-bottom: 4px; }
.booking-widget-header p { font-size: 0.82rem; opacity: 0.8; }

.booking-widget-body { padding: 24px; }

.booking-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.booking-services-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.booking-svc-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}
.booking-svc-btn:hover, .booking-svc-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.booking-selected-svc {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.booking-selected-svc .svc-info h5 { font-size: 0.95rem; margin-bottom: 3px; }
.booking-selected-svc .svc-info p { font-size: 0.8rem; color: var(--text-muted); }
.booking-selected-svc .svc-price {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
}

.staff-row {
  display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap;
}
.staff-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer; transition: var(--transition);
  font-size: 0.8rem;
}
.staff-btn .staff-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--white); font-weight: 600;
}
.staff-btn .staff-name { font-weight: 500; color: var(--text); }
.staff-btn .staff-rating { color: var(--success); font-size: 0.75rem; }
.staff-btn:hover, .staff-btn.active { border-color: var(--primary); background: #FAF5FF; }

.date-row {
  display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto;
  padding-bottom: 4px;
}
.date-btn {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer; transition: var(--transition);
}
.date-btn .day-name { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }
.date-btn .day-num { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.date-btn:hover, .date-btn.active { border-color: var(--primary); background: var(--primary); }
.date-btn:hover .day-name, .date-btn:hover .day-num,
.date-btn.active .day-name, .date-btn.active .day-num { color: var(--white); }

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 20px;
}
.time-btn {
  padding: 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer; transition: var(--transition);
  color: var(--text);
}
.time-btn:hover, .time-btn.active { border-color: var(--primary); background: var(--primary); color: var(--white); }
.time-btn.booked {
  border-color: var(--border);
  background: var(--bg-dark);
  color: var(--text-light);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* =============================================
   SERVICES BY CATEGORY
   ============================================= */
.services-by-cat { background: var(--white); }

.svc-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-cat-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: pointer;
  background: var(--bg);
  border: 1px solid var(--border);
}
.svc-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.svc-cat-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.svc-cat-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.svc-cat-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.svc-cat-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.svc-cat-list li::before { content: '•'; color: var(--primary); font-size: 1rem; }
.svc-cat-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex; align-items: center; gap: 4px;
}
.svc-cat-link:hover { gap: 8px; }

/* =============================================
   BRIDAL SECTION
   ============================================= */
.bridal {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #4a1d63 100%);
  position: relative;
  overflow: hidden;
}
.bridal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(212,160,23,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 30%, rgba(232,160,191,0.15) 0%, transparent 40%);
}

.bridal-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.bridal-inner .section-header { margin-bottom: 30px; }
.bridal-inner .section-header h2 { color: var(--white); font-size: 2.8rem; }
.bridal-inner .section-header p { color: rgba(255,255,255,0.7); }

.bridal-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 36px; }
.bridal-tag {
  padding: 10px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  color: var(--white);
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}
.bridal-emoji { font-size: 3rem; margin-bottom: 16px; display: block; }

/* =============================================
   HOME SERVICE
   ============================================= */
.home-service { background: var(--bg); }

.home-service-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-service-visual {
  background: linear-gradient(135deg, #f8f4ff, #fde8f2);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.home-service-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(107,45,139,0.08);
}
.home-service-visual .visual-content { position: relative; z-index: 1; }
.home-service-visual .big-emoji { font-size: 5rem; display: block; margin-bottom: 16px; }
.home-service-visual .floating-cards {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px;
}
.floating-card {
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.home-service-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.home-service-content p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.home-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.home-feature { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.home-feature .icon { font-size: 1.1rem; }

/* =============================================
   OFFERS
   ============================================= */
.offers { background: var(--white); }

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.offer-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.offer-card-1 { background: linear-gradient(135deg, #6B2D8B, #9B59B6); color: var(--white); }
.offer-card-2 { background: linear-gradient(135deg, #D4A017, #F5C842); color: var(--white); }
.offer-card-3 { background: linear-gradient(135deg, #C2699A, #E8A0BF); color: var(--white); }
.offer-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.offer-card .offer-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-bottom: 8px; }
.offer-card h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.offer-card .offer-desc { font-size: 0.9rem; opacity: 0.85; margin-bottom: 16px; }
.offer-code {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px dashed rgba(255,255,255,0.5);
}
.offer-card .btn { background: rgba(255,255,255,0.95); color: var(--primary); font-weight: 700; }
.offer-card-2 .btn { color: var(--accent); }
.offer-card-3 .btn { color: var(--secondary-dark); }

/* =============================================
   REVIEWS
   ============================================= */
.reviews { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-3px); }
.review-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.92rem; color: var(--text); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.95rem;
}
.review-author-info strong { display: block; font-size: 0.9rem; }
.review-author-info span { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   APP DOWNLOAD
   ============================================= */
.app-section {
  background: linear-gradient(135deg, #1a0a2e, #4a1d63);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(232,160,191,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.1) 0%, transparent 40%);
}

.app-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-content h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 16px; }
.app-content p { color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.7; }

.app-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.app-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 24px;
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.app-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.app-btn .store-icon { font-size: 2rem; }
.app-btn .store-text { display: flex; flex-direction: column; }
.app-btn .store-text small { font-size: 0.7rem; opacity: 0.7; }
.app-btn .store-text strong { font-size: 1rem; }
.app-btn .soon-tag {
  background: var(--accent);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

.app-mockup {
  display: flex; justify-content: center; align-items: center;
  gap: 20px;
}
.app-phone {
  width: 180px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  color: var(--white);
}
.app-phone.second { width: 160px; margin-top: 40px; }
.phone-screen-content { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.phone-emoji { font-size: 2.5rem; display: block; margin: 12px 0; }

/* =============================================
   VENDOR CTA
   ============================================= */
.vendor-cta { background: var(--bg); }

.vendor-cta-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.vendor-cta-content h2 { font-size: 2.2rem; margin-bottom: 16px; }
.vendor-cta-content p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.vendor-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.vendor-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.vendor-feature .icon { color: var(--success); font-size: 1rem; }
.vendor-visual {
  background: linear-gradient(135deg, var(--bg-dark), var(--border));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.vendor-visual-content .big-emoji { font-size: 5rem; display: block; margin-bottom: 16px; }
.vendor-visual-content h4 { font-size: 1.1rem; color: var(--text-muted); }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {}
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-item .label { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-top: 8px; display: block; }
.stat-item .accent-line {
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #100820;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-mark { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 120px 0 60px;
  color: var(--white);
}
.page-hero h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* =============================================
   FILTER BAR
   ============================================= */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 68px;
  z-index: 100;
}
.filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
  color: var(--text);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--primary); color: var(--primary); background: #FAF5FF; }
.filter-sep { width: 1px; height: 28px; background: var(--border); }

/* =============================================
   FORM STYLES
   ============================================= */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(107,45,139,0.1); }
.form-control::placeholder { color: var(--text-light); }

/* =============================================
   TOAST / NOTIFICATION
   ============================================= */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%; transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 2.8rem; }
  .cat-grid, .services-scroll { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .salons-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-location { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  body { padding-bottom: 70px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-h1 { font-size: 2.2rem; }
  .hero { min-height: auto; padding: 120px 0 60px; }

  .booking-demo-wrap { grid-template-columns: 1fr; }
  .home-service-wrap { grid-template-columns: 1fr; }
  .app-inner { grid-template-columns: 1fr; }
  .vendor-cta-wrap { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .cat-grid, .services-scroll, .svc-cat-grid { grid-template-columns: 1fr; }
  .salons-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 1.9rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-search-location { display: none; }
}
