/* ═══════════════════════════════════════════════════════
   NEW DESIGN SYSTEM — nd.css
   Warm minimal palette, Frank Ruhl + Heebo typography
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&family=Frank+Ruhl+Libre:wght@300;400;500;700;800&display=swap');

@font-face {
  font-family: 'GadiAlmog';
  src: url('fonts/gadi-almog/gadi-almog-regular-aaa.woff2') format('woff2'),
       url('fonts/gadi-almog/gadi-almog-regular-aaa.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ── */
:root {
  --nd-bg:          hsl(30, 30%, 98%);
  --nd-fg:          hsl(25, 20%, 15%);
  --nd-card:        hsl(30, 25%, 97%);
  --nd-card-alt:    hsl(30, 20%, 94%);
  --nd-primary:     hsl(348, 35%, 55%);
  --nd-primary-fg:  hsl(0, 0%, 100%);
  --nd-secondary:   hsl(30, 25%, 93%);
  --nd-muted:       hsl(30, 15%, 94%);
  --nd-muted-fg:    hsl(25, 10%, 45%);
  --nd-accent:      hsl(38, 50%, 72%);
  --nd-border:      hsl(30, 15%, 88%);
  --nd-radius:      0.75rem;
  --nd-font-body:   'Heebo', sans-serif;
  --nd-font-head:   'Frank Ruhl Libre', serif;
  --nd-font-hand:   'GadiAlmog', 'Frank Ruhl Libre', serif;
}

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

html { scroll-behavior: smooth; }

body.nd {
  font-family: var(--nd-font-body);
  background: var(--nd-bg);
  color: var(--nd-fg);
  direction: rtl;
  line-height: 1.6;
}

/* ── Typography ── */
.nd h1,.nd h2,.nd h3,.nd h4 {
  font-family: var(--nd-font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--nd-fg);
}

.nd .font-frank { font-family: var(--nd-font-head); }

/* ── Layout helpers ── */
.nd-wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.nd-section { padding: 6rem 0; }
.nd-section-alt { background: var(--nd-card); }

/* ── Labels / Eyebrow ── */
.nd-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nd-primary);
  margin-bottom: 0.75rem;
}

/* ── Section headings ── */
.nd-heading {
  font-family: var(--nd-font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--nd-fg);
}

.nd-subheading {
  color: var(--nd-muted-fg);
  font-size: 1rem;
  max-width: 38rem;
  line-height: 1.7;
  margin-top: 1rem;
}

/* ── Buttons ── */
.nd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: var(--nd-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.nd-btn:active { transform: scale(0.97); }

.nd-btn-primary {
  background: var(--nd-primary);
  color: var(--nd-primary-fg);
  box-shadow: 0 4px 18px hsl(348 35% 55% / 0.3);
}
.nd-btn-primary:hover {
  background: hsl(348, 38%, 48%);
  box-shadow: 0 6px 24px hsl(348 35% 55% / 0.4);
}

.nd-btn-outline {
  background: transparent;
  color: var(--nd-fg);
  border: 1.5px solid var(--nd-border);
}
.nd-btn-outline:hover {
  border-color: var(--nd-primary);
  color: var(--nd-primary);
}

/* ── Cards ── */
.nd-card {
  background: var(--nd-card);
  border: 1px solid var(--nd-border);
  border-radius: 1rem;
  padding: 2rem;
}

/* ── Navbar ── */
.nd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
.nd-nav.scrolled {
  background: hsl(30 30% 98% / 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--nd-border);
}
.nd-nav__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nd-nav__logo {
  font-family: var(--nd-font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--nd-fg);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  background: none;
  border: none;
  padding: 0;
}
@media (max-width: 768px) {
  .nd-nav__inner {
    position: relative;
    justify-content: center;
    padding: 0 1rem;
  }
  .nd-hamburger {
    position: absolute;
    left: 0.75rem;
  }
}
.nd-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nd-nav__links a,.nd-nav__links button {
  background: none; border: none;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-family: var(--nd-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nd-muted-fg);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nd-nav__links a:hover,.nd-nav__links button:hover,
.nd-nav__links a.active,.nd-nav__links button.active {
  color: var(--nd-fg);
  background: var(--nd-secondary);
}
.nd-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* hamburger */
.nd-hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 0.5rem;
  color: var(--nd-fg);
}
/* ── Mobile menu ── */
/* Backdrop */
.nd-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: hsl(30 30% 10% / 0.45);
  z-index: 997;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nd-mobile-backdrop.open { opacity: 1; pointer-events: auto; }

.nd-mobile-menu {
  position: fixed;
  top: 72px;              /* starts below navbar — no overlap with logo/accessibility */
  left: 0;                /* opens from LEFT */
  width: min(300px, 88vw);
  height: calc(100% - 72px);
  background: hsl(30, 30%, 98%);
  box-shadow: 4px 0 28px hsl(348 35% 55% / 0.15);
  z-index: 998;           /* below navbar (1000), above backdrop (997) */
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-right: 1px solid var(--nd-border);
  /* slide-in from left */
  transform: translateX(-110%);
  /* delay visibility:hidden until after slide-out finishes (0.32s) */
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.32s;
  visibility: hidden;
}
.nd-mobile-menu.open {
  transform: translateX(0);
  /* make visible immediately on open */
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
  visibility: visible;
}

.nd-mobile-menu__header {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--nd-border);
  background: linear-gradient(135deg, hsl(348 35% 97%), hsl(38 50% 96%));
  flex-shrink: 0;
}
.nd-mobile-menu__logo {
  display: block;
  font-family: var(--nd-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--nd-fg);
  margin-bottom: 0.2rem;
}
.nd-mobile-menu__sub {
  font-family: var(--nd-font-body);
  font-size: 0.78rem;
  color: var(--nd-muted-fg);
}
.nd-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.5rem 0;
}
.nd-mobile-menu__nav button {
  background: none; border: none;
  font-family: var(--nd-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nd-fg);
  cursor: pointer;
  padding: 0.85rem 1.5rem;
  text-align: right;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--nd-border);
}
.nd-mobile-menu__nav button:last-child { border-bottom: none; }
.nd-mobile-menu__nav button:hover {
  background: hsl(348 35% 55% / 0.07);
  color: var(--nd-primary);
}
.nd-mobile-menu__footer {
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 1px solid var(--nd-border);
  flex-shrink: 0;
}
.nd-mobile-close { display: none; }

