/* ==========================================================================
   NAINA CARE - Mom & Baby Care Reservation System
   PREMIUM STYLESHEET — 100% PINK PEKAT (No other colors)
   Mobile-first, responsive, real-time calendar ready
   ========================================================================== */

:root {
  /* ===== Color Palette — PINK PEKAT ONLY (Deep Vibrant Pink) ===== */
  --pink-primary: #C2185B;        /* main brand pink */
  --pink-light: #E91E63;          /* lighter pink */
  --pink-soft: #F06292;           /* soft pink */
  --pink-bright: #FF4081;         /* bright accent pink */
  --pink-brighter: #FF6B9D;       /* brighter accent */
  --pink-pale: #F8BBD0;           /* pale pink */
  --pink-paler: #FCE4EC;          /* very pale pink */
  --pink-bg: #FFF0F3;             /* page background pink */
  --pink-bg-soft: #FFF8FA;        /* softer page background */
  --pink-dark: #880E4F;           /* dark pink */
  --pink-darker: #560027;         /* darker pink */
  --pink-darkest: #2C0011;        /* deepest pink */
  --pink-muted: #D899B5;          /* muted pink (for past/disabled) */
  --pink-faded: #E8C5D2;          /* faded pink (for closed) */
  --white: #FFFFFF;
  --pink-ink: #4A0E2A;            /* dark pink for text */
  --pink-ink-soft: #7A2848;       /* soft pink text */
  --pink-ink-muted: #B07090;      /* muted pink text */

  /* Slot status colors — ALL PINK, differentiated by depth */
  --slot-available: #E91E63;          /* bright pink = available (can book) */
  --slot-available-bg: #FCE4EC;       /* very pale pink bg */
  --slot-available-border: #FF4081;
  --slot-booked: #880E4F;             /* dark pink = booked (taken) */
  --slot-booked-bg: #F8BBD0;          /* mid-pale pink bg */
  --slot-booked-border: #880E4F;
  --slot-held: #C2185B;               /* primary pink = held (in checkout) */
  --slot-held-bg: #FFD6E5;            /* light pink bg */
  --slot-held-border: #C2185B;
  --slot-past: #B07090;               /* muted pink = past time */
  --slot-past-bg: #F5E0EA;            /* very faded pink bg */
  --slot-past-border: #D899B5;
  --slot-closed: #E8C5D2;             /* faded pink = closed */
  --slot-closed-bg: #FBF0F4;          /* near-white pink bg */
  --slot-closed-border: #E8C5D2;

  /* Typography */
  --font-base: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadow — pink-tinted */
  --shadow-sm: 0 2px 8px rgba(194, 24, 91, 0.10);
  --shadow-md: 0 4px 16px rgba(194, 24, 91, 0.18);
  --shadow-lg: 0 8px 32px rgba(194, 24, 91, 0.22);
  --shadow-xl: 0 16px 48px rgba(194, 24, 91, 0.28);
  --shadow-pink: 0 8px 24px rgba(255, 64, 129, 0.35);

  /* Transition */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* ============= RESET ============= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--pink-ink);
  background: var(--pink-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--pink-dark); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--pink-darker); line-height: 1.25; }

