/* ═══════════════════════════════════════════════════════════════════════════
   ProfessioNAIL · Nail Salon Website
   Public site  : editorial dark/light contrast  (LeLuxe reference)
   Booking zone : orange bar + navy bar          (abcapp.us reference)
   Fonts : Playfair Display (headings) · DM Sans (body)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  /* Brand accent */
  --accent:        #f85a05;
  --accent-dark:   #de4d04;
  --accent-pale:   #fff2ea;
  --navy:          #1e2747;

  /* Gold/warm secondary accent */
  --gold:          #c9963c;
  --gold-pale:     #fdf5e8;

  /* Public site surfaces — warm ivory instead of cold gray */
  --page:          #ffffff;
  --page-alt:      #faf5f0;   /* warm cream for alternating sections */
  --page-warm:     #fdf0e8;   /* lightest blush for subtle highlights */
  --page-dark:     #0f0c0a;   /* deep warm-black hero sections */
  --dark-card:     #1c1714;   /* warm dark card */

  /* Typography */
  --text:          #111111;
  --text-mid:      #4a4540;
  --text-muted:    #8c8580;

  /* Components */
  --border:        #e8e2db;
  --radius:        14px;
  --shadow:        0 8px 32px rgba(0,0,0,.07);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.14);

  /* Nav */
  --nav-h:         76px;
}

/* ── Base ──────────────────────────────────────────────────────────────────── */
html {
  font-size: 15px;
  scroll-behavior: smooth;
}
@media (min-width: 992px) { html { font-size: 16px; } }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  background: var(--page);
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: inherit;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 600; font-family: 'DM Sans', sans-serif; }
p  { line-height: 1.75; }

.display-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

/* ── Focus ring ────────────────────────────────────────────────────────────── */
.btn:focus, .btn:active:focus,
.form-control:focus, .form-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent-pale), 0 0 0 4px rgba(248,90,5,.22) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   NAVBAR — always dark navy (never turns white)
   ══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow 0.35s ease;
}

.site-header .navbar {
  background: var(--navy) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  padding: 0;
  height: var(--nav-h);
}

.site-header.scrolled .navbar {
  background: rgba(18, 24, 54, 0.98) !important;
  border-bottom-color: rgba(255,255,255,0.1) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

/* Brand */
.navbar-brand {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.96) !important;
  text-decoration: none;
}

/* Nav links — always white on dark bar */
.nav-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82) !important;
  padding: 0.4rem 0.9rem !important;
  transition: color 0.25s;
  position: relative;
}

.nav-link:hover { color: var(--accent) !important; }

/* ══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════════════ */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 0.75rem 2rem;
  transition: all 0.22s ease;
  border: 1px solid transparent;
}

/* Orange primary */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(248,90,5,.30);
}

/* Dark filled */
.btn-dark-filled {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-dark-filled:hover {
  background: #333;
  border-color: #333;
  color: #fff;
  transform: translateY(-1px);
}

/* Outline dark */
.btn-outline-dark-custom {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline-dark-custom:hover {
  background: var(--text);
  color: #fff;
}

/* White outline (on dark bg) */
.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.65);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* Bootstrap overrides → map to accent */
.btn-success {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-success:hover, .btn-success:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(248,90,5,.28);
}

.btn-primary {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #333;
  border-color: #333;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-success {
  color: var(--accent);
  border: 1px solid var(--accent);
  background: transparent;
}
.btn-outline-success:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-danger { background: #8f2a2a; border-color: #8f2a2a; color: #fff; }
.btn-danger:hover { background: #6e1f1f; border-color: #6e1f1f; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════════════════
   SECTION BASE CLASSES
   ══════════════════════════════════════════════════════════════════════════ */
.section        { padding: 5rem 0; }
.section-sm     { padding: 3rem 0; }
.section-alt    { background: var(--page-alt); }
.section-dark   { background: var(--page-dark); color: #fff; }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p { color: inherit; }

.section-header { margin-bottom: 2.75rem; }

/* ══════════════════════════════════════════════════════════════════════════
   HERO — full-viewport dark editorial
   ══════════════════════════════════════════════════════════════════════════ */
.hero-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  background:
    linear-gradient(160deg, rgba(8,6,4,.72) 0%, rgba(18,12,6,.54) 50%, rgba(10,8,4,.70) 100%),
    url('/images/salon-hero.jpg') center / cover no-repeat;
  background-attachment: fixed;
  padding-top: var(--nav-h);
}

.hero-full .hero-inner { padding: 4rem 1rem; }

.hero-full h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.hero-full .hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  animation: bounce 2.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Page banner — inner-page dark strip ─────────────────────────────────── */
.page-banner {
  background:
    linear-gradient(135deg, rgba(8,6,4,.85) 0%, rgba(20,12,4,.78) 100%),
    url('/images/salon-hero.jpg') center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 1rem 3.5rem;
}

.page-banner h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.6rem;
}

.page-banner p {
  color: rgba(255,255,255,.62);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVICE TILES — photo-background cards (homepage)
   ══════════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 992px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--page-dark);
  display: block;
  text-decoration: none;
}

/* Orange accent bar slides in at top on hover */
.service-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.30s ease;
  z-index: 3;
}
.service-tile:hover::before { transform: scaleX(1); }