@media (max-width: 768px) {
  .nd-hamburger { display: flex; }
  .nd-nav__links { display: none; }
}

/* ── Hero ── */
.nd-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nd-hero__bg {
  position: absolute;
  inset: 0;
}
.nd-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    hsl(30 30% 98% / 0.95) 0%,
    hsl(30 30% 98% / 0.80) 40%,
    hsl(30 30% 98% / 0.30) 100%
  );
}
.nd-hero__content {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  width: 100%;
}
.nd-hero__inner { max-width: 32rem; }
.nd-hero__title {
  font-family: var(--nd-font-head);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--nd-fg);
  margin: 0.75rem 0 1.25rem;
}
.nd-hero__title span { color: var(--nd-primary); }
.nd-hero__sub {
  font-size: 1.0625rem;
  color: var(--nd-muted-fg);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}
.nd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}
.nd-hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.nd-stat { text-align: center; }
.nd-stat__num {
  font-family: var(--nd-font-head);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--nd-fg);
}
.nd-stat__label {
  font-size: 0.75rem;
  color: var(--nd-muted-fg);
  margin-top: 0.2rem;
}

/* ── About ── */
.nd-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.nd-about__img-wrap {
  position: relative;
}
.nd-about__img-wrap img {
  border-radius: 1rem;
  width: 100%;
  object-fit: cover;
  max-height: 520px;
  box-shadow: 0 20px 60px hsl(25 20% 15% / 0.12);
}
.nd-about__deco-1 {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  width: 8rem; height: 8rem;
  background: hsl(348 35% 55% / 0.1);
  border-radius: 1rem;
  z-index: -1;
}
.nd-about__deco-2 {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  width: 6rem; height: 6rem;
  background: hsl(38 50% 72% / 0.25);
  border-radius: 50%;
  z-index: -1;
}
.nd-about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.nd-value-card {
  background: var(--nd-card);
  border: 1px solid var(--nd-border);
  border-radius: var(--nd-radius);
  padding: 1rem;
}
.nd-value-card svg { color: var(--nd-primary); margin-bottom: 0.5rem; }
.nd-value-card h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.nd-value-card p { font-size: 0.75rem; color: var(--nd-muted-fg); }

/* ── Services ── */
.nd-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.nd-service-item + .nd-service-item { margin-top: 5rem; }
.nd-service-item.reverse { direction: ltr; }
.nd-service-item.reverse > * { direction: rtl; }
.nd-service-item img {
  border-radius: 1rem;
  width: 100%;
  height: 18rem;
  object-fit: cover;
  box-shadow: 0 10px 40px hsl(25 20% 15% / 0.1);
}
.nd-service-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--nd-muted-fg);
  margin-top: 1rem;
}
.nd-feature-list { list-style: none; margin: 1.25rem 0; }
.nd-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--nd-fg);
  padding: 0.3rem 0;
}
.nd-feature-list li svg { color: var(--nd-primary); flex-shrink: 0; margin-top: 2px; }

