/* ===================================================
 * GLAMSTUDIO SALON — Premium CSS Design System
 * Mobile-First | Luxury Edition
 * =================================================== */

/* ---- GOOGLE FONTS LOADED VIA HTML ---- */
/* Cormorant Garamond: serif headings  */
/* Outfit: modern body + UI            */

:root {
  /* Brand Colors */
  --primary:    #111111;
  --accent:     #c9a96e;
  --accent-alt: #b8924f;
  --accent-bg:  #fdf8f0;
  --gold-glow:  rgba(201,169,110,0.18);

  /* Neutrals */
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-soft:    #fafaf8;
  --bg-dark:    #111111;
  --border:     #ebebeb;
  --muted:      #777777;
  --dark-text:  #1a1a1a;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;

  /* Misc */
  --radius:     14px;
  --radius-sm:  8px;
  --radius-xl:  24px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }

/* =====================
   SECTION LABELS
   ===================== */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-text);
  margin-bottom: 14px;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 16px;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-gem {
  color: var(--accent);
  font-size: 18px;
  animation: gemRotate 6s linear infinite;
}

@keyframes gemRotate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(20deg); }
}

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}

.nav-link:hover { color: var(--primary); }

.btn-nav-book {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-nav-book:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
  border-bottom: 1px solid var(--border);
}
.mobile-book {
  margin-top: 12px;
  text-align: center;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 14px;
  border: none;
}

/* =====================
   HERO
   ===================== */
.hero {
  padding-top: 110px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1209 50%, #111111 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

/* Bg shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #8b6914 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatShape 12s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #c9a96e 0%, transparent 70%);
  top: 50%; left: 30%;
  animation: floatShape 10s ease-in-out infinite 2s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201,169,110,0.4);
}

.btn-hero-primary:hover {
  background: #b8924f;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mockup-inner { position: relative; }

.mockup-header {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.mockup-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.mockup-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #F4C0D1, #e8a0b5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: #5a2030;
  flex-shrink: 0;
}

.mockup-text { flex: 1; }
.mockup-text strong { display: block; color: var(--white); font-size: 13px; }
.mockup-text p { color: rgba(255,255,255,0.5); font-size: 11px; margin-top: 2px; }

.mockup-badge-avail {
  font-size: 10px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 50px;
  padding: 3px 8px;
}

.mockup-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-slot {
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.mockup-slot.active {
  background: rgba(201,169,110,0.2);
  border-color: rgba(201,169,110,0.4);
  color: var(--accent);
}

.mockup-btn {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Floating cards */
.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: var(--dark-text);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.card-float-1 { top: 10%; left: -10px; animation: floatCard1 4s ease-in-out infinite; }
.card-float-2 { bottom: 15%; right: -10px; animation: floatCard2 5s ease-in-out infinite 1s; }

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
}

/* =====================
   WHY US
   ===================== */
.why-section {
  background: var(--bg-soft);
  text-align: center;
}