/* ============= LAYOUT ============= */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 32px 0; }
.text-center { text-align: center; }
.text-pink { color: var(--pink-primary); }
.text-pink-dark { color: var(--pink-dark); }
.text-muted { color: var(--pink-ink-muted); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { background: var(--pink-dark); color: var(--white); box-shadow: var(--shadow-lg); }
.btn-light {
  background: var(--white);
  color: var(--pink-primary);
  border-color: var(--pink-pale);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { background: var(--pink-paler); border-color: var(--pink-soft); color: var(--pink-primary); }
.btn-outline {
  background: transparent;
  color: var(--pink-primary);
  border-color: var(--pink-primary);
}
.btn-outline:hover { background: var(--pink-primary); color: var(--white); }
.btn-soft {
  background: var(--pink-paler);
  color: var(--pink-primary);
}
.btn-soft:hover { background: var(--pink-pale); color: var(--pink-darker); }
.btn-dark {
  background: var(--pink-darker);
  color: var(--white);
}
.btn-dark:hover { background: var(--pink-darkest); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: var(--font-size-xs); }
.btn-lg { padding: 16px 32px; font-size: var(--font-size-base); }
.btn-block { width: 100%; display: flex; }
.btn:disabled, .btn.disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ============= NAVBAR ============= */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--pink-pale);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--pink-primary);
  white-space: nowrap;
}
.navbar-brand img { height: 40px; width: auto; }
.navbar-brand span { display: inline-flex; align-items: center; gap: 8px; }
.navbar-brand i { color: var(--pink-bright); font-size: 1.2em; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.navbar-nav a {
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--pink-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.navbar-nav a i { font-size: 0.85em; }
.navbar-nav a:hover { background: var(--pink-paler); color: var(--pink-primary); }
.navbar-nav a.active { background: var(--pink-primary); color: var(--white); }

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

.navbar-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--pink-paler);
  color: var(--pink-primary);
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .navbar-nav { display: none; }
  .navbar-toggle { display: inline-flex; }
}

@media (max-width: 600px) {
  .navbar-brand { font-size: var(--font-size-lg); }
  .navbar-brand img { height: 32px; }
  .navbar-actions .btn span,
  .navbar-actions .btn-text-hide { display: none; }
  .navbar-actions .btn { padding: 8px 12px; }
}

/* ============= MOBILE MENU ============= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(88, 0, 39, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1500;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 32px rgba(194, 24, 91, 0.25);
  z-index: 1600;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active { right: 0; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--pink-paler);
}
.mobile-menu-header > span {
  font-family: var(--font-heading);
  color: var(--pink-primary);
  font-size: var(--font-size-xl);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  color: var(--pink-ink);
  font-weight: 500;
  margin-bottom: 4px;
  transition: var(--transition-fast);
}
.mobile-menu a:hover { background: var(--pink-paler); color: var(--pink-primary); }
.mobile-menu a i { width: 20px; color: var(--pink-bright); }

/* ============= PAGE HEADER ============= */
.page-header {
  background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-dark) 100%);
  color: var(--white);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 64, 129, 0.3), transparent 60%),
              radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.15), transparent 50%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  color: var(--white);
  font-size: var(--font-size-3xl);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.page-header h1 i { color: var(--pink-pale); }
.page-header p { font-size: var(--font-size-lg); opacity: 0.95; max-width: 700px; }
.breadcrumb {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  color: var(--pink-pale);
}
.breadcrumb a { color: var(--white); text-decoration: underline; }
.breadcrumb a:hover { color: var(--pink-pale); }
.breadcrumb span.separator { opacity: 0.6; }

/* ============= HERO ============= */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--pink-darker) 0%, var(--pink-primary) 50%, var(--pink-bright) 100%);
  color: var(--white);
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 107, 157, 0.4), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 64, 129, 0.4), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--pink-pale); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--pink-pale); font-style: italic; }
.hero p {
  font-size: var(--font-size-lg);
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: var(--font-size-3xl); font-family: var(--font-heading); }
.hero-stat span { font-size: var(--font-size-sm); opacity: 0.85; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  color: var(--pink-ink);
  position: relative;
}
.hero-card + .hero-card { margin-top: 16px; }
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hero-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--pink-paler);
  color: var(--pink-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.hero-card-title { font-weight: 600; color: var(--pink-darker); }
.hero-card-subtitle { font-size: var(--font-size-xs); color: var(--pink-ink-muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 80px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
}

/* ============= SECTIONS / CARDS ============= */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: var(--font-size-4xl);
  color: var(--pink-darker);
  margin-bottom: 12px;
}
.section-header h2 .accent { color: var(--pink-bright); font-style: italic; }
.section-header p { font-size: var(--font-size-lg); color: var(--pink-ink-soft); max-width: 700px; margin: 0 auto; }
.section-header .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-bright), var(--pink-primary));
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--pink-paler);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============= SERVICE CARD ============= */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--pink-paler);
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--pink-soft); }
.service-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--pink-paler), var(--pink-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { color: var(--pink-darker); margin-bottom: 8px; font-size: var(--font-size-xl); }
.service-card-body p { color: var(--pink-ink-soft); margin-bottom: 16px; flex: 1; }
.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--pink-paler);
}
.service-card-price { color: var(--pink-primary); font-weight: 700; font-size: var(--font-size-lg); }
.service-card-price small { color: var(--pink-ink-muted); font-weight: 400; font-size: var(--font-size-xs); }