/* ── Coaching Plans ── */
.nd-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.nd-plan {
  border-radius: 1rem;
  border: 1.5px solid var(--nd-border);
  padding: 2rem;
  background: var(--nd-bg);
  display: flex;
  flex-direction: column;
  position: relative;
}
.nd-plan.featured {
  border-color: var(--nd-primary);
  background: hsl(348 35% 55% / 0.04);
  box-shadow: 0 8px 32px hsl(348 35% 55% / 0.12);
}
.nd-plan__badge {
  position: absolute;
  top: -0.875rem;
  right: 1.5rem;
  background: var(--nd-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nd-plan__name {
  font-family: var(--nd-font-head);
  font-size: 1.25rem;
  font-weight: 700;
}
.nd-plan__subtitle { font-size: 0.8rem; color: var(--nd-primary); margin-top: 0.2rem; }
.nd-plan__desc { font-size: 0.875rem; color: var(--nd-muted-fg); margin: 0.75rem 0; line-height: 1.6; }
.nd-plan__duration {
  display: inline-block;
  background: var(--nd-secondary);
  color: var(--nd-fg);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.nd-plan__features { list-style: none; flex: 1; }
.nd-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.3rem 0;
}
.nd-plan__features li svg { color: var(--nd-primary); flex-shrink: 0; margin-top: 2px; }
.nd-plan__cta { margin-top: 1.5rem; }

/* ── Testimonials ── */
.nd-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.nd-testimonial {
  background: var(--nd-bg);
  border: 1px solid var(--nd-border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}
.nd-testimonial__quote {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  opacity: 0.15;
  color: var(--nd-primary);
}
.nd-testimonial__stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.nd-testimonial__stars svg { color: var(--nd-accent); fill: var(--nd-accent); }
.nd-testimonial__text { font-size: 0.9375rem; line-height: 1.7; color: var(--nd-fg); }
.nd-testimonial__author { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--nd-border); }
.nd-testimonial__name { font-size: 0.875rem; font-weight: 700; }
.nd-testimonial__service { font-size: 0.75rem; color: var(--nd-muted-fg); margin-top: 0.15rem; }

/* ── Contact ── */
.nd-contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.nd-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--nd-fg);
}
.nd-form input,.nd-form textarea,.nd-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--nd-border);
  border-radius: var(--nd-radius);
  font-family: var(--nd-font-body);
  font-size: 0.9rem;
  background: var(--nd-bg);
  color: var(--nd-fg);
  transition: border-color 0.2s;
  outline: none;
  direction: rtl;
}
.nd-form input:focus,.nd-form textarea:focus,.nd-form select:focus {
  border-color: var(--nd-primary);
}
.nd-form textarea { resize: vertical; min-height: 7rem; }
.nd-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nd-form .field { margin-bottom: 1.25rem; }

.nd-contact-info { }
.nd-contact-info h3 {
  font-family: var(--nd-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.nd-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.nd-contact-item__icon {
  width: 2.5rem; height: 2.5rem;
  background: hsl(348 35% 55% / 0.1);
  border-radius: var(--nd-radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--nd-primary);
}
.nd-contact-item__label { font-size: 0.7rem; color: var(--nd-muted-fg); }
.nd-contact-item__value { font-size: 0.875rem; font-weight: 600; color: var(--nd-fg); text-decoration: none; }
.nd-contact-item__value:hover { color: var(--nd-primary); }
.nd-wa-banner {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--nd-radius);
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 1.5rem;
}
.nd-wa-banner:hover { background: #dcfce7; }
.nd-wa-banner p { font-size: 0.875rem; font-weight: 600; color: #15803d; }
.nd-wa-banner span { font-size: 0.75rem; color: #16a34a; }

/* ── Footer ── */
.nd-footer {
  border-top: 1px solid var(--nd-border);
  padding: 2rem 0;
  background: var(--nd-bg);
}
.nd-footer__inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nd-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--nd-font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--nd-fg);
}
.nd-footer__brand span { font-family: var(--nd-font-body); font-size: 0.875rem; color: var(--nd-muted-fg); font-weight: 400; }
.nd-footer__social {
  display: flex;
  gap: 0.75rem;
}
.nd-footer__social a {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--nd-secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--nd-muted-fg);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nd-footer__social a:hover { background: hsl(348 35% 55% / 0.15); color: var(--nd-primary); }
.nd-footer__copy { font-size: 0.75rem; color: var(--nd-muted-fg); }

/* ── Floating WhatsApp ── */
.nd-wa-float {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  width: 3.25rem; height: 3.25rem;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  z-index: 9990;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s;
}
.nd-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.52);
}

/* ── Scroll animations ── */
.nd-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.nd-animate.visible {
  opacity: 1;
  transform: none;
}
.nd-animate-delay-1 { transition-delay: 0.1s; }
.nd-animate-delay-2 { transition-delay: 0.2s; }
.nd-animate-delay-3 { transition-delay: 0.3s; }

