:root {
  /* ── Purple / Violet accent palette ── */
  --gold:        #D4AF37;
  --gold-2:      #F5D060;
  --gold-light:  #FFF8DC;
  --gold-deep:   #7A5C00;
  --gold-glow:   rgba(212,175,55,0.12);
  --gold-bright: #FFE88A;

  /* ── Pure black backgrounds ── */
  --ink:         #000000;
  --ink-2:       #050507;
  --ink-3:       #08080c;
  --ink-4:       #0d0d12;

  /* ── Glass panels ── */
  --panel:       rgba(255,255,255,0.05);
  --panel-md:    rgba(255,255,255,0.03);
  --border:      rgba(212,175,55,0.22);
  --border-soft: rgba(255,255,255,0.06);

  /* ── Text — pure white on black ── */
  --text:        rgba(255,255,255,0.92);
  --text-soft:   rgba(255,255,255,0.70);
  --text-muted:  rgba(255,255,255,0.38);

  /* ── Shadows ── */
  --shadow:      0 20px 56px rgba(0,0,0,0.65);
  --shadow-gold: 0 14px 40px rgba(212,175,55,0.25);

  /* ── Radius ── */
  --radius-xl:   26px;
  --radius-lg:   18px;
  --radius-md:   12px;
  --radius-sm:   8px;
}


*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  background-color: #000000;
}

body {
  margin: 0;
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: var(--text);
  background: #000000;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body.admin-body {
  background: #000000;
  color: rgba(255,255,255,0.92);
}

body.admin-body h1,
body.admin-body h2,
body.admin-body h3,
body.admin-body h4,
body.admin-body h5,
body.admin-body h6 { color: #fff; }
body.admin-body .text-muted { color: rgba(255,255,255,0.40) !important; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(212,175,55,0.08), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(245,208,96,0.05), transparent 35%);
  opacity: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.text-gold {
  color: var(--gold) !important;
}

.text-muted,
.text-white-50 {
  color: var(--text-muted) !important;
}

.brand-logo,
.footer-logo,
.admin-brand-logo {
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  display: block;
  flex-shrink: 0;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  padding: 14px 0;
  background: rgba(4,3,7,0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#mainNav.scrolled {
  background: rgba(7, 7, 11, 0.88);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff !important;
}

.navbar-brand span {
  background: linear-gradient(90deg, #fff 0%, var(--gold-2) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 500;
  padding: 0.7rem 0.95rem !important;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold) !important;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: 1px solid rgba(212,175,55, 0.25);
  border-radius: 10px;
}

.navbar-toggler-icon {
  filter: brightness(1.1);
}

.btn-gold,
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-gold {
  padding: 12px 26px;
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  color: #0d0d12 !important;
  box-shadow: 0 16px 40px rgba(212,175,55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(212,175,55, 0.32);
}

.btn-outline-gold {
  padding: 11px 24px;
  background: rgba(255,255,255,0.04);
  color: var(--gold) !important;
  border: 1.5px solid rgba(212,175,55, 0.7);
}

.btn-outline-gold:hover {
  transform: translateY(-3px);
  background: rgba(212,175,55, 0.12);
  color: #fff !important;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 68%);
  filter: blur(6px);
  opacity: 0.9;
}
/* Hide cursor glow on touch devices — it causes layout jitter */
@media (hover: none) {
  .cursor-glow { display: none !important; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.navbar-toggler-custom {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,175,55, 0.24);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  padding: 0;
  cursor: pointer;
}

@media (max-width: 991px) {
  .navbar-toggler-custom {
    display: flex;
  }
}

.navbar-toggler-custom span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold-2);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggler-custom.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler-custom.open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-custom.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
}

.btn-nav-outline,
.btn-nav-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.08rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-nav-outline {
  color: var(--gold) !important;
  border: 1px solid rgba(212,175,55, 0.5);
  background: rgba(255,255,255,0.04);
}

.btn-nav-outline:hover,
.btn-nav-gold:hover {
  transform: translateY(-2px);
}

.btn-nav-gold {
  color: #0d0d12 !important;
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  box-shadow: 0 16px 34px rgba(212,175,55, 0.22);
}

.nav-link.nav-active {
  color: var(--gold) !important;
  position: relative;
}

.nav-link.nav-active::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.flash-container {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 1100;
  max-width: 360px;
}

.flash-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55, 0.2);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.flash-success {
  border-color: rgba(124, 224, 170, 0.34);
  background: rgba(124, 224, 170, 0.12);
}

.flash-danger {
  border-color: rgba(255, 123, 123, 0.34);
  background: rgba(255, 123, 123, 0.12);
}

.flash-close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.1rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 24px 0 20px;
  background: linear-gradient(180deg, rgba(6,5,9,0.98), #000000);
  border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-glow {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 70%);
  pointer-events: none;
}

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

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
}

.footer-brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-desc {
  color: rgba(255,255,255, 0.72);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 16px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--gold);
  border: 1px solid rgba(212,175,55, 0.2);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(212,175,55, 0.14);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255, 0.72);
  font-size: 0.92rem;
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 18px 44px rgba(18, 140, 126, 0.32);
  z-index: 1200;
  animation: pulse 2.8s infinite;
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.04);
}

.wa-float-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.35);
  animation: ring 1.8s infinite;
  pointer-events: none;
}

.page-header {
  position: relative;
  padding: 122px 0 72px;
  overflow: hidden;
  max-width: 100%;
  background: linear-gradient(135deg, rgba(11,10,15,0.96), rgba(24,20,20,0.96));
  border-bottom: 1px solid rgba(212,175,55,0.14);
}

.page-header-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.14), transparent 70%);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  color: #fff;
  margin-bottom: 8px;
}

.page-header-title span {
  color: var(--gold);
}

.page-header-sub {
  color: rgba(255,255,255, 0.76);
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.page-header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.glass-card {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.search-wrap {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}

.search-input {
  width: 100%;
  border: 1px solid rgba(212,175,55, 0.24);
  border-radius: 999px;
  padding: 12px 14px 12px 42px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55, 0.16);
  background: rgba(255,255,255,0.08);
}

.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-btn {
  border: 1px solid rgba(212,175,55, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.cat-btn:hover,
.cat-btn.active {
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  color: #0d0d12;
  border-color: transparent;
}

.svc-select-card {
  position: relative;
  min-height: 230px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55, 0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.svc-select-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,208,96, 0.72);
}

.svc-select-card.selected {
  border-color: rgba(245,208,96, 0.9);
  background: linear-gradient(145deg, rgba(245,208,96, 0.14), rgba(255,255,255,0.05));
}

.svc-select-check {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: transparent;
  transition: all 0.25s ease;
}

.svc-select-card.selected .svc-select-check {
  color: #0d0d12;
  background: linear-gradient(135deg, #F5D060, #D4AF37);
}

.svc-select-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55, 0.2), rgba(255,255,255,0.06));
  color: var(--gold-2);
  margin-bottom: 14px;
}