.why-section .section-label,
.why-section .section-title,
.why-section .section-sub { margin-inline: auto; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px var(--gold-glow);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =====================
   SERVICES
   ===================== */
.services-section { background: var(--white); }

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.service-card:hover::before,
.service-card.selected::before { transform: scaleY(1); }

.service-card:hover {
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateX(4px);
}

.service-card.selected {
  border-color: var(--accent);
  background: var(--accent-bg);
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateX(4px);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-card.selected .service-icon { background: rgba(201,169,110,0.15); }

.service-body { flex: 1; }

.service-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-duration {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.service-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-left: auto;
}

.service-check {
  width: 24px; height: 24px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.service-card.selected .service-check { display: flex; }

.service-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

/* =====================
   STYLISTS
   ===================== */
.stylists-section { background: var(--bg-soft); }

.stylists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stylist-card {
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.stylist-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #b8924f);
  transform: scaleX(0);
  transition: var(--transition);
}

.stylist-card:hover::after,
.stylist-card.selected::after { transform: scaleX(1); }

.stylist-card:hover {
  border-color: rgba(201,169,110,0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stylist-card.selected {
  border-color: var(--accent);
  background: var(--accent-bg);
  box-shadow: 0 8px 32px var(--gold-glow);
  transform: translateY(-4px);
}

.stylist-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-serif);
  position: relative;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.stylist-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition);
}

.stylist-card.selected .stylist-avatar::after { border-color: var(--accent); }

.stylist-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50px;
  padding: 3px 10px;
}

.stylist-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.stylist-role {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.stylist-specialty {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.stylist-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  background: var(--bg-soft);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* =====================
   GALLERY
   ===================== */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

.gallery-emoji {
  font-size: 48px;
  margin-bottom: 12px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
}

.gallery-label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  text-align: center;
}

.gallery-tag {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section { background: var(--bg-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-serif);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.testi-service {
  font-size: 12px;
  color: var(--muted);
}

.testi-stars { margin-left: auto; font-size: 14px; color: #fbbf24; }

.testi-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

.testi-text::before { content: '"'; font-size: 32px; color: var(--accent); line-height: 0; vertical-align: -10px; margin-right: 4px; }

/* =====================
   BOOKING
   ===================== */
.booking-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1209 100%);
  color: var(--white);
}

.booking-section .section-title { color: var(--white); }

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.booking-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.booking-meta-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.booking-meta-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.meta-icon {
  font-size: 22px;
  width: 44px; height: 44px;
  background: rgba(201,169,110,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.booking-meta-item strong {
  display: block;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 2px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 11px;
}

.booking-meta-item p { color: rgba(255,255,255,0.75); font-size: 14px; }

.booking-guarantee {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}

.guarantee-icon { font-size: 20px; }
.booking-guarantee p { font-size: 13px; color: rgba(255,255,255,0.45); }

/* Booking Form Card */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  color: var(--dark-text);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* Progress Steps */
.booking-steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

.step span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.step.active { color: var(--accent); }
.step.active span { background: var(--accent); border-color: var(--accent); color: var(--white); }
.step.done span { background: var(--primary); border-color: var(--primary); color: var(--white); }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-bottom: 16px;
}

/* Selection Summary */
.selection-summary {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
}

.summary-empty {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 6px 0;
}

.summary-row:not(:last-child) { border-bottom: 1px solid var(--border); }

.summary-label { color: var(--muted); }
.summary-value { font-weight: 500; }

.summary-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--accent) !important;
  font-size: 16px !important;
}
.summary-total .summary-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* Form Elements */
.form-group { margin-bottom: 20px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.label-icon { font-size: 15px; }

input[type="text"],
input[type="tel"],
input[type="date"],
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark-text);
  background: var(--bg);
  transition: var(--transition);
  -webkit-appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea { resize: vertical; min-height: 80px; line-height: 1.6; }

/* Time Slots */
.time-placeholder {
  font-size: 13px;
  color: var(--muted);
  padding: 12px;
  text-align: center;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}

.time-slot {
  padding: 10px 4px;
  text-align: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
}

.time-slot:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}

.time-slot.selected {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.time-slot.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--bg-soft);
  pointer-events: none;
}

.form-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.form-divider span {
  position: relative;
  background: var(--white);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

/* Submit Button */
.btn-book-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.wa-icon svg { flex-shrink: 0; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-gem { color: var(--accent); font-size: 18px; }

.footer-logo span:last-child {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.footer-brand-tagline {
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-brand-desc {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 12px; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links-col li a:hover { color: var(--accent); }

.footer-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-info-item span { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-info-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }

.footer-maps-btn {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  margin-top: 4px;
}

.footer-maps-btn:hover { background: var(--accent); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-credit strong { color: var(--accent); }

/* =====================
   FLOATING WA BUTTON
   ===================== */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* =====================
   UTILITIES
   ===================== */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================
   RESPONSIVE — TABLET
   ===================== */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stylists-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

/* =====================
   RESPONSIVE — DESKTOP
   ===================== */
@media (min-width: 1024px) {
  .navbar-nav { display: flex; }
  .hamburger { display: none; }

  .hero .container { grid-template-columns: 1fr 1fr; gap: 80px; }
  .hero-title { font-size: 66px; }
  .hero-desc { font-size: 17px; }

  .section { padding: 100px 0; }
  .section-title { font-size: 48px; }

  .why-grid { grid-template-columns: repeat(4, 1fr); }

  .services-grid { grid-template-columns: 1fr; max-width: 860px; margin-inline: auto; }

  .stylists-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .booking-wrapper { grid-template-columns: 5fr 7fr; gap: 60px; }

  .footer-top { grid-template-columns: 2fr 1fr 2fr; }
}