.service-tile-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.25,.46,.45,.94);
}
.service-tile:hover .service-tile-img { transform: scale(1.07); }

.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,4,.93) 0%,
    rgba(10,8,4,.45) 55%,
    rgba(10,8,4,.10) 100%
  );
  transition: background 0.35s ease;
}
.service-tile:hover .service-tile-overlay {
  background: linear-gradient(
    to top,
    rgba(10,8,4,.97) 0%,
    rgba(10,8,4,.62) 60%,
    rgba(10,8,4,.22) 100%
  );
}

.service-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  color: #fff;
  z-index: 1;
  transition: padding 0.30s ease;
}
.service-tile:hover .service-tile-content { padding-bottom: 2rem; }

.service-tile-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.service-tile h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.service-tile p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.66);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.26s ease 0.05s, transform 0.26s ease 0.05s;
}
.service-tile:hover p { opacity: 1; transform: translateY(0); }

.service-tile .link-accent {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(248,90,5,.45);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.service-tile .link-accent:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* Generic accent link */
.link-accent {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.link-accent:hover { color: var(--accent-dark); }

/* ══════════════════════════════════════════════════════════════════════════
   PROMOTIONS STRIP — dark band
   ══════════════════════════════════════════════════════════════════════════ */
.promo-strip {
  background: var(--page-dark);
  padding: 5rem 1rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(248,90,5,.08) 0%, transparent 60%);
  pointer-events: none;
}

.promo-strip h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.promo-strip p {
  color: rgba(255,255,255,.55);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto 2.25rem;
  font-weight: 300;
}

.promo-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT SPLIT — image + text
   ══════════════════════════════════════════════════════════════════════════ */
.split-grid {
  display: grid;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 768px) {
  .split-grid { grid-template-columns: 1fr 1fr; }
}

.split-img {
  min-height: 400px;
  background: center / cover no-repeat var(--page-dark);
}

.split-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .split-content { padding: 2.5rem 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════════════════════ */
.faq-list { list-style: none; padding: 0; margin: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.22s ease;
  color: var(--text-muted);
}

.faq-btn[aria-expanded="true"] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.90rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 1.25rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES PAGE — dark/gold luxury design
   ══════════════════════════════════════════════════════════════════════════ */

/* Dark background wrapper for the full services section */
.svc-dark-wrap {
  background: #0d0b09;
  padding-bottom: 5rem;
}

/* Sticky category navigation bar — dark theme */
.svc-sticky-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 200;
  background: rgba(13, 11, 9, 0.97);
  border-bottom: 1px solid rgba(201,150,60,0.18);
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
}

.svc-sticky-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.65rem 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.svc-sticky-inner::-webkit-scrollbar { display: none; }

.svc-nav-btn {
  flex-shrink: 0;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  border: 1px solid rgba(201,150,60,0.35);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(201,150,60,0.70);
  text-decoration: none;
  transition: all 0.18s;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.svc-nav-btn:hover  { border-color: var(--gold); color: var(--gold); }
.svc-nav-btn.active { border-color: var(--gold); background: var(--gold); color: #111; }

/* Category card — dark luxury */
.svc-cat-card {
  background: #1c1814;
  border-radius: 12px;
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid rgba(201,150,60,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  scroll-margin-top: calc(var(--nav-h) + 68px);
}

/* Category title — gold, uppercase, above photos */
.svc-cat-title {
  text-align: center;
  padding: 1.75rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(201,150,60,0.12);
}
.svc-cat-title h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

/* Two-image row */
.svc-cat-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.svc-cat-photos img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: opacity 0.3s;
}
.svc-cat-photos img:hover { opacity: 1; }

/* Price list body */
.svc-cat-pricebody { padding: 0 1.75rem 0.5rem; }

.svc-cat-tagline {
  font-size: 0.80rem;
  color: rgba(255,255,255,.38);
  margin: 1.1rem 0 0.75rem;
  line-height: 1.55;
  font-style: italic;
  text-align: center;
  border-bottom: 1px solid rgba(201,150,60,0.1);
  padding-bottom: 0.85rem;
}

/* Service price list */
.service-price-list { list-style: none; padding: 0; margin: 0; }

.service-price-row {
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
  gap: 0;
}
.service-price-row:last-child { border-bottom: none; }

/* Left: name + description */
.svc-price-left {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex-shrink: 0;
  max-width: 58%;
}
.service-price-name {
  color: var(--gold);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.35;
}
.service-price-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,.38);
  line-height: 1.4;
}

/* Dotted leader line */
.svc-price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,150,60,0.25);
  margin: 0 0.6rem 4px;
  min-width: 1rem;
}