.svc-select-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  color: #fff;
  margin-bottom: 8px;
}

.svc-select-desc {
  color: rgba(255,255,255, 0.74);
  font-size: 0.95rem;
  line-height: 1.6;
  min-height: 52px;
}

.svc-select-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.svc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  color: var(--gold-2);
  font-weight: 700;
}

.svc-dur {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.premium-input {
  width: 100%;
  border: 1px solid rgba(212,175,55, 0.24);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}

.premium-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55, 0.16);
  background: rgba(255,255,255,0.08);
}

.time-slots-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-chip {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55, 0.24);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.time-chip:hover,
.time-chip.active {
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  color: #0d0d12;
  border-color: transparent;
}

.booking-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.summary-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255, 0.9);
  font-size: 1.05rem;
}

.summary-info > div:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.summary-info > div:last-child {
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.7);
}

.btn-wa-book {
  border: 0;
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 36px rgba(18, 140, 126, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn-wa-book:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(18, 140, 126, 0.4);
}

.btn-wa-book:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.profile-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}

.profile-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55, 0.24), rgba(255,255,255,0.06));
  color: var(--gold-2);
  font-size: 2.1rem;
  border: 1px solid rgba(212,175,55, 0.2);
}

.profile-avatar-ring {
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(212,175,55, 0.35);
  border-radius: 50%;
  animation: spin 10s linear infinite;
}

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 16px 0 6px;
  color: #fff;
}

.profile-since {
  color: rgba(255,255,255, 0.7);
  margin: 0;
}

.confirm-link {
  color: var(--gold);
  font-weight: 600;
}

.confirm-link:hover {
  color: #fff;
}

.auth-shell {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.55;
  pointer-events: none;
}

.auth-orb-1 {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 70%);
}

.auth-orb-2 {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 36px 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55, 0.22);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.auth-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
}

.auth-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.auth-brand-name span {
  color: var(--gold-2);
}

.auth-brand-sub {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 24px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55, 0.45), transparent);
}

.auth-field {
  margin-bottom: 16px;
}

.auth-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-input-wrap {
  position: relative;
}

.auth-input {
  width: 100%;
  border: 1px solid rgba(212,175,55, 0.24);
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}

.auth-input::placeholder {
  color: rgba(255,255,255,0.32);
}

.auth-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55, 0.16);
  background: rgba(255,255,255,0.08);
}

.auth-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.auth-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--text-muted);
}

.auth-btn,
.auth-button {
  width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  color: #0d0d12;
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  box-shadow: 0 16px 40px rgba(212,175,55, 0.24);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.auth-btn:hover,
.auth-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(212,175,55, 0.3);
}

.auth-link {
  display: inline-block;
  margin-top: 16px;
  text-align: center;
  width: 100%;
  color: var(--gold);
}

.auth-note {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.strength-bar {
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--gold);
  transition: width 0.3s ease, background 0.3s ease;
}

.flash-container {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 1100;
  max-width: 360px;
}

.alert {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}

/* ----------------------
   Hero / Services / CTA
   ---------------------- */

.hero-orb { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(28px); opacity: 0.6; z-index: 0; max-width: 100vw; max-height: 100vw; overflow: hidden; }
.hero-orb-1 { width: min(520px,100vw); height: min(520px,100vw); top: -160px; right: -160px; background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 60%); }
.hero-orb-2 { width: min(420px,90vw); height: min(420px,90vw); left: -120px; bottom: -140px; background: radial-gradient(circle, rgba(255,107,138,0.12), transparent 60%); }
.hero-orb-3 { width: min(300px,70vw); height: min(300px,70vw); right: 8%; top: 20%; background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 68%); }