/* ── Admin sidebar layout ── */
.nd-admin {
  display: flex;
  min-height: 100vh;
  background: var(--nd-bg);
  direction: rtl;
}
.nd-admin-sidebar {
  width: 14rem;
  background: var(--nd-card);
  border-left: 1px solid var(--nd-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.nd-admin-sidebar__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--nd-border);
}
.nd-admin-sidebar__logo {
  font-family: var(--nd-font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--nd-fg);
  text-decoration: none;
  display: block;
}
.nd-admin-sidebar__sub { font-size: 0.7rem; color: var(--nd-muted-fg); margin-top: 0.2rem; }
.nd-admin-nav { padding: 0.75rem; flex: 1; }
.nd-admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nd-muted-fg);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 0.125rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: right;
}
.nd-admin-nav-item:hover { background: var(--nd-muted); color: var(--nd-fg); }
.nd-admin-nav-item.active { background: hsl(348 35% 55% / 0.1); color: var(--nd-primary); font-weight: 600; }
.nd-admin-nav-item svg { flex-shrink: 0; }
.nd-admin-content { flex: 1; overflow: auto; padding: 2rem; }
.nd-admin-page-title { font-family: var(--nd-font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }

/* stat cards */
.nd-admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 2.5rem; }
.nd-admin-stat {
  background: var(--nd-card);
  border: 1px solid var(--nd-border);
  border-radius: 0.875rem;
  padding: 1.25rem;
}
.nd-admin-stat__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
}
.nd-admin-stat__num { font-family: var(--nd-font-head); font-size: 1.75rem; font-weight: 700; }
.nd-admin-stat__label { font-size: 0.75rem; color: var(--nd-muted-fg); margin-top: 0.2rem; }

/* admin table */
.nd-table-wrap {
  background: var(--nd-card);
  border: 1px solid var(--nd-border);
  border-radius: 0.875rem;
  overflow: hidden;
}
.nd-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.nd-table thead tr { background: var(--nd-muted); border-bottom: 1px solid var(--nd-border); }
.nd-table th { padding: 0.75rem 1rem; text-align: right; font-weight: 600; color: var(--nd-muted-fg); font-size: 0.8rem; }
.nd-table td { padding: 0.75rem 1rem; border-bottom: 1px solid hsl(30 15% 88% / 0.5); color: var(--nd-fg); }
.nd-table tbody tr:last-child td { border-bottom: none; }
.nd-table tbody tr:hover td { background: hsl(30 15% 94% / 0.5); }

/* status badges */
.nd-badge { padding: 0.2rem 0.625rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 600; }
.nd-badge-pending  { background: #fef3c7; color: #92400e; }
.nd-badge-confirmed{ background: #d1fae5; color: #065f46; }
.nd-badge-cancelled{ background: #fee2e2; color: #991b1b; }
.nd-badge-completed{ background: #dbeafe; color: #1e40af; }

/* admin tabs */
.nd-admin-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.nd-admin-tab {
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  border: 1.5px solid var(--nd-border);
  background: none;
  font-size: 0.875rem; font-weight: 500;
  color: var(--nd-muted-fg);
  cursor: pointer;
  transition: all 0.2s;
}
.nd-admin-tab:hover { border-color: var(--nd-primary); color: var(--nd-primary); }
.nd-admin-tab.active { background: var(--nd-primary); color: white; border-color: transparent; }

/* mobile admin nav at bottom */
.nd-admin-mobile-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--nd-card);
  border-top: 1px solid var(--nd-border);
  z-index: 50;
  padding: 0.5rem 0;
}
.nd-admin-mobile-nav__items { display: flex; justify-content: space-around; }
.nd-admin-mobile-nav a,.nd-admin-mobile-nav button {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; font-size: 0.65rem; color: var(--nd-muted-fg);
  text-decoration: none; background: none; border: none; cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.nd-admin-mobile-nav a.active,.nd-admin-mobile-nav button.active { color: var(--nd-primary); }

@media (max-width: 768px) {
  .nd-admin-sidebar { display: none; }
  .nd-admin-mobile-nav { display: block; }
  .nd-admin-content { padding: 1rem 1rem 5rem; }
  .nd-admin-stats { grid-template-columns: 1fr 1fr; }
  .nd-about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .nd-service-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .nd-service-item.reverse { direction: rtl; }
  .nd-plans-grid { grid-template-columns: 1fr; }
  .nd-testimonials-grid { grid-template-columns: 1fr; }
  .nd-contact-grid { grid-template-columns: 1fr; }
  .nd-hero__stats { gap: 1.5rem; }
  .nd-form .row { grid-template-columns: 1fr; }
}