/* Right: price + duration */
.svc-price-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
}
.service-price-amount {
  font-weight: 700;
  color: #fff;
  font-size: 1.0rem;
  white-space: nowrap;
}
.service-price-meta {
  color: rgba(255,255,255,.30);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Call-to-book badge */
.svc-call-tag {
  display: inline-block;
  background: rgba(248,90,5,0.15);
  color: var(--accent);
  font-size: 0.63rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.05rem 0.4rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  letter-spacing: 0.04em;
}
.service-row-inquiry { opacity: 0.7; }

/* Footer CTA */
.svc-cat-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(201,150,60,0.1);
  margin-top: 0.5rem;
}

/* Empty state */
.svc-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: rgba(255,255,255,.40);
  font-size: 0.92rem;
}
.svc-empty a { color: var(--accent); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════════════════
   GALLERY GRID
   ══════════════════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--page-dark);
  cursor: pointer;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.60s cubic-bezier(0.25,.46,.45,.94);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,4,0);
  transition: background 0.30s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10,8,4,.30); }

.gallery-zoom-icon {
  color: #fff; font-size: 1.6rem;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }

/* ══════════════════════════════════════════════════════════════════════════
   POLICY CARDS
   ══════════════════════════════════════════════════════════════════════════ */
.policy-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
}

.policy-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
}

.policy-icon {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  display: block;
}

.policy-card h3 {
  color: #fff;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.policy-card p {
  color: rgba(255,255,255,.58);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-info-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1rem;
  margin-top: 0.5rem;
}

.hours-day { font-size: 0.85rem; color: var(--text-mid); }
.hours-time { font-size: 0.85rem; color: var(--text); font-weight: 500; }

.map-placeholder {
  background: var(--page-alt);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 0.4rem; left: 1.25rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.90rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}

.testimonial-stars { color: var(--accent); font-size: 0.8rem; margin-bottom: 0.5rem; }
.testimonial-author {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════════════════════════
   STAT / FEATURE TILES (About page)
   ══════════════════════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--page-alt);
  border-radius: var(--radius);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════════════
   GENERIC CARD  (status-card is reused by booking confirmation/lookup)
   ══════════════════════════════════════════════════════════════════════════ */
.status-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.booking-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════════════════
   LOOKUP / CONFIRMATION CARDS (BookingLookup, BookingConfirmation)
   ══════════════════════════════════════════════════════════════════════════ */
.lookup-results { display: grid; gap: 1.25rem; }