.hero-visual { position: relative; display: grid; place-items: center; z-index: 1; width: 100%; }
.hero-circle-main { width: clamp(260px, 30vw, 360px); height: clamp(260px, 30vw, 360px); border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 35% 35%, rgba(212,175,55,0.1), transparent 55%), linear-gradient(135deg, rgba(212,175,55,0.06), rgba(255,255,255,0.01)); border: 1.5px solid rgba(212,175,55,0.25); box-shadow: 0 0 0 14px rgba(212,175,55,0.04), 0 0 0 32px rgba(212,175,55,0.02), 0 40px 100px rgba(0,0,0,0.5); animation: float 6s ease-in-out infinite; position: relative; }
.hero-ring-1, .hero-ring-2, .hero-ring-3 { position: absolute; border-radius: 50%; border: 1px dashed rgba(212,175,55,0.1); pointer-events: none; }
.hero-ring-1 { width: clamp(240px,80vw,480px); height: clamp(240px,80vw,480px); opacity: 0.6; animation: ringRotate 30s linear infinite; }
.hero-ring-2 { width: clamp(200px,68vw,420px); height: clamp(200px,68vw,420px); opacity: 0.4; animation: ringRotate 20s linear infinite reverse; }
.hero-ring-3 { width: clamp(150px,52vw,310px); height: clamp(150px,52vw,310px); opacity: 0.2; }
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-float-badge { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(10,9,14,0.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(212,175,55,0.25); box-shadow: 0 8px 24px rgba(0,0,0,0.4); color: #fff; font-weight:700; font-size:0.82rem; z-index:2; white-space:nowrap; }
.hfb-1 { right: 0; top: 16%; }
.hfb-2 { left: 0; bottom: 16%; }

.hero-stat { display: inline-flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold-2); font-weight:700; }
.hero-stat-label { color: var(--text-muted); font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; }
.hero-stat-divider { width: 56px; height:2px; border-radius:999px; background: linear-gradient(90deg, transparent, #D4AF37, transparent); margin: 10px 0; }

.hero-actions { display:flex; gap:12px; align-items:center; margin-top:18px; }
.btn-gold-hero { padding: 14px 28px; border-radius: 999px; background: linear-gradient(135deg, #F5D060, #D4AF37); color:#0d0d12; font-weight:800; box-shadow: 0 20px 48px rgba(212,175,55,0.24); }
.btn-ghost-hero { padding: 12px 22px; border-radius: 999px; background: rgba(255,255,255,0.03); color: var(--gold); border: 1px solid rgba(212,175,55,0.18); }
.btn-wa-hero { padding: 12px 20px; border-radius: 999px; background: linear-gradient(135deg,#25d366,#128c7e); color:#fff; font-weight:700; }

.hero-scroll-hint { position: absolute; left: 50%; transform: translateX(-50%); bottom: 28px; display:flex; align-items:center; gap:10px; color: rgba(255,255,255,0.76); font-size:0.9rem; }
.scroll-mouse { width: 30px; height: 46px; border-radius: 18px; border: 2px solid rgba(255,255,255,0.12); display:block; position:relative; }
.scroll-wheel { position:absolute; left:50%; transform:translateX(-50%); top:10px; width:6px; height:6px; border-radius:50%; background: rgba(255,255,255,0.72); animation: scrollwheel 1.6s infinite; }

@keyframes scrollwheel { 0%{transform:translate(-50%,0);opacity:1}50%{transform:translate(-50%,8px);opacity:.4}100%{transform:translate(-50%,0);opacity:1} }

/* ----------------------
   Services / Why Us / CTA
   ---------------------- */

.section-services { padding: 72px 0; }
.svc-card { border-radius: 18px; padding: 22px; background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border: 1px solid rgba(212,175,55,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.28); transition: transform .25s ease, box-shadow .25s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.36); }
.svc-card-glow { position:absolute; inset: auto auto 6px 6px; width:80px; height:80px; border-radius:50%; background: radial-gradient(circle, rgba(212,175,55,0.12), transparent); pointer-events:none; }
.svc-icon { width:56px; height:56px; border-radius:12px; display:grid; place-items:center; background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(255,255,255,0.03)); color:var(--gold-2); font-size:1.3rem; }
.svc-name { font-family:'Playfair Display', serif; font-size:1.02rem; font-weight:700; color:#fff; margin-top:12px; }
.svc-desc { color: rgba(255,255,255,0.72); font-size:0.95rem; line-height:1.6; margin-top:8px; }
.svc-footer { display:flex; justify-content:space-between; align-items:center; margin-top:14px; }

.section-why { padding: 72px 0; position:relative; }
.why-bg-glow { position:absolute; inset:auto 6% 0 0; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(255,107,138,0.06), transparent 60%); pointer-events:none; }
.why-card { padding:22px; border-radius:16px; background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)); border:1px solid rgba(255,255,255,0.04); }
.why-icon { width:56px; height:56px; border-radius:12px; display:grid; place-items:center; background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(255,255,255,0.04)); color:var(--gold-2); }
.why-title { font-weight:700; color:#fff; font-size:1.1rem; margin-top:8px; }
.why-desc { color: rgba(255,255,255,0.74); }

.section-cta { padding: 64px 0; position: relative; }
.cta-orb-1, .cta-orb-2 { position:absolute; border-radius:50%; pointer-events:none; filter: blur(22px); }
.cta-orb-1 { width: 360px; height:360px; left:-80px; top:-60px; background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 68%); }
.cta-orb-2 { width: 260px; height:260px; right:-40px; bottom:-40px; background: radial-gradient(circle, rgba(255,107,138,0.08), transparent 68%); }
.cta-title { font-family:'Playfair Display', serif; font-size: clamp(1.6rem,2.6vw,2.4rem); color:#fff; }
.cta-sub { color: rgba(255,255,255,0.76); margin-top:6px; }
.cta-actions { margin-top:18px; display:flex; gap:12px; }

/* WhatsApp CTA (hero and confirm share same pattern) */
.btn-wa-hero, .btn-wa-confirm { display:inline-flex; align-items:center; gap:10px; padding:12px 22px; border-radius:999px; background: linear-gradient(135deg,#25d366,#128c7e); color:#fff; font-weight:700; }

/* ----------------------
   Appointments / Confirm
   ---------------------- */

.appt-card { border-radius: 14px; padding: 18px; background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); border:1px solid rgba(255,255,255,0.04); box-shadow: 0 20px 56px rgba(0,0,0,0.28); margin-bottom:14px; }
.appt-card-top { display:flex; align-items:center; gap:12px; justify-content:space-between; }
.appt-id { font-weight:700; color:var(--gold-2); }
.appt-date-created { color: rgba(255,255,255,0.68); font-size:0.9rem; }
.appt-services { margin-top:10px; display:flex; flex-direction:column; gap:6px; }
.appt-meta { display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }
.appt-meta-item { display:flex; gap:8px; align-items:center; }
.appt-meta-label { color: var(--text-muted); font-size:0.82rem; }
.appt-meta-val { color:#fff; font-weight:700; }
.appt-status { padding:8px 12px; border-radius:999px; font-weight:700; font-size:0.9rem; }
.appt-status-pending { background: rgba(255,170,77,0.12); color:#ffc36b; }
.appt-status-confirmed { background: rgba(71,188,121,0.12); color:#7ce0aa; }
.appt-status-cancelled { background: rgba(226,93,93,0.12); color:#ff9a9a; }
.appt-status-completed { background: rgba(105,152,255,0.12); color:#9dc0ff; }

/* ----------------------
   Confirm page / Empty
   ---------------------- */
.confirm-icon-wrap { display:grid; place-items:center; width:120px; height:120px; border-radius:50%; margin:0 auto 18px; background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(255,255,255,0.02)); border:1px solid rgba(37,211,102,0.18); }
.confirm-icon-ring { width:140px; height:140px; border-radius:50%; border:2px dashed rgba(37,211,102,0.12); display:block; margin: -10px auto 12px; }
.confirm-title { font-family:'Playfair Display', serif; font-size:1.45rem; color:#fff; text-align:center; }
.confirm-sub { color: rgba(255,255,255,0.78); text-align:center; margin-top:8px; }
.confirm-summary { margin-top:18px; border-radius:12px; padding:14px; background: rgba(255,255,255,0.03); }
.confirm-row { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.06); }
.confirm-key { color: rgba(255,255,255,0.55); font-size:0.88rem; display:flex; align-items:center; white-space:nowrap; }
.confirm-val { color:#fff; font-weight:600; font-size:0.92rem; text-align:right; }
.confirm-key { color: var(--text-muted); }
.confirm-val { color:#fff; font-weight:700; }
.confirm-badge { display:inline-block; padding:6px 10px; border-radius:999px; background: rgba(212,175,55,0.12); color: var(--gold-2); font-weight:700; }
.confirm-links { display:flex; gap:8px; justify-content:center; margin-top:16px; }
.confirm-link-sep { width:1px; height:18px; background: rgba(255,255,255,0.04); align-self:center; }

.empty-state { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; padding:48px 16px; color: rgba(255,255,255,0.8); }
.empty-icon { width:92px; height:92px; border-radius:50%; display:grid; place-items:center; background: rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.04); color: var(--gold-2); font-size:2.2rem; }

/* profile avatar ring spin */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.profile-avatar-ring { position:absolute; inset:-6px; border-radius:50%; border:2px dashed rgba(212,175,55,0.28); animation: spin 12s linear infinite; }

/* nav scrolled state */
.nav-scrolled, #mainNav.nav-scrolled { padding: 8px 0; background: rgba(7,7,11,0.95) !important; box-shadow: 0 14px 40px rgba(0,0,0,0.35); border-bottom: 1px solid rgba(212,175,55,0.18); }

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* end theme overrides */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

/* ── Hero centered layout (replaces split two-column) ── */
.hero-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  gap: 0;
}
.hero-centered .hero-badge    { margin: 0 auto 14px; }
.hero-centered .hero-title    { text-align: center; width: 100%; }
.hero-centered .hero-subtitle { margin: 0 auto 20px; max-width: 600px; text-align: center; }
.hero-centered .hero-actions  { justify-content: center; flex-wrap: wrap; }
.hero-centered .hero-stats    { justify-content: center; }

/* ── Hero layout container ── */
.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 56px;
}

/* Two-column flex layout — text left, logo right */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.hero-left {
  flex: 0 0 52%;
  max-width: 52%;
  position: relative;
  z-index: 1;
}

.hero-right {
  flex: 0 0 44%;
  max-width: 44%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Tablet: stack vertically, logo below text */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
  }
  .hero-container {
    padding-top: 96px;
    padding-bottom: 60px;
  }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .hero-left {
    flex: none;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .hero-right {
    flex: none;
    max-width: 340px;
    width: 100%;
  }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-title { font-size: clamp(2rem, 7vw, 3.2rem) !important; }
}

/* Mobile: hide logo visual to keep it clean */
@media (max-width: 575px) {
  .hero-container {
    padding-top: 88px;
    padding-bottom: 48px;
  }
  .hero-right {
    display: none;
  }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem) !important; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-gold-hero, .btn-ghost-hero { width: 100%; max-width: 280px; justify-content: center; }
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  top: -190px;
  right: -180px;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 62%);
}

.hero::after {
  width: 460px;
  height: 460px;
  left: -220px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 62%);
}

.hero-badge,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-title span {
  background: linear-gradient(90deg, #fff 0%, #F5D060 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 590px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255,255,255, 0.82);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--gold-2);
}

.stat-item p {
  margin: 3px 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: var(--gold-2);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(135deg, rgba(212,175,55, 0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(212,175,55, 0.25);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.26), inset 0 0 80px rgba(255,255,255,0.06);
  animation: float 5s ease-in-out infinite;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.45rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.section-title span {
  color: var(--gold);
}

.divider {
  width: 72px;
  height: 3px;
  margin: 0 auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.service-card,
.booking-card,
.admin-card,
.contact-card,
.stat-card {
  position: relative;
  border: 1px solid rgba(212,175,55, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-card {
  padding: 26px 22px;
  min-height: 255px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,208,96, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.service-card.selected {
  border-color: rgba(245,208,96, 0.88);
  background: linear-gradient(145deg, rgba(245,208,96, 0.12), rgba(255,255,255,0.05));
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55, 0.2), rgba(255,255,255,0.06));
  color: var(--gold-2);
  font-size: 1.2rem;
  margin-bottom: 16px;
  border: 1px solid rgba(212,175,55, 0.16);
  transition: transform 0.25s ease;
}

.service-card:hover .service-icon {
  transform: rotate(4deg) scale(1.03);
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.16rem;
  color: var(--gold-2);
  font-weight: 700;
}

.service-duration {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.78rem;
}

.booking-card,
.admin-card,
.contact-card,
.stat-card {
  padding: 24px;
}

.stat-card {
  border-left: 3px solid var(--gold);
  margin-bottom: 0;
}

.stat-card + .stat-card {
  margin-left: 0;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}

.footer {
  background: linear-gradient(180deg, rgba(10,10,14,0.95), rgba(8,7,12,1));
  border-top: 1px solid rgba(212,175,55, 0.16);
}

.footer-brand h5 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin: 0;
}

.footer-heading {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links a,
.footer a {
  color: rgba(255,255,255,0.68);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer a:hover {
  color: var(--gold);
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.16);
  color: var(--gold);
  margin-right: 8px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
  background: rgba(212,175,55,0.14);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 44px rgba(18,140,126,0.3);
  z-index: 1200;
  animation: pulse 2.8s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff;
}

.dashboard-header,
.profile-header {
  padding: 122px 0 72px;
  background: linear-gradient(135deg, rgba(11,10,14,0.96), rgba(24,20,19,0.96));
  border-bottom: 1px solid rgba(212,175,55,0.14);
}

.dashboard-header h1,
.profile-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
}

.dashboard-header h1 span,
.profile-header h1 span {
  color: var(--gold-2);
}

.time-slot {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.24);
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  margin: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.time-slot:hover,
.time-slot.active {
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  color: #0d0d12;
  border-color: transparent;
}

.form-control,
.form-select,
.form-check-input {
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.38);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55, 0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #050507 60%, #08080c 100%);
  border-right: 1px solid rgba(212,175,55,0.18);
  box-shadow: 20px 0 60px rgba(0,0,0,0.5);
  z-index: 1020;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.admin-sidebar .brand {
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-sidebar .brand h4 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.18rem;
}

.sidebar-nav {
  padding: 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  margin-bottom: 6px;
  border-radius: 12px;
  color: rgba(255,255,255,0.72);
  transition: all 0.25s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(212,175,55,0.12);
  color: var(--gold-2);
}

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #050507 100%);
  padding: 0 0 60px;
}

.admin-page-body {
  padding: 28px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(0,0,0,0.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  color: rgba(255,255,255,0.92);
}

.badge-status-pending {
  background: rgba(255, 170, 77, 0.16);
  color: #ffc36b;
}

.badge-status-confirmed {
  background: rgba(71, 188, 121, 0.16);
  color: #7ce0aa;
}

.badge-status-cancelled {
  background: rgba(226, 93, 93, 0.16);
  color: #ff9a9a;
}

.badge-status-completed {
  background: rgba(105, 152, 255, 0.16);
  color: #9dc0ff;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.auth-shell {
  min-height: 100vh;
  padding: 110px 16px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(212,175,55, 0.18), transparent 28%),
    linear-gradient(135deg, var(--ink) 0%, #0d0d12 45%, #0d0d12 100%);
}

.auth-shell::before,
.auth-shell::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.auth-shell::before {
  width: 480px;
  height: 480px;
  top: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 62%);
}

.auth-shell::after {
  width: 420px;
  height: 420px;
  bottom: -220px;
  left: -180px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 36px 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55, 0.22);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.auth-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.auth-brand-name span {
  color: var(--gold-2);
}

.auth-brand-sub {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 24px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55, 0.45), transparent);
}

.auth-field {
  margin-bottom: 16px;
}

.auth-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-input-wrap {
  position: relative;
}

.auth-input {
  width: 100%;
  border: 1px solid rgba(212,175,55, 0.24);
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}

.auth-input::placeholder {
  color: rgba(255,255,255,0.32);
}

.auth-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55, 0.16);
  background: rgba(255,255,255,0.08);
}

.auth-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.auth-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--text-muted);
}

.auth-button {
  width: 100%;
  margin-top: 6px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  color: #0d0d12;
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  box-shadow: 0 16px 40px rgba(212,175,55, 0.24);
}

.auth-button:hover {
  transform: translateY(-2px);
}

.auth-link {
  display: inline-block;
  margin-top: 16px;
  text-align: center;
  width: 100%;
  color: var(--gold);
}

.auth-note {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.auth-strength {
  height: 4px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.auth-strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 0.3s ease, background 0.3s ease;
}

.confirm-page {
  min-height: 100vh;
  padding: 120px 16px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-card {
  width: min(100%, 560px);
  padding: 36px 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55, 0.22);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,211,102,0.25), rgba(37,211,102,0.08));
  border: 2px solid rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #25d366;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(37,211,102,0.15);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 16px 40px rgba(18,140,126,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(18,140,126,0.42);
  color: #fff !important;
}