/* ============= THERAPIST CARD ============= */
.therapist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--pink-paler);
}
.therapist-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.therapist-avatar {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--pink-paler), var(--pink-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
  font-size: 5rem;
  overflow: hidden;
}
.therapist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.therapist-info { padding: 24px; }
.therapist-info h3 { color: var(--pink-darker); margin-bottom: 4px; }
.therapist-info .specialty { color: var(--pink-bright); font-weight: 500; font-size: var(--font-size-sm); margin-bottom: 12px; }
.therapist-info .bio { color: var(--pink-ink-soft); font-size: var(--font-size-sm); margin-bottom: 16px; }
.therapist-rating { color: var(--pink-bright); font-size: var(--font-size-sm); }
.therapist-rating i { margin-right: 2px; }

/* ============= FORM ============= */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-weight: 500;
  color: var(--pink-darker);
  margin-bottom: 6px;
  font-size: var(--font-size-sm);
}
.form-label i { color: var(--pink-bright); margin-right: 4px; }
.form-label .req { color: var(--pink-bright); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--pink-pale);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--pink-ink);
  transition: var(--transition-fast);
  font-size: var(--font-size-sm);
}
.form-control:focus {
  outline: none;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px var(--pink-paler);
}
.form-control::placeholder { color: var(--pink-ink-muted); }
textarea.form-control { min-height: 100px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: var(--font-size-xs); color: var(--pink-ink-muted); margin-top: 4px; }

/* ============= ALERTS — PINK ONLY ============= */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border-left: 4px solid var(--pink-primary);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--font-size-sm);
}
.alert i { font-size: 1.1rem; margin-top: 2px; }
.alert-success { background: var(--pink-paler); border-color: var(--pink-bright); color: var(--pink-darker); }
.alert-success i { color: var(--pink-bright); }
.alert-info { background: var(--pink-paler); border-color: var(--pink-soft); color: var(--pink-darker); }
.alert-info i { color: var(--pink-soft); }
.alert-warning { background: var(--pink-pale); border-color: var(--pink-primary); color: var(--pink-darker); }
.alert-warning i { color: var(--pink-primary); }
.alert-danger { background: var(--pink-pale); border-color: var(--pink-dark); color: var(--pink-darker); }
.alert-danger i { color: var(--pink-dark); }

/* ============= BADGE — PINK ONLY ============= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  background: var(--pink-paler);
  color: var(--pink-primary);
}
.badge-bright { background: var(--pink-bright); color: var(--white); }
.badge-soft { background: var(--pink-pale); color: var(--pink-dark); }
.badge-dark { background: var(--pink-darker); color: var(--white); }
.badge-light { background: var(--white); color: var(--pink-primary); border: 1px solid var(--pink-pale); }

/* ============= TABLE ============= */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
table.data-table {
  width: 100%;
  background: var(--white);
  border-collapse: collapse;
}
.data-table th {
  background: var(--pink-primary);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: var(--font-size-sm);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--pink-paler);
  font-size: var(--font-size-sm);
  color: var(--pink-ink);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover { background: var(--pink-bg-soft); }