.lookup-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.22s, transform 0.22s;
}
.lookup-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.lookup-summary {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .lookup-summary { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

.lookup-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.lookup-value { margin-top: 0.2rem; font-weight: 500; color: var(--text); }

/* Confirmation receipt card */
.confirmation-card { max-width: 860px; }

.receipt-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 1.5rem;
}

.receipt-checkmark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.confirmation-overview {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .confirmation-overview { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

.confirmation-overview-item {
  background: var(--page-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
}

.confirmation-overview-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.confirmation-overview-value {
  margin-top: 0.35rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.confirmation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 1rem;
  margin: 0;
}

.confirmation-grid dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

.confirmation-grid dd {
  margin: 0.2rem 0 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.self-service-grid { display: grid; gap: 1rem; }

@media (min-width: 768px) {
  .self-service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

.self-service-card {
  background: var(--page-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
}

.self-service-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.self-service-value { margin: 0.3rem 0 0.4rem; font-weight: 600; color: var(--text); }

.booking-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.3rem 1rem;
  border-radius: 3px;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-status-badge-active     { background: rgba(248,90,5,.10); color: var(--accent);   border: 1px solid rgba(248,90,5,.30); }
.booking-status-badge-cancelled  { background: rgba(143,42,42,.10); color: #8f2a2a;         border: 1px solid rgba(143,42,42,.25); }
.booking-status-badge-rescheduled{ background: rgba(35,43,77,.10);  color: var(--navy);     border: 1px solid rgba(35,43,77,.25); }

/* Slot cards (BookingConfirmation reschedule) */
.slot-grid { display: grid; gap: 0.75rem; }

@media (min-width: 768px) {
  .slot-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

.slot-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 2.2rem 1rem 1.1rem;
  cursor: pointer;
  transition: all 0.20s ease;
  position: relative;
}

.slot-card:hover {
  border-color: var(--accent);
  background: var(--accent-pale);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(248,90,5,.14);
}

.slot-card input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }

.slot-card:has(input:checked) {
  border-color: var(--accent-dark);
  background: var(--accent-pale);
  box-shadow: 0 4px 16px rgba(248,90,5,.18);
}

.slot-check {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.18s, transform 0.20s;
}

.slot-card:has(input:checked) .slot-check { opacity: 1; transform: scale(1); }

.slot-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
}

.slot-tech {
  font-size: 0.84rem;
  color: var(--text-mid);
  font-weight: 500;
  display: block;
  margin-top: 0.1rem;
}

.slot-end {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.05rem;
}

/* Step heading (confirmation) */
.step-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.step-heading h2 { margin: 0; font-size: 1.15rem; font-family: 'DM Sans', sans-serif; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.lookup-form { display: grid; gap: 1rem; }

/* ── Ornament divider (used on lookup & confirmation pages) ─────────────── */
.ornament {
  text-align: center;
  position: relative;
  margin: 1.75rem 0;
}

.ornament::before,
.ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: calc(50% - 1.4rem);
  background: var(--border);
}

.ornament::before { left: 0; }
.ornament::after  { right: 0; }

.ornament-icon {
  font-size: 0.85rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════════════════════════════════
   ╔═══════════════════════════════╗
   ║  BOOKING ZONE — orange/navy  ║
   ╚═══════════════════════════════╝
   ══════════════════════════════════════════════════════════════════════════ */

/* Top orange bar */
.bk-top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: var(--accent);
  z-index: 500;
}

/* Centered inner container for both bars */
.bk-bar-inner {
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
}

.bk-back-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.bk-back-btn:hover { color: rgba(255,255,255,.82); }

.bk-salon-info {
  flex: 1;
  text-align: right;
  color: #fff;
  line-height: 1.2;
}

.bk-salon-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bk-salon-phone {
  font-size: 0.80rem;
  font-weight: 500;
  opacity: 0.85;
}

/* Bottom navy bar */
.bk-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--navy);
  z-index: 500;
}
.bk-bottom-bar .bk-bar-inner { justify-content: space-between; }

.bk-cart-btn {
  background: none;
  border: none;
  color: #fff;
  position: relative;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.80rem;
  font-family: 'DM Sans', sans-serif;
}

.bk-cart-icon { font-size: 1.5rem; }

.bk-cart-badge {
  position: absolute;
  top: -4px; right: -8px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-powered {
  font-size: 0.68rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  line-height: 1.3;
}

.bk-next-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 0.6rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.bk-next-btn:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: scale(1.04);
}

.bk-next-btn:disabled {
  background: rgba(255,255,255,.18);
  cursor: not-allowed;
  transform: none;
}

/* Page content area (between the two bars) */
.bk-content {
  padding-top: 56px;   /* top bar height */
  padding-bottom: 64px; /* bottom bar height */
  min-height: 100vh;
  background: #efefef;
}

.bk-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Address line */
.bk-address {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.85rem 0;
  justify-content: center;
}

.bk-address-pin { color: var(--accent); font-size: 0.9rem; }

/* Page heading */
.bk-page-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 1rem 0 1.25rem;
}

/* Customers selector */
.bk-customers {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.bk-customers-input {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  width: 90px;
  text-align: center;
}

/* Category accordion cards */
.bk-category {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.bk-cat-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.bk-cat-header:hover { background: rgba(248,90,5,.04); }

.bk-cat-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.bk-cat-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Accordion chevron — rotates when open */
.bk-cat-chevron {
  display: inline-block;
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.22s ease;
  line-height: 1;
  margin-left: 0.25rem;
}

.bk-cat-header[aria-expanded="true"] .bk-cat-chevron {
  transform: rotate(180deg);
}

/* Selected service chip */
.bk-selected-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.bk-chip-check {
  color: #22a053;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bk-chip-info { flex: 1; min-width: 0; }

.bk-chip-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bk-chip-meta { font-size: 0.78rem; color: var(--text-muted); }

.bk-chip-change {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}

.bk-chip-change:hover { color: var(--accent-dark); text-decoration: underline; }

.bk-cat-body { padding: 0 1.25rem; }

/* Individual service row */
.bk-service-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid #f0eeeb;
  cursor: pointer;
  transition: background 0.15s;
}

.bk-service-row:hover { background: var(--accent-pale); margin: 0 -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem; }

/* Checkbox-style indicator for multi-select service rows */
.bk-service-check {
  width: 22px; height: 22px;
  border-radius: 5px;
  border: 2px solid var(--border);
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  position: relative;
}

.bk-service-check.checked {
  border-color: #22a053;
  background: #22a053;
}

.bk-service-check.checked::after {
  content: '✓';
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.bk-service-name {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.bk-service-desc {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
  font-style: normal;
}

.bk-service-price-block {
  text-align: right;
  flex-shrink: 0;
}

.bk-service-from {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.bk-service-price {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.bk-service-duration {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Highlight a selected service row (multi-select basket) */
.bk-service-row-selected {
  background: rgba(34,160,83,.06);
}
.bk-service-row-selected .bk-service-name {
  font-weight: 600;
}

/* Date / tech / schedule summary fields */
.bk-summary-fields {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.bk-field-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bk-field-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  min-width: 75px;
}

.bk-field-value {
  flex: 1;
  background: #f5f5f5;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.bk-field-select {
  flex: 1;
  background: #f5f5f5;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  appearance: none;
}

/* Time grid — Morning / Afternoon / Evening */
.bk-time-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin: 0 -1.5rem 0;   /* bleed to card edges */
  border-bottom: 3px solid var(--accent);
  border-top: 1px solid var(--border);
}

.bk-time-col-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.75rem 0;
}

.bk-time-grid {
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1rem 0.75rem;
  margin-bottom: 1.25rem;
}

.bk-time-section {
  margin-bottom: 0.5rem;
}

.bk-time-section-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.bk-time-slot {
  display: block;
  padding: 0.55rem 0.3rem;
  text-align: center;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.80rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  position: relative;
}

.bk-time-slot:hover { background: var(--accent-pale); color: var(--accent); }

.bk-time-slot input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.bk-time-slot:has(input:checked),
.bk-time-slot.bk-slot-selected {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

/* 3-column time grid (Morning / Afternoon / Evening) */
.bk-time-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.bk-time-slot.unavailable {
  color: #cccccc;
  cursor: default;
  pointer-events: none;
}

.bk-time-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 1.25rem 0;
  text-align: center;
}

/* Details form inside booking zone */
.bk-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.bk-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.bk-form-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 576px) {
  .bk-form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.bk-input {
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.90rem;
  color: var(--text);
  transition: border-color 0.2s;
}

.bk-input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(248,90,5,.10);
}

.bk-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.bk-error {
  background: #fff3f0;
  border: 1px solid rgba(248,90,5,.35);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: #c03800;
  margin-bottom: 1rem;
}

.bk-field-error {
  display: block;
  font-size: 0.8rem;
  color: #c03800;
  margin-top: 0.3rem;
}

.bk-input-error {
  border-color: #c03800 !important;
  background: #fff8f6;
}

/* ── Flydown overlays ──────────────────────────────────────────────────── */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.38);
  z-index: 550;
  display: none;
}
.bk-overlay.open { display: block; }

@keyframes bkFlyDown {
  from { transform: translateX(-50%) translateY(-105%); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);     opacity: 1; }
}

.bk-flydown {
  position: fixed;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 100vw);
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.22);
  z-index: 600;
  display: none;
  overflow: hidden;
}
.bk-flydown.open {
  display: block;
  animation: bkFlyDown 0.26s cubic-bezier(.22,.68,0,1.2);
}

.bk-flydown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.85rem;
  border-bottom: 1px solid #f0eeeb;
}
.bk-flydown-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text);
}
.bk-flydown-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 0.2rem;
  transition: color 0.15s;
}
.bk-flydown-close:hover { color: var(--text); }
.bk-flydown-body {
  padding: 1.25rem;
  max-height: calc(70vh - 56px);
  overflow-y: auto;
}