.wa-btn i {
  font-size: 1.3rem;
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 18px 44px rgba(18,140,126,0.3); }
  50% { box-shadow: 0 24px 54px rgba(18,140,126,0.42); }
}

@media (max-width: 991px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-circle {
    width: 260px;
    height: 260px;
    font-size: 5rem;
  }

  .booking-card,
  .admin-card,
  .contact-card,
  .stat-card {
    padding: 20px;
  }

  .hero-stats {
    gap: 16px;
  }

  .navbar-brand {
    font-size: 1.08rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

@media (max-width: 576px) {
  .auth-card {
    padding: 28px 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

.hero-logo-img {
  width: 82%;
  height: 82%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55, 0.35);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.06), 0 0 40px rgba(212,175,55, 0.25);
  display: block;
}

/* ── Admin Dark Theme Tables ── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead tr {
  border-bottom: 1px solid rgba(212,175,55,0.16);
}

.admin-table th {
  padding: 12px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.admin-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.admin-table td {
  padding: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  vertical-align: middle;
}

.admin-td-muted {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.88rem;
}

.admin-td-bold {
  color: #fff !important;
  font-weight: 600;
}

.admin-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(212,175,55,0.12);
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(212,175,55,0.2);
}

.admin-status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
}

.admin-filter-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.24);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.admin-filter-btn:hover,
.admin-filter-btn.active {
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  color: #0d0d12;
  border-color: transparent;
}

.admin-select {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.24);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  width: 130px;
}

.admin-select option {
  background: #0d0d12;
  color: #fff;
}

.admin-update-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.1);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.admin-update-btn:hover {
  background: rgba(212,175,55,0.2);
  color: #fff;
}

.admin-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.admin-action-btn:hover {
  background: rgba(212,175,55,0.12);
  color: var(--gold-2);
  border-color: rgba(212,175,55,0.2);
}

.admin-action-danger {
  border-color: rgba(255,100,100,0.16);
}

.admin-action-danger:hover {
  background: rgba(255,100,100,0.12);
  color: #ff9a9a;
  border-color: rgba(255,100,100,0.3);
}

.admin-cancel-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.admin-cancel-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Fix Bootstrap table overrides in admin */
.admin-card .table,
.admin-card .table-hover,
.admin-card .table-light {
  --bs-table-bg: transparent;
  --bs-table-hover-bg: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.85);
}

.admin-card .table thead th {
  background: transparent;
  color: var(--gold);
  border-color: rgba(212,175,55,0.16);
}

.admin-card .table td,
.admin-card .table th {
  border-color: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
}

.admin-card .form-select {
  background-color: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(212,175,55,0.24);
}

.admin-card .form-select option {
  background: #0d0d12;
}

.stat-icon {
  font-size: 1.6rem;
  opacity: 0.85;
}

/* ── Hero missing classes ── */
.hero-container { position: relative; z-index: 1; }
.hero-content { position: relative; z-index: 1; }

.hero-em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.08);
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-2);
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.06;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Section head / line ── */
.section-head {
  text-align: center;
  margin-bottom: 12px;
}