/* ============= SCHEDULE / CALENDAR (Google Calendar style) ============= */
.schedule-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--pink-paler);
}
.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  color: var(--white);
  flex-wrap: wrap;
  gap: 12px;
}
.schedule-header h2 {
  color: var(--white);
  font-size: var(--font-size-xl);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.schedule-header h2 i { color: var(--pink-pale); }
.schedule-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule-nav button {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.schedule-nav button:hover { background: rgba(255, 255, 255, 0.35); }
.month-label {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  min-width: 180px;
  text-align: center;
  color: var(--white);
}

.schedule-toolbar {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  background: var(--pink-bg-soft);
  border-bottom: 1px solid var(--pink-paler);
  flex-wrap: wrap;
  align-items: end;
}
.schedule-toolbar .form-group { margin: 0; flex: 1; min-width: 240px; }
.schedule-view-toggle {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 4px;
  border: 1px solid var(--pink-pale);
}
.schedule-view-toggle button {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--pink-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.schedule-view-toggle button.active {
  background: var(--pink-primary);
  color: var(--white);
}

/* Real-time indicator */
.realtime-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--pink-pale);
  font-size: var(--font-size-xs);
  color: var(--pink-primary);
  font-weight: 600;
}
.realtime-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-bright);
  animation: pulse-pink 1.4s infinite ease-in-out;
}
@keyframes pulse-pink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(255, 64, 129, 0); }
}

/* CALENDAR GRID */
#calendar_view { padding: 16px; }
.cal-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--pink-ink-muted);
}
.cal-loading .spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--pink-paler);
  border-top-color: var(--pink-primary);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-weekday {
  text-align: center;
  font-weight: 600;
  font-size: var(--font-size-xs);
  color: var(--pink-primary);
  padding: 10px 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--pink-paler);
  border-radius: var(--radius-sm);
}
.cal-day {
  min-height: 110px;
  border: 1px solid var(--pink-paler);
  border-radius: var(--radius-md);
  padding: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.cal-day:hover { border-color: var(--pink-soft); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.cal-day.cal-other-month {
  background: var(--pink-bg-soft);
  cursor: not-allowed;
  opacity: 0.5;
}
.cal-day.cal-other-month:hover { transform: none; box-shadow: none; border-color: var(--pink-paler); }
.cal-day.cal-today {
  background: linear-gradient(135deg, var(--pink-paler), var(--white));
  border: 2px solid var(--pink-bright);
  box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.15);
}
.cal-day.cal-past { opacity: 0.55; }
.cal-day.cal-selected {
  background: var(--pink-primary);
  border-color: var(--pink-dark);
}
.cal-day.cal-selected .cal-day-num,
.cal-day.cal-selected .cal-event { color: var(--white) !important; }
.cal-day-num {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pink-darker);
  font-size: var(--font-size-base);
}
.cal-day.cal-today .cal-day-num {
  color: var(--pink-bright);
}
.cal-day-events {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.7rem;
}
.cal-event {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-event.is-available { background: var(--slot-available-bg); color: var(--slot-available); border-left: 3px solid var(--slot-available-border); }
.cal-event.is-booked { background: var(--slot-booked-bg); color: var(--slot-booked); border-left: 3px solid var(--slot-booked-border); }
.cal-event.is-held { background: var(--slot-held-bg); color: var(--slot-held); border-left: 3px solid var(--slot-held-border); }
.cal-event.is-closed { background: var(--slot-closed-bg); color: var(--pink-ink-muted); border-left: 3px solid var(--slot-closed-border); }
.cal-day-summary {
  display: flex;
  gap: 4px;
  margin-top: auto;
}
.cal-day-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}

@media (max-width: 700px) {
  .cal-day { min-height: 70px; padding: 4px; }
  .cal-day-num { font-size: 0.85rem; }
  .cal-event { font-size: 0.6rem; padding: 1px 4px; }
  .cal-weekday { font-size: 0.65rem; padding: 6px 2px; }
}