/* Tech pill grid */
.bk-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.bk-tech-pill {
  padding: 0.6rem 1.35rem;
  border-radius: 99px;
  border: 2px solid var(--border);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.18s;
  line-height: 1;
}
.bk-tech-pill:hover  { border-color: var(--accent); color: var(--accent); }
.bk-tech-pill.active { border-color: var(--accent); background: var(--accent); color: #fff; }

/* Calendar flydown body — let Syncfusion fill naturally */
#bk-cal-body .e-calendar { box-shadow: none; border: none; width: 100%; }

/* Appointment display rows (Staff / Date / Hour) */
.bk-appt-rows {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  margin-bottom: 0.75rem;
}
.bk-appt-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid #f0eeeb;
  cursor: pointer;
  transition: background 0.15s;
}
.bk-appt-row:last-child { border-bottom: none; }
.bk-appt-row:hover      { background: rgba(248,90,5,.04); }
.bk-appt-row.no-click   { cursor: default; }
.bk-appt-row.no-click:hover { background: none; }

.bk-appt-row-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
  color: var(--accent);
}
.bk-appt-row-body { flex: 1; min-width: 0; }
.bk-appt-row-label {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  margin-bottom: 0.18rem;
}
.bk-appt-row-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bk-appt-row-value.filled {
  color: var(--text);
  font-weight: 700;
}
.bk-appt-row-chevron {
  color: var(--border);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Time filter tabs */
.bk-time-filter-bar {
  display: flex;
  gap: 0.5rem;
  background: #fff;
  padding: 1rem 1.25rem 0.75rem;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid #f0eeeb;
}
.bk-time-filter-btn {
  flex: 1;
  padding: 0.5rem 0.25rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}
.bk-time-filter-btn:hover  { border-color: var(--accent); color: var(--accent); }
.bk-time-filter-btn.active { border-color: var(--accent); background: var(--accent); color: #fff; }

/* Time slots panel (below filter bar) */
.bk-time-slots-panel {
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.75rem 1.25rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.bk-time-section { display: none; }
.bk-time-section.visible { display: block; }
.bk-time-section-label {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  padding: 0.6rem 0 0.4rem;
}
.bk-time-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 380px) { .bk-time-4col { grid-template-columns: repeat(3, 1fr); } }

/* Step heading */
.bk-step-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.9rem 0 1rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER — dark, 4-column
   ══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,.68);
  padding: 4.5rem 0 0;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,.40);
  line-height: 1.7;
  max-width: 230px;
  font-weight: 300;
}