.section-line {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 14px auto 0;
}

/* ── Services section ── */
.section-services {
  padding: 90px 0;
  position: relative;
}

.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06), transparent 60%);
  pointer-events: none;
}

/* ── Why Us section ── */
.section-why {
  padding: 90px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.why-bg-glow {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 65%);
  pointer-events: none;
}

.why-card {
  padding: 28px 22px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.2);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(255,255,255,0.04));
  color: var(--gold-2);
  font-size: 1.4rem;
  margin: 0 auto 16px;
  border: 1px solid rgba(212,175,55,0.16);
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-desc {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ── CTA section ── */
.section-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 50%);
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer links ── */
.footer-heading {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li,
.footer-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-2);
}

/* ── Button hover transitions ── */
.btn-gold-hero,
.btn-ghost-hero,
.btn-wa-hero,
.btn-wa-confirm {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(212,175,55,0.3);
  color: #0d0d12;
}

.btn-ghost-hero:hover {
  transform: translateY(-3px);
  background: rgba(212,175,55,0.1);
  color: var(--gold-2) !important;
}

.btn-wa-hero:hover,
.btn-wa-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(18,140,126,0.35);
  color: #fff !important;
}

/* ── Section badge ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.28);
  background: rgba(212,175,55,0.07);
  color: var(--gold-2);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.section-title span {
  background: linear-gradient(90deg, #F5D060, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Svc card fix ── */
.svc-card {
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero-title { font-size: 2.4rem; }
  .section-services, .section-why, .section-cta { padding: 60px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; }
}

/* ── Settings Tabs ── */
.settings-tabs-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.settings-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.22);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.settings-tab:hover {
  border-color: rgba(212,175,55,0.4);
  color: var(--gold-2);
}

.settings-tab.active {
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  color: #0d0d12;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(212,175,55,0.22);
}

.settings-panel {
  display: none;
}

.settings-panel.active {
  display: block;
}

.settings-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.settings-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold-2);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.settings-card-title {
  color: #fff;
  font-weight: 700;
  margin: 0 0 4px;
}

.settings-card-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.settings-divider {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}