/* LEGEND */
.schedule-legend {
  display: flex;
  gap: 16px;
  padding: 14px 24px;
  background: var(--pink-bg-soft);
  border-top: 1px solid var(--pink-paler);
  flex-wrap: wrap;
  font-size: var(--font-size-xs);
  color: var(--pink-ink-soft);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend-swatch {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1px solid var(--pink-pale);
}
.legend-swatch.available { background: var(--slot-available-bg); border-color: var(--slot-available-border); }
.legend-swatch.booked { background: var(--slot-booked-bg); border-color: var(--slot-booked-border); }
.legend-swatch.held { background: var(--slot-held-bg); border-color: var(--slot-held-border); }
.legend-swatch.closed { background: var(--slot-closed-bg); border-color: var(--slot-closed-border); }

/* DAY DETAIL PANEL */
.schedule-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--pink-paler);
}
.schedule-detail-header {
  padding: 20px 24px;
  background: var(--pink-paler);
  border-bottom: 1px solid var(--pink-pale);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.schedule-detail-header h3 {
  color: var(--pink-darker);
  font-size: var(--font-size-xl);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.schedule-detail-header h3 i { color: var(--pink-bright); }
.therapist-info { display: inline-flex; align-items: center; gap: 10px; }
.therapist-info img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.therapist-info strong { color: var(--pink-darker); }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  padding: 24px;
}
.slot-card {
  border: 2px solid var(--pink-paler);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  transition: var(--transition-fast);
  background: var(--white);
}
.slot-card.available {
  border-color: var(--slot-available-border);
  background: var(--slot-available-bg);
  cursor: pointer;
}
.slot-card.available:hover {
  background: var(--pink-bright);
  border-color: var(--pink-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}
.slot-card.available:hover .slot-time,
.slot-card.available:hover .slot-status { color: var(--white) !important; }
.slot-card.booked { border-color: var(--slot-booked-border); background: var(--slot-booked-bg); cursor: not-allowed; }
.slot-card.held { border-color: var(--slot-held-border); background: var(--slot-held-bg); cursor: not-allowed; }
.slot-card.past { border-color: var(--slot-past-border); background: var(--slot-past-bg); cursor: not-allowed; opacity: 0.6; }
.slot-card.closed { border-color: var(--slot-closed-border); background: var(--slot-closed-bg); cursor: not-allowed; opacity: 0.6; }

.slot-time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pink-darker);
  font-size: var(--font-size-base);
  margin-bottom: 4px;
}
.slot-status {
  font-size: var(--font-size-xs);
  color: var(--pink-ink-soft);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* WEEK VIEW */
.schedule-week { padding: 16px; overflow-x: auto; }
.week-grid {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  gap: 4px;
  min-width: 700px;
}
.week-day-header {
  background: var(--pink-primary);
  color: var(--white);
  padding: 8px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
}
.week-day-header .day-name { font-weight: 600; text-transform: uppercase; }
.week-day-header .day-num { font-family: var(--font-heading); font-size: var(--font-size-lg); }
.week-time-col {
  background: var(--pink-paler);
  padding: 6px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--pink-darker);
  display: flex;
  align-items: center;
  justify-content: center;
}
.week-day-col {
  background: var(--white);
  border: 1px solid var(--pink-paler);
  border-radius: var(--radius-sm);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.week-slot {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
}
.week-slot.available { background: var(--slot-available-bg); color: var(--slot-available); }
.week-slot.booked { background: var(--slot-booked-bg); color: var(--slot-booked); }
.week-slot.held { background: var(--slot-held-bg); color: var(--slot-held); }
.week-slot.past { background: var(--slot-past-bg); color: var(--slot-past); }
.week-slot.closed { background: var(--slot-closed-bg); color: var(--slot-closed-border); }

/* ============= PROMO ============= */
.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-paler);
  transition: var(--transition);
}
.promo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.promo-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.promo-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink-darker);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-size-xs);
}
.promo-body { padding: 20px; }
.promo-body h3 { color: var(--pink-darker); margin-bottom: 8px; }
.promo-body p { color: var(--pink-ink-soft); font-size: var(--font-size-sm); margin-bottom: 12px; }
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-paler);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-weight: 700;
  color: var(--pink-primary);
  border: 2px dashed var(--pink-soft);
}