.footer-divider {
  width: 30px; height: 2px;
  background: var(--accent);
  margin: 1.25rem 0;
}

.footer-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }

.footer-links a {
  color: rgba(255,255,255,.50);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.50);
  margin-bottom: 0.65rem;
  font-weight: 300;
  line-height: 1.55;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 0.76rem;
  color: rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════════════════
   FORMS (public pages)
   ══════════════════════════════════════════════════════════════════════════ */
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: #fff;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.90rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  background: #fff;
}

.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   FADE-IN ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up   { animation: fadeUp 0.60s ease both; }
.fade-up-1 { animation-delay: 0.10s; }
.fade-up-2 { animation-delay: 0.20s; }
.fade-up-3 { animation-delay: 0.32s; }

/* ══════════════════════════════════════════════════════════════════════════
   SYNCFUSION EJ2 — accent theme overrides
   ══════════════════════════════════════════════════════════════════════════ */
.e-input-group.e-control-wrapper:not(.e-float-icon-left),
.e-input-group:not(.e-float-icon-left) {
  border-color: var(--border);
  border-radius: 8px;
}

.e-input-group.e-control-wrapper.e-input-focus:not(.e-float-icon-left),
.e-input-group.e-input-focus:not(.e-float-icon-left) {
  border-color: var(--accent) !important;
}

.e-popup.e-datepicker .e-selected span,
.e-popup.e-datepicker .e-today span {
  background-color: var(--accent) !important;
  color: #fff !important;
}

.e-ddl.e-popup .e-list-item.e-active,
.e-ddl.e-popup .e-list-item.e-active:hover {
  background-color: var(--accent-pale) !important;
  color: var(--text) !important;
}

.e-input-group .e-input,
.e-input-group.e-control-wrapper .e-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.90rem;
  color: var(--text);
}