.settings-info-box {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.settings-info-green {
  background: rgba(37,211,102,0.07);
  border-color: rgba(37,211,102,0.18);
  color: #7ce0aa;
}

/* ── Contact Page ── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.18);
  color: var(--gold-2);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-val {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-link {
  color: var(--gold-2) !important;
  transition: color 0.2s ease;
}

.contact-info-link:hover {
  color: #fff !important;
}

/* ── Map Placeholder ── */
.map-placeholder {
  min-height: 340px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px dashed rgba(212,175,55,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  text-align: center;
}

.map-placeholder-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 8px;
  animation: float 4s ease-in-out infinite;
}

.map-placeholder-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}

.map-placeholder-addr {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Booking section / field label ── */
.booking-section {
  padding: 48px 0 80px;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Booking Steps ── */
.booking-step {
  margin-bottom: 32px;
}

.booking-step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  color: #0d0d12;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* ── Profile avatar center ── */
.profile-avatar.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── Gallery ── */
.gallery-card {
  position: relative;
  border-radius: 18px;
  padding: 40px 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.14);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.08), transparent 60%);
  pointer-events: none;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.gallery-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(255,255,255,0.04));
  color: var(--gold-2);
  font-size: 1.6rem;
  margin: 0 auto 16px;
  border: 1px solid rgba(212,175,55,0.18);
}

.gallery-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* ── About Page ── */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.about-circle {
  width: clamp(240px, 36vw, 340px);
  height: clamp(240px, 36vw, 340px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}

.about-logo {
  width: 72%;
  height: 72%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.3);
}

.about-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.2);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.ab-1 { top: 12%; right: 4%; }
.ab-2 { bottom: 12%; left: 4%; }

.about-para {
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.about-value-item i {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.about-stat-card {
  padding: 28px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.14);
  text-align: center;
  transition: transform 0.25s ease;
}

.about-stat-card:hover { transform: translateY(-4px); }

.about-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,0.12);
  color: var(--gold-2);
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-2);
}

.about-stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.team-card {
  padding: 32px 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.14);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.3);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(255,255,255,0.04));
  color: var(--gold-2);
  font-size: 1.6rem;
  margin: 0 auto 16px;
  border: 1px solid rgba(212,175,55,0.2);
}

.team-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Gallery real photos ── */
.gallery-real-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  display: block;
}

.gallery-real-caption {
  padding: 10px 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ── Admin Gallery ── */
.gallery-file-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px dashed rgba(212,175,55,0.4);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
}

.gallery-admin-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.gallery-admin-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.gallery-admin-caption {
  padding: 6px 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gallery-admin-del {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: rgba(255,60,60,0.75);
  color: #fff;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-admin-del:hover { background: rgba(255,60,60,1); }

/* ── About Story Visual ── */
.about-story-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.about-story-img-wrap {
  width: clamp(260px, 38vw, 360px);
  height: clamp(260px, 38vw, 360px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(212,175,55,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 12px rgba(212,175,55,0.06);
  animation: float 6s ease-in-out infinite;
}

.about-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(10,10,14,0.85);
  border: 1px solid rgba(212,175,55,0.25);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  z-index: 2;
}

.ab-top    { top: 8%;  right: 2%; }
.ab-bottom { bottom: 8%; left: 2%; }

.about-story-orb {
  position: absolute;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.12);
  pointer-events: none;
  z-index: 0;
}

.about-value-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,0.12);
  color: var(--gold-2);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.about-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  padding: 6px 0;
}

.mb-6 { margin-bottom: 4rem; }

/* ── Founders Section ── */
.founders-section {
  margin: 20px 0 60px;
}

.founders-header {
  text-align: center;
  margin-bottom: 40px;
}

.founders-card {
  display: flex;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  max-width: 100%;
}

@media (max-width: 767px) {
  .founders-card { flex-direction: column; }
}

.founders-img-side {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
}

.founders-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.founders-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founders-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(8,6,8,0.6) 100%),
              linear-gradient(to top, rgba(8,6,8,0.4) 0%, transparent 40%);
  pointer-events: none;
}

.founders-content-side {
  flex: 1;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 767px) {
  .founders-content-side { padding: 32px 24px; }
  .founders-img-wrap { min-height: 300px; }
}

.founders-names-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.founder-name-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #F5D060, #D4AF37);
  color: #0d0d12;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.founder-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.founders-amp {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: rgba(212,175,55,0.4);
  font-style: italic;
}

.founders-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.founders-quote {
  position: relative;
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  line-height: 1.85;
  font-style: italic;
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid rgba(212,175,55,0.35);
}

.founders-quote-icon {
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.founders-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Appointment action buttons ── */
.btn-appt-cancel {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,100,100,0.3);
  background: rgba(255,100,100,0.08);
  color: #ff9a9a;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-appt-cancel:hover {
  background: rgba(255,100,100,0.18);
  color: #fff;
}
.btn-appt-rebook {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.08);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-appt-rebook:hover {
  background: rgba(212,175,55,0.18);
  color: #fff;
}

/* ── Testimonial cards ── */
.testimonial-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.14);
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.3);
}
.testimonial-stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  color: var(--gold-2);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ── Business hours card ── */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-label { color: rgba(255,255,255,0.72); }
.hours-val { color: #fff; font-weight: 700; }
.hours-address {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

/* ── Admin sidebar nav consistent spacing ── */
.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-nav-label { display: flex; align-items: center; gap: 10px; }

/* ── Improved muted text contrast ── */
:root {
  --text-muted: rgba(255,255,255,0.40);
}

/* ── Sidebar nav label + pending badge ── */
.sidebar-nav-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-pending-badge {
  margin-left: auto;
  background: rgba(255,170,77,0.2);
  color: #ffc36b;
  border: 1px solid rgba(255,170,77,0.35);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   ADVANCED ANIMATIONS
   ══════════════════════════════════════ */

/* ── 3D Tilt card ── */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.3s ease;
}
.tilt-card:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,55,0.3);
}

/* ── Morphing hero orbs ── */
.hero-orb-1 { animation: morphOrb1 8s ease-in-out infinite; }
.hero-orb-2 { animation: morphOrb2 10s ease-in-out infinite; }
.hero-orb-3 { animation: morphOrb3 7s ease-in-out infinite; }
@keyframes morphOrb1 {
  0%,100% { transform: translate(0,0) scale(1);    border-radius: 50%; }
  33%     { transform: translate(-30px,20px) scale(1.1); border-radius: 40% 60% 55% 45%; }
  66%     { transform: translate(20px,-15px) scale(0.95); border-radius: 55% 45% 40% 60%; }
}
@keyframes morphOrb2 {
  0%,100% { transform: translate(0,0) scale(1);    border-radius: 50%; }
  40%     { transform: translate(25px,-20px) scale(1.08); border-radius: 60% 40% 50% 50%; }
  70%     { transform: translate(-15px,25px) scale(0.92); border-radius: 45% 55% 60% 40%; }
}
@keyframes morphOrb3 {
  0%,100% { transform: scale(1);    opacity: 0.6; }
  50%     { transform: scale(1.18); opacity: 0.9; }
}