/* ============= BLOG ============= */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-paler);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--pink-paler), var(--pink-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
  font-size: 3rem;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-meta {
  display: flex;
  gap: 12px;
  font-size: var(--font-size-xs);
  color: var(--pink-ink-muted);
  margin-bottom: 8px;
}
.blog-meta span { display: inline-flex; align-items: center; gap: 4px; }
.blog-body h3 { color: var(--pink-darker); margin-bottom: 8px; font-size: var(--font-size-lg); }
.blog-body p { color: var(--pink-ink-soft); font-size: var(--font-size-sm); }

/* ============= TESTIMONIAL ============= */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-paler);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--pink-pale);
  line-height: 1;
}
.testimonial-rating { color: var(--pink-bright); margin-bottom: 12px; }
.testimonial-text { color: var(--pink-ink-soft); font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink-paler);
  color: var(--pink-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author h4 { color: var(--pink-darker); font-size: var(--font-size-base); }
.testimonial-author span { font-size: var(--font-size-xs); color: var(--pink-ink-muted); }

/* ============= STATS SECTION ============= */
.stats-section {
  background: linear-gradient(135deg, var(--pink-darker), var(--pink-primary));
  color: var(--white);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: var(--font-size-4xl);
  font-family: var(--font-heading);
  color: var(--pink-pale);
}
.stat-item span { font-size: var(--font-size-sm); opacity: 0.9; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============= CTA SECTION ============= */
.cta-section {
  background: linear-gradient(135deg, var(--pink-bright), var(--pink-primary));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-size: var(--font-size-4xl); margin-bottom: 16px; }
.cta-section p { font-size: var(--font-size-lg); opacity: 0.95; max-width: 600px; margin: 0 auto 32px; }

/* ============= FOOTER ============= */
.footer {
  background: var(--pink-darkest);
  color: var(--pink-pale);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-brand h3 i { color: var(--pink-bright); }
.footer-brand p { color: var(--pink-pale); opacity: 0.85; font-size: var(--font-size-sm); }
.footer-col h4 {
  color: var(--pink-pale);
  font-family: var(--font-base);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: var(--pink-pale);
  opacity: 0.8;
  font-size: var(--font-size-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover { color: var(--white); opacity: 1; }
.footer-col ul a i { color: var(--pink-bright); font-size: 0.85em; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: var(--font-size-sm);
  color: var(--pink-pale);
  opacity: 0.85;
}
.footer-contact-item i { color: var(--pink-bright); margin-top: 4px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--pink-bright); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: var(--font-size-xs);
  opacity: 0.7;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============= FLASH MESSAGE ============= */
.flash-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 2000;
  max-width: 380px;
  width: calc(100% - 40px);
}
.flash-message {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-left: 4px solid var(--pink-primary);
  animation: slide-in 0.3s ease;
  font-size: var(--font-size-sm);
}
.flash-message.success { border-left-color: var(--pink-bright); }
.flash-message.error { border-left-color: var(--pink-dark); }
.flash-message.info { border-left-color: var(--pink-soft); }
.flash-message i { color: var(--pink-primary); }
.flash-message.success i { color: var(--pink-bright); }
.flash-message.error i { color: var(--pink-dark); }
.flash-message .close-flash { margin-left: auto; color: var(--pink-ink-muted); cursor: pointer; }
@keyframes slide-in {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============= AUTH PAGES ============= */
.auth-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--pink-paler) 100%);
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  border: 1px solid var(--pink-paler);
}
.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 24px;
}
.auth-card .auth-logo i {
  font-size: 3rem;
  color: var(--pink-primary);
  background: var(--pink-paler);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.auth-card h2 {
  text-align: center;
  color: var(--pink-darker);
  margin-bottom: 8px;
}
.auth-card .auth-subtitle {
  text-align: center;
  color: var(--pink-ink-muted);
  margin-bottom: 24px;
  font-size: var(--font-size-sm);
}
.auth-card .auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: var(--font-size-sm);
  color: var(--pink-ink-muted);
}

/* ============= UTILITY ============= */
.spinner-sm {
  width: 16px; height: 16px;
  border: 2px solid var(--pink-paler);
  border-top-color: var(--pink-primary);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.9s linear infinite;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--pink-ink-muted);
}
.empty-state i {
  font-size: 4rem;
  color: var(--pink-pale);
  margin-bottom: 16px;
  display: block;
}
.empty-state h3 { color: var(--pink-darker); margin-bottom: 8px; }
.empty-state p { color: var(--pink-ink-muted); }