/* ── Typewriter cursor ── */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--gold-2);
  margin-left: 3px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blinkCursor 0.75s step-end infinite;
}
@keyframes blinkCursor {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}

/* ── Testimonial carousel ── */
.testimonial-track-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .testimonial-slide  { min-width: 50%; }
}
@media (min-width: 1024px) {
  .testimonial-slide  { min-width: 25%; }
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(212,175,55,0.25);
  border: 1px solid rgba(212,175,55,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.t-dot.active {
  width: 24px;
  background: linear-gradient(90deg, #F5D060, #D4AF37);
  border-color: transparent;
}

/* ── Hero float badges enhanced ── */
.hero-float-badge {
  animation: badgeFloat 4s ease-in-out infinite;
}
.hfb-2 { animation-delay: 2s; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-8px); }
}

/* ── Service icon shimmer on hover ── */
.svc-card:hover .svc-icon {
  animation: iconShimmer 0.6s ease forwards;
}
@keyframes iconShimmer {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
  50%  { box-shadow: 0 0 20px 6px rgba(212,175,55,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* ── Scroll reveal enhanced ── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Why card icon spin on hover ── */
.why-card:hover .why-icon {
  animation: iconSpin 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes iconSpin {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(15deg) scale(1.1); }
}

/* ── Gold shimmer on section lines ── */
.section-line {
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, transparent, #F5D060, #D4AF37, #F5D060, transparent);
  animation: shimmerLine 3s linear infinite;
}
@keyframes shimmerLine {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ═══════════════════════════════════════════════
   FULL RESPONSIVE — Phone / Tablet / iPad / Laptop
   ═══════════════════════════════════════════════ */

/* Hero overflow fix */
.hero {
  overflow-x: hidden;
}

/* Sidebar overlay for mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1019;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.show { display: block; }

#sidebarToggle {
  display: none;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold-2);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#sidebarToggle:hover { background: rgba(212,175,55,0.2); }

/* Tablet & small laptop (≤ 991px) */
@media (max-width: 991px) {
  #sidebarToggle { display: inline-flex; align-items: center; }
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 1020;
    width: 260px;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0 !important; }
  .admin-page-body { padding: 20px 16px 0; }
  .navbar-collapse {
    background: rgba(10,9,14,0.97);
    border-radius: 16px;
    padding: 16px;
    margin-top: 10px;
    border: 1px solid rgba(212,175,55,0.12);
    backdrop-filter: blur(20px);
  }
  .navbar-nav { gap: 4px !important; }
  .navbar-nav .nav-link { padding: 10px 14px !important; border-radius: 10px; }
  .navbar-nav .btn-nav-gold,
  .navbar-nav .btn-nav-outline { margin: 8px 0 0; width: 100%; text-align: center; }
  .booking-sidebar { position: static !important; top: auto !important; }
  .booking-summary-bar { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

/* iPad / medium tablet (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .admin-page-body { padding: 24px 20px 0; }
  .book-shell { padding: 90px 0 60px; }
  .time-slots-wrap { gap: 8px; }
  .time-chip { padding: 8px 14px; font-size: 0.85rem; }
  .svc-select-card { padding: 18px 14px; }
}

/* Phone & small tablet (≤ 767px) */
@media (max-width: 767px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .glass-card { padding: 18px 14px; }
  .admin-card { padding: 16px; }
  .brand-name { font-size: 1rem; }
  .brand-tagline { font-size: 0.65rem; }
  .brand-logo { width: 36px; height: 36px; min-width: 36px; display: block; }
  .hero-title { font-size: 2rem !important; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-stats { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .hero-circle { width: 220px; height: 220px; font-size: 4rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions a { text-align: center; }
  .page-header { padding: 80px 0 32px; }
  .page-header-title { font-size: 1.8rem; }
  .page-header-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .book-shell { padding: 80px 0 50px; }
  .booking-progress { gap: 4px; margin-bottom: 24px; }
  .bp-num { width: 28px; height: 28px; font-size: 0.78rem; }
  .booking-step-label { font-size: 0.92rem; }
  .step-num { width: 28px; height: 28px; font-size: 0.8rem; }
  .d-flex.gap-2 > .premium-input { font-size: 0.82rem; padding: 8px 6px; }
  .time-slots-wrap { gap: 8px; }
  .time-chip { padding: 8px 12px; font-size: 0.82rem; }
  .booking-summary-bar { flex-direction: column; align-items: stretch; padding: 20px 18px; gap: 14px; }
  .btn-wa-book { width: 100%; justify-content: center; padding: 14px 20px; font-size: 1rem; }
  .svc-select-card { padding: 16px 12px; }
  .svc-select-icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .svc-select-name { font-size: 0.9rem; }
  .svc-select-desc { font-size: 0.78rem; }
  .appt-card { padding: 18px 14px; }
  .appt-meta { flex-wrap: wrap; gap: 10px; }
  .appt-actions { flex-wrap: wrap; }
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 600px; }
  .admin-table th, .admin-table td { padding: 10px 12px; font-size: 0.82rem; white-space: nowrap; }
  .admin-topbar { padding: 12px 14px; }
  .admin-topbar h6 { font-size: 0.9rem; }
  .settings-tabs-wrap { gap: 6px; }
  .settings-tab { padding: 8px 14px; font-size: 0.82rem; }
  .profile-avatar { width: 80px; height: 80px; font-size: 1.8rem; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; font-size: 0.8rem; }
  .review-card { padding: 18px 14px; }
  .star-rating label { font-size: 1.5rem; }
  #toast-container { top: 12px; right: 12px; left: 12px; }
  .ns-toast { min-width: unset; width: 100%; }
  .auth-shell { padding: 90px 12px 40px; }
  .auth-card { padding: 24px 16px; }
  .about-circle { width: 200px; height: 200px; }
  .gallery-card { padding: 28px 14px; }
  /* About page mobile fixes */
  .about-story-visual { min-height: 280px; }
  .about-story-img-wrap { width: min(260px, 80vw); height: min(260px, 80vw); }
  .about-story-orb { display: none; }
  .founders-names-row { flex-direction: column; gap: 12px; }
  .founders-amp { display: none; }
  .founders-content-side { padding: 24px 18px; }
  /* Hero float badges — keep inside viewport */
  .hero-float-badge { font-size: 0.72rem; padding: 6px 10px; }
  .hfb-1 { right: 4px; }
  .hfb-2 { left: 4px; }
  /* Section padding */
  .section-services, .section-why, .section-cta { padding: 48px 0; }
  .booking-section { padding: 32px 0 60px; }
  /* CTA card */
  .glass-card[style*="padding:56px"] { padding: 32px 18px !important; }
  /* Stat cards equal height on 2-col */
  .about-stat-card { padding: 20px 14px; }
  .about-stat-num { font-size: 1.3rem; }
  /* Why cards full width */
  .why-card { padding: 20px 16px; }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem !important; }
  .section-title { font-size: 1.4rem !important; }
  .book-page-title { font-size: 1.5rem !important; }
  .page-header-title { font-size: 1.5rem !important; }
  .btn-gold-hero { padding: 12px 20px; font-size: 0.88rem; }
  .svc-select-card { padding: 14px 10px; }
  .time-chip { padding: 7px 10px; font-size: 0.78rem; }
  .booking-summary-bar { padding: 16px 14px; }
  .admin-page-body { padding: 14px 10px 0; }
  .cat-btn { padding: 6px 12px; font-size: 0.78rem; }
  .bp-label { display: none; }
  /* Prevent any element from causing horizontal scroll */
  .hero-orb, .hero-ring-1, .hero-ring-2, .hero-ring-3,
  .page-header-orb, .cta-orb-1, .cta-orb-2,
  .why-bg-glow, .footer-glow { opacity: 0.4; }
  .hero-float-badge { display: none; }
  .welcome-banner { padding: 28px 20px; }
  .welcome-name { font-size: 1.6rem; }
  .founders-img-wrap { min-height: 220px; }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .svc-select-card:hover,
  .gallery-card:hover,
  .about-stat-card:hover,
  .team-card:hover { transform: none; }
  .btn-wa-book:hover:not(:disabled) { transform: none; }
  .time-chip { min-height: 44px; display: inline-flex; align-items: center; }
  .cat-btn { min-height: 40px; }
  .sidebar-nav a { min-height: 48px; }
  .nav-link { min-height: 44px; display: flex; align-items: center; }
  /* Disable 3D tilt on touch — causes jitter */
  .tilt-card { transform: none !important; }
}

/* ── Reduced motion accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Admin card hover via CSS (replaces inline onmouseover) ── */
a .admin-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a:hover .admin-card {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

/* ── btn-gold-hero cursor ── */
.btn-gold-hero { cursor: pointer; }

/* ── contain: style only (not layout — avoids breaking sticky) ── */
.appt-card, .svc-select-card, .glass-card, .admin-card,
.booking-sidebar-card, .why-card, .svc-card {
  contain: style;
}

/* ── Skeleton shimmer for loading states ── */
.skeleton {
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s infinite;
}
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Global overflow guard — nothing should ever cause horizontal scroll ── */
section, .hero, .page-header, .booking-section,
.section-services, .section-why, .section-cta,
.cust-shell, .book-shell, .auth-split, .ticket-shell {
  overflow-x: hidden;
  max-width: 100%;
}

/* ── GPU compositing hints — promotes animated elements to own layer ── */
.cursor-glow,
#pageTransition,
.splash-logo,
.splash-bar,
.hero-circle,
.wa-float,
.wa-float-ripple {
  will-change: transform, opacity;
}
.navbar {
  will-change: background, box-shadow;
}
/* Contain layout so card repaints don't cascade to full page */
.appt-card, .svc-select-card, .glass-card, .admin-card,
.booking-sidebar-card, .why-card, .svc-card {
  contain: layout style;
}
/* Touch action: pan-y on scrollable areas for 60fps mobile scroll */
body { touch-action: pan-y; }

/* ── Mobile tap feedback ── */
.quick-action:active,
.btn-appt-rebook:active,
.btn-appt-cancel:active,
.btn-gold-hero:active,
.btn-outline-gold:active,
.auth-btn:active,
.btn-wa-book:active {
  transform: scale(0.96) !important;
  opacity: 0.88;
}

/* ── Minimum 44px touch targets for all interactive elements ── */
.btn-appt-cancel,
.btn-appt-rebook,
.cat-btn,
.slot-chip,
.time-chip,
.admin-filter-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ── Appointment cards full-width on mobile ── */
@media (max-width: 991px) {
  .appt-meta { flex-wrap: wrap; gap: 8px; }
  .appt-actions { flex-wrap: wrap; gap: 8px; }
  .appt-actions form { flex: 0 0 auto; }
}

/* ── Admin topbar safe on tiny phones ── */
@media (max-width: 400px) {
  .admin-topbar h6 { font-size: 0.82rem; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* ── Reschedule select readable on iOS (prevents zoom) ── */
.reschedule-select,
select.form-control,
input[type="date"],
input[type="time"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  font-size: 16px !important; /* prevents iOS auto-zoom on focus */
}

/* ── Home Services Horizontal Carousel ── */
#servicesGrid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 4px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
#servicesGrid::-webkit-scrollbar { height: 4px; }
#servicesGrid::-webkit-scrollbar-track { background: transparent; }
#servicesGrid::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 4px; }

.svc-home-card {
  flex: 0 0 260px;
  min-width: 260px;
  position: relative;
  background: linear-gradient(160deg, rgba(22,18,36,0.95) 0%, rgba(10,8,18,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 0;
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}
.svc-home-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.9), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.svc-home-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(212,175,55,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: 22px;
}
.svc-home-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 32px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,175,55,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.svc-home-card:hover::before { opacity: 1; }
.svc-home-card:hover::after { opacity: 1; }

.svc-home-card-inner {
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-home-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.04) 100%);
  border: 1px solid rgba(212,175,55,0.18);
  color: #F5D060;
  font-size: 1.2rem;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.svc-home-card:hover .svc-home-icon {
  transform: scale(1.12) rotate(-3deg);
  background: linear-gradient(135deg, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.08) 100%);
  box-shadow: 0 6px 20px rgba(212,175,55,0.2);
}

.svc-home-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  margin-bottom: 7px;
  font-family: 'DM Sans', sans-serif;
}

.svc-home-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin: 0 0 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.svc-home-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin: 0 0 18px;
  font-family: 'DM Sans', sans-serif;
}

.svc-home-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}
.svc-home-price {
  color: #F5D060;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.svc-home-dur {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.02em;
}

.svc-home-skeleton {
  flex: 0 0 260px;
  min-width: 260px;
  height: 230px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