/* ==========================================================================
   ADDITIONAL COMPONENTS — keep pink-only palette
   ========================================================================== */

/* ============= HERO VARIANTS ============= */
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--white);
}
.hero-stat .label {
  font-size: var(--font-size-sm);
  opacity: 0.85;
}
.hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-image i {
  font-size: 8rem;
  color: var(--pink-pale);
  opacity: 0.6;
}
.hero-image i + i {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 4rem;
  color: var(--pink-bright);
  opacity: 0.9;
}
@media (max-width: 900px) {
  .hero-image { height: 280px; }
  .hero-image i { font-size: 5rem; }
}

/* ============= SECTION HELPERS ============= */
.section-eyebrow {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--pink-bright);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--pink-darker);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--pink-ink-soft);
  max-width: 700px;
  margin: 0 auto;
}
.section-header .divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-bright), var(--pink-primary));
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}

/* ============= STAT CARD (homepage) ============= */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-paler);
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--pink-paler);
  color: var(--pink-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--pink-darker);
  margin-bottom: 4px;
}
.stat-label {
  font-size: var(--font-size-sm);
  color: var(--pink-ink-muted);
}

/* ============= ROW / COL ============= */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.row.align-center { align-items: center; }
@media (max-width: 900px) { .row { grid-template-columns: 1fr; gap: 24px; } }
.col { display: block; }

/* ============= STEPS ============= */
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-paler);
  position: relative;
}
.step-card .step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-bright));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-pink);
}
.step-card h3 { color: var(--pink-darker); margin-bottom: 8px; }
.step-card p { color: var(--pink-ink-soft); font-size: var(--font-size-sm); }

/* ============= SERVICE CARD VARIANTS ============= */
.service-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--pink-paler);
}
.service-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pink-primary);
  font-size: var(--font-size-lg);
}
.service-duration {
  font-size: var(--font-size-xs);
  color: var(--pink-ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============= THERAPIST CARD VARIANTS ============= */
.therapist-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-paler), var(--pink-pale));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
  font-size: 4rem;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 4px solid var(--pink-paler);
}
.therapist-card h3 { color: var(--pink-darker); margin-bottom: 4px; text-align: center; }
.therapist-specialization {
  color: var(--pink-bright);
  font-weight: 500;
  font-size: var(--font-size-sm);
  text-align: center;
  margin-bottom: 12px;
}
.therapist-card .therapist-rating {
  text-align: center;
  color: var(--pink-bright);
  font-weight: 600;
}

/* ============= TESTIMONIAL VARIANTS ============= */
.testimonial-content {
  font-style: italic;
  color: var(--pink-ink-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink-paler);
  color: var(--pink-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  overflow: hidden;
}

/* ============= BLOG CARD VARIANTS ============= */
.blog-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--pink-paler), var(--pink-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
  font-size: 3rem;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-meta {
  display: flex;
  gap: 12px;
  font-size: var(--font-size-xs);
  color: var(--pink-ink-muted);
  margin-bottom: 8px;
}
.blog-card-body h3 { color: var(--pink-darker); margin-bottom: 8px; font-size: var(--font-size-lg); }
.blog-card-body p { color: var(--pink-ink-soft); font-size: var(--font-size-sm); }

/* ============= BANNER CAROUSEL ============= */
.banner-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.banner-slide {
  position: relative;
  display: none;
  height: 400px;
  background: var(--pink-primary);
}
.banner-slide.active { display: block; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88, 0, 39, 0.75), rgba(194, 24, 91, 0.45));
  display: flex;
  align-items: center;
  padding: 40px;
}
.banner-content { max-width: 600px; }
.banner-content h2 { color: var(--white); font-size: var(--font-size-3xl); margin-bottom: 12px; }
.banner-content p { color: var(--pink-pale); font-size: var(--font-size-lg); margin-bottom: 20px; }
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2;
}
.banner-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.banner-arrow.prev { left: 20px; }
.banner-arrow.next { right: 20px; }
.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.banner-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}
.banner-dot.active { background: var(--white); width: 30px; border-radius: var(--radius-full); }
@media (max-width: 700px) {
  .banner-slide { height: 260px; }
  .banner-overlay { padding: 20px; }
  .banner-content h2 { font-size: var(--font-size-xl); }
  .banner-content p { font-size: var(--font-size-sm); }
}

/* ============= MISC ============= */
.mt-4 { margin-top: 32px; }
.animate-fade-up { animation: fade-up 0.7s ease both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============= FAQ ============= */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--pink-paler);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--pink-darker);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--pink-bright); transition: transform 0.3s; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item p { margin-top: 12px; color: var(--pink-ink-soft); padding-top: 12px; border-top: 1px solid var(--pink-paler); }

/* ============= CONTACT INFO ============= */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-paler);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--pink-paler);
  color: var(--pink-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-card h4 { color: var(--pink-darker); margin-bottom: 4px; }
.contact-info-card p { color: var(--pink-ink-soft); font-size: var(--font-size-sm); margin: 0; }
.contact-info-card a { color: var(--pink-primary); font-size: var(--font-size-sm); }

/* ============= BLOG DETAIL ============= */
.blog-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-paler);
}
.blog-detail-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--pink-paler); }
.blog-detail-title { color: var(--pink-darker); font-size: var(--font-size-3xl); margin-bottom: 12px; }
.blog-detail-meta { display: flex; gap: 16px; color: var(--pink-ink-muted); font-size: var(--font-size-sm); flex-wrap: wrap; }
.blog-detail-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-detail-content { color: var(--pink-ink); line-height: 1.8; }
.blog-detail-content h2, .blog-detail-content h3 { color: var(--pink-darker); margin: 24px 0 12px; }
.blog-detail-content p { margin-bottom: 16px; }
.blog-detail-content img { border-radius: var(--radius-md); margin: 16px 0; }
.blog-detail-content ul, .blog-detail-content ol { padding-left: 24px; margin-bottom: 16px; }
.blog-detail-content li { margin-bottom: 8px; }

/* ============= PAGINATION ============= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--pink-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border: 1px solid var(--pink-paler);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pagination a:hover { background: var(--pink-paler); }
.pagination .active { background: var(--pink-primary); color: var(--white); border-color: var(--pink-primary); }
.pagination .disabled { color: var(--pink-faded); cursor: not-allowed; }

/* ============= PRICE LIST ============= */
.price-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-paler);
}
.price-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--pink-pale);
}
.price-list-item:last-child { border-bottom: none; }
.price-list-item .name { color: var(--pink-darker); font-weight: 500; }
.price-list-item .price { color: var(--pink-primary); font-weight: 700; }

/* ============= FLOATING WHATSAPP BUTTON ============= */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-bright), var(--pink-primary));
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-pink);
  z-index: 900;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.fab-wa:hover {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  color: var(--white) !important;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.5), var(--shadow-pink); }
  50% { box-shadow: 0 0 0 12px rgba(255, 64, 129, 0), var(--shadow-pink); }
}
@media (max-width: 600px) {
  .fab-wa { width: 48px; height: 48px; font-size: 1.2rem; bottom: 16px; right: 16px; }
}

/* ============= ALERTS (more variants used by admin/customer pages) ============= */
.alert-success-light { background: var(--pink-paler); color: var(--pink-darker); border-left-color: var(--pink-bright); }
.alert-warning-light { background: var(--pink-pale); color: var(--pink-darker); border-left-color: var(--pink-primary); }
.alert-danger-light { background: var(--pink-pale); color: var(--pink-darker); border-left-color: var(--pink-dark); }

/* ============= MISC HELPERS ============= */
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.font-bold { font-weight: 700; }
.font-semi { font-weight: 600; }

/* ============= BUTTON DANGER (pink dark variant for cancel actions) ============= */
.btn-danger {
  background: var(--pink-dark);
  color: var(--white);
}
.btn-danger:hover { background: var(--pink-darker); color: var(--white); box-shadow: var(--shadow-md); }
