/* =============================================
   LOVIA PARTNER — Premium CSS v3.0
   Diperbaiki: Responsif HP & PC, duplikasi dihapus,
   layout hero card, talent grid, filter bar, footer
   ============================================= */

/* ══════════════════════════════════════════
   ROOT VARIABLES
   ══════════════════════════════════════════ */
:root {
  /* Editorial-romance palette — deep rose/wine + antique gold, warm ivory ground */
  --pink: #e8577f;
  --pink-light: #fbe9ee;
  --pink-deep: #b8144a;
  --peach: #e9a06a;
  --peach-light: #fbf0e3;
  --purple: #8f74c9;
  --purple-light: #efeaf8;
  --purple-deep: #4a2f7a;
  --cream: #fbf5ee;
  --cream-dark: #f1e6d8;
  --gold: #b98a44;
  --gold-light: #f7ecd7;
  --bg: #fffdfb;
  --bg-card: #ffffff;
  --bg-card2: #fdf6f2;
  --border: #ece0dd;
  --text: #241016;
  --text-sec: #5c4650;
  --text-muted: #9c8790;
  --ink: #1c0d13;
  --shadow-sm: 0 2px 14px rgba(120,25,60,.08);
  --shadow-md: 0 10px 34px rgba(120,25,60,.12);
  --shadow-lg: 0 24px 64px rgba(90,15,45,.18);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --navbar-h: 72px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --trans: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --grain-opacity: .035;
}

[data-theme="dark"] {
  --bg: #150a10;
  --bg-card: #221019;
  --bg-card2: #2a1420;
  --bg-soft: #2a1420;
  --border: #3c1f2b;
  --text: #f8ecf1;
  --text-sec: #dcb9c6;
  --text-muted: #a9838f;
  --ink: #0f070a;
  --cream: #1e0f16;
  --cream-dark: #281521;
  --pink-light: #3a1626;
  --purple-light: #251a38;
  --peach-light: #331e18;
  --gold-light: #2b2013;
  --pink: #ff7996;
  --pink-deep: #ff5c8a;
  --purple: #b79cff;
  --purple-deep: #9d78f0;
  --peach: #ffb37a;
  --gold: #e0b978;
  --shadow-sm: 0 2px 14px rgba(0,0,0,.35);
  --shadow-md: 0 10px 34px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.55);
  --grain-opacity: .05;
}

/* ══════════════════════════════════════════
   RESET
   ══════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; transition: background .3s, color .3s; overflow-x: hidden; cursor: none; letter-spacing: -.01em; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 99997; pointer-events: none;
  opacity: var(--grain-opacity); mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--trans); }
button { cursor: none; font-family: var(--font-body); border: none; outline: none; background: none; }
input, select, textarea { font-family: var(--font-body); outline: none; }
ul { list-style: none; }
h1, h2, h3 { font-weight: 600; letter-spacing: -.02em; }
::selection { background: var(--pink-deep); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }
:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 3px; }
@media (max-width: 768px) { body { cursor: auto; } button { cursor: pointer; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ══════════════════════════════════════════
   CUSTOM CURSOR (Desktop only)
   ══════════════════════════════════════════ */
.cursor-dot  { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--pink-deep); border-radius: 50%; pointer-events: none; z-index: 99999; will-change: transform; }
.cursor-ring { position: fixed; top: 0; left: 0; width: 32px; height: 32px; border: 2px solid var(--pink); border-radius: 50%; pointer-events: none; z-index: 99998; will-change: transform; transition: width .2s, height .2s, border-color .2s; }
@media (max-width: 768px) { .cursor-dot, .cursor-ring { display: none; } }

/* ══════════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════════ */
.loading-screen { position: fixed; inset: 0; background: var(--bg); z-index: 99990; display: flex; align-items: center; justify-content: center; overflow: hidden; transition: opacity .7s ease, visibility .7s; }
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-screen::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(232,87,127,.14), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 80%, rgba(185,138,68,.13), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 15%, rgba(143,116,201,.1), transparent 60%);
  animation: loadingBgShift 6s ease-in-out infinite alternate;
}
@keyframes loadingBgShift { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.15) rotate(4deg); } }
.loading-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.loading-particle {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: var(--pink-deep);
  opacity: 0;
  animation: particleFloat linear infinite;
}
.loading-particle.gold { background: var(--gold); }
.loading-particle.purple { background: var(--purple); }
.loading-particle.sparkle { background: none; color: var(--pink-deep); line-height: 1; }
.loading-particle.sparkle.gold { color: var(--gold); }
.loading-particle.sparkle.purple { color: var(--purple); }
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  10% { opacity: .55; transform: scale(1); }
  90% { opacity: .35; }
  100% { transform: translateY(-100vh) translateX(var(--drift,20px)) scale(.4); opacity: 0; }
}
.loading-screen::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(28,13,19,.06) 100%);
  pointer-events: none;
}
.loading-ring {
  position: relative;
  width: 110px; height: 110px;
  margin: 0 auto 1.75rem;
  display: flex; align-items: center; justify-content: center;
}
.loading-ring::before {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,87,127,.22), transparent 65%);
  animation: glowPulse 2.2s ease-in-out infinite;
  z-index: -1;
}
@keyframes glowPulse { 0%,100% { transform: scale(.85); opacity: .6; } 50% { transform: scale(1.12); opacity: 1; } }
.loading-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.loading-ring circle { fill: none; stroke-width: 2.5; }
.loading-ring .ring-bg { stroke: var(--border); }
.loading-ring .ring-fg { stroke: url(#loadingGrad); stroke-linecap: round; stroke-dasharray: 264; stroke-dashoffset: 264; animation: ringFill 7s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes ringFill { to { stroke-dashoffset: 20; } }
.loading-heart { font-size: 1.8rem; animation: heartBeat 1.1s ease-in-out infinite; }
@keyframes heartBeat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.loading-inner { text-align: center; position: relative; z-index: 2; }
.loading-ring { animation: loadingItemIn .6s ease .1s backwards; }
.loading-logo { font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; color: var(--text); margin-bottom: .5rem; letter-spacing: -.01em; animation: loadingItemIn .6s ease .25s backwards; }
.loading-logo span { color: var(--pink-deep); font-style: italic; font-weight: 500; }
.loading-tagline { font-size: .7rem; color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.75rem; opacity: .85; animation: loadingItemIn .6s ease .4s backwards; }
.loading-bar { width: 220px; height: 3px; background: var(--border); border-radius: 99px; overflow: hidden; margin: 0 auto 1rem; position: relative; animation: loadingItemIn .6s ease .5s backwards; }
.loading-fill { height: 100%; background: linear-gradient(90deg, var(--pink-deep), var(--gold), var(--purple)); background-size: 200% 100%; border-radius: 99px; animation: loadFill 7s cubic-bezier(.4,0,.2,1) forwards, loadShimmer 1.5s linear infinite; width: 0%; }
@keyframes loadFill { from { width: 0; } to { width: 100%; } }
@keyframes loadShimmer { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }
@keyframes loadingItemIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.loading-inner p { color: var(--text-muted); font-size: .8rem; min-height: 1.2em; animation: loadingItemIn .6s ease .6s backwards; transition: opacity .2s ease; padding: 0 1.5rem; max-width: 320px; margin: 0 auto; }
.loading-credit { margin-top: 2.25rem; font-size: .68rem; color: var(--text-muted); opacity: .75; animation: loadingItemIn .6s ease .8s backwards; }
.loading-credit a { color: var(--gold); font-weight: 700; text-decoration: none; }
.loading-credit a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   TOAST NOTIFICATIONS
   ══════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 5.5rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  pointer-events: none;
  max-width: 300px;
  width: calc(100vw - 2rem);
}
.toast {
  padding: .65rem .9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: .82rem;
  animation: slideInToast .35s ease;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  pointer-events: auto;
  word-break: break-word;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
}
.toast::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--purple); }
.toast.success::before { background: #68d391; }
.toast.error::before   { background: #fc8181; }
.toast.info::before    { background: var(--purple); }
@keyframes slideInToast { from { transform: translateX(105%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@media (max-width: 768px) {
  .toast-container { bottom: 6.4rem; right: .7rem; left: auto; max-width: min(280px, calc(100vw - 5.5rem)); align-items: flex-end; }
  .toast { font-size: .76rem; padding: .55rem .75rem; }
}

/* ══════════════════════════════════════════
   PROTOTYPE NOTICE BADGE
   ══════════════════════════════════════════ */
.proto-badge {
  position: fixed;
  bottom: .85rem;
  left: .85rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .45rem;
  max-width: 300px;
  padding: .45rem .55rem .45rem .7rem;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  font-size: .66rem;
  line-height: 1.35;
  color: var(--text-muted);
  transition: opacity .25s ease, transform .25s ease;
}
[data-theme="dark"] .proto-badge { background: rgba(34,16,25,.88); }
.proto-badge.hide { opacity: 0; transform: translateY(6px) scale(.96); pointer-events: none; }
.proto-badge i { color: var(--gold); font-size: .72rem; flex-shrink: 0; }
.proto-badge a { color: var(--pink-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.proto-badge button { flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--border); color: var(--text-muted); font-size: .5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; }
.proto-badge button:hover { background: rgba(239,68,68,.2); color: #ef4444; }
@media (max-width: 768px) {
  .proto-badge { max-width: min(230px, calc(100vw - 5.5rem)); font-size: .6rem; padding: .4rem .5rem .4rem .6rem; bottom: .7rem; left: .7rem; }
}
@media (max-width: 360px) {
  .proto-badge { max-width: min(190px, calc(100vw - 5.2rem)); font-size: .56rem; }
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--navbar-h); transition: var(--trans); background: transparent; }
.navbar.scrolled { background: rgba(255,253,251,.78); backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%); border-bottom: 1px solid rgba(185,138,68,.18); box-shadow: 0 1px 0 rgba(185,138,68,.1), var(--shadow-sm); }
[data-theme="dark"] .navbar.scrolled { background: rgba(21,10,16,.78); border-bottom-color: rgba(224,185,120,.15); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--text); flex-shrink: 0; letter-spacing: -.01em; }
.nav-logo span { color: var(--pink-deep); font-style: italic; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: .15rem; flex: 1; }
.nav-links-label { display: none; }
.nav-links a { padding: .45rem .85rem; border-radius: 50px; font-size: .82rem; font-weight: 600; letter-spacing: .01em; color: var(--text-sec); transition: var(--trans); }
.nav-links a:hover { color: var(--pink-deep); background: var(--pink-light); }
.nav-links a i { display: none; }
.nav-actions { display: flex; align-items: center; gap: .65rem; margin-left: auto; flex-shrink: 0; }
.theme-toggle { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-sec); background: var(--bg-card2); border: 1px solid var(--border); transition: var(--trans); cursor: pointer; }
.theme-toggle:hover { background: var(--pink-light); color: var(--pink-deep); border-color: var(--pink); }
.btn-nav-login { padding: .55rem 1.25rem; background: var(--text); color: var(--bg); border-radius: 50px; font-size: .82rem; font-weight: 700; transition: var(--trans); display: flex; align-items: center; gap: .45rem; cursor: pointer; }
.btn-nav-login:hover { transform: translateY(-1px); background: var(--pink-deep); color: #fff; box-shadow: var(--shadow-md); }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; padding: 6px; background: none; cursor: pointer; position: relative; z-index: 1002; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 99px; transition: transform .3s ease, opacity .2s ease; display: block; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-backdrop { display: none; }
@media (max-width: 900px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: calc(var(--navbar-h) + .6rem);
    right: 1rem;
    left: auto;
    width: 232px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .6rem;
    flex-direction: column;
    align-items: stretch;
    gap: .1rem;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px) scale(.97);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1), opacity .18s ease;
  }
  .nav-links.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .nav-links-label { display: block; font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); padding: .4rem .7rem .5rem; }
  .nav-links a { padding: .68rem .7rem; border-radius: var(--radius-sm); font-size: .87rem; display: flex; align-items: center; gap: .7rem; color: var(--text-sec); }
  .nav-links a i { display: inline-block; width: 16px; text-align: center; color: var(--gold); font-size: .82rem; flex-shrink: 0; }
  .nav-links a:hover { background: var(--pink-light); color: var(--pink-deep); }
  .nav-links a.active { background: var(--pink-light); color: var(--pink-deep); font-weight: 700; }
  .nav-links a.active i { color: var(--pink-deep); }
  .nav-hamburger { display: flex; }
  .nav-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(20,8,13,.32);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
}
@media (max-width: 480px) {
  .nav-container { padding: 0 1rem; gap: .75rem; }
  .btn-nav-login span { display: none; }
}

/* ══════════════════════════════════════════
   HIDE NAVBAR ON DASHBOARD PAGES
   ══════════════════════════════════════════ */
/* Navbar/footer hidden on dashboard pages - both CSS + JS for reliability */
body.dashboard-active .navbar,
body.dashboard-active #mainFooter { display: none !important; }

/* Dashboard page: override .page padding-top so no gap at top */
body.dashboard-active .dashboard-page.active {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ══════════════════════════════════════════
   PAGES
   ══════════════════════════════════════════ */
.page { display: none; min-height: 100vh; padding-top: var(--navbar-h); }
.page.active { display: block; animation: pageEnter .45s cubic-bezier(.22,1,.36,1); }
@keyframes pageEnter { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .page.active { animation: none; } }

/* Dashboard pages: no navbar padding, full-screen flex layout */
.dashboard-page {
  display: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.dashboard-page.active {
  display: flex !important;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.9rem;
  background: var(--pink-deep);
  color: #fff; border-radius: 50px; font-weight: 700; font-size: .87rem; letter-spacing: .01em;
  transition: var(--trans); border: none; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 20px rgba(184,20,74,.22);
}
.btn-primary:hover { transform: translateY(-2px); background: #9c0e3d; box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 14px 30px rgba(184,20,74,.32); }
.btn-primary::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,.25); border-radius: 50%; transform: translate(-50%,-50%); transition: width .5s, height .5s, opacity .5s; opacity: 0; }
.btn-primary:active::after { width: 250px; height: 250px; opacity: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .82rem 1.85rem;
  border: 1.5px solid var(--text); color: var(--text);
  border-radius: 50px; font-weight: 700; font-size: .87rem; letter-spacing: .01em;
  transition: var(--trans); background: transparent; cursor: pointer;
}
.btn-outline:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); border-color: var(--text); }

.btn-sm {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1rem;
  border: 1px solid var(--pink-deep); color: var(--pink-deep);
  border-radius: 50px; font-size: .8rem; font-weight: 600;
  transition: var(--trans); cursor: pointer; background: transparent;
}
.btn-sm:hover { background: var(--pink-deep); color: #fff; }

.glow-btn { position: relative; overflow: hidden; }
.glow-btn::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,.3); border-radius: 50%; transform: translate(-50%,-50%); transition: width .6s, height .6s, opacity .6s; }
.glow-btn:active::after { width: 300px; height: 300px; opacity: 0; }

/* ══════════════════════════════════════════
   LAYOUT COMMONS
   ══════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .3rem .95rem .3rem .5rem; background: transparent; color: var(--gold); border: 1px solid rgba(185,138,68,.4); border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.section-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--pink-deep); flex-shrink: 0; }
.section-header h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.5vw, 2.75rem); margin-bottom: .75rem; letter-spacing: -.02em; }
.section-header h2 em { color: var(--pink-deep); font-style: italic; font-weight: 500; }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: .98rem; }

.page-hero {
  padding: 6.5rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--pink-light), transparent 70%), var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 64px; height: 3px; background: var(--gold); border-radius: 3px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: .6rem; letter-spacing: -.02em; }
.page-hero h1 em { color: var(--pink-deep); font-style: italic; font-weight: 500; }
.page-hero p { color: var(--text-muted); font-size: .98rem; }
@media (max-width: 480px) {
  .page-hero { padding: 5.5rem 1rem 2.5rem; }
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--navbar-h));
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 5vw;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: .55; filter: blur(2px); }
.shape-1 { width: 560px; height: 560px; background: radial-gradient(var(--pink-light), transparent 70%); top: -240px; right: -120px; animation: floatShape 9s ease-in-out infinite; }
.shape-2 { width: 380px; height: 380px; background: radial-gradient(var(--gold-light), transparent 70%); bottom: -120px; left: -90px; animation: floatShape 11s ease-in-out infinite reverse; }
.shape-3 { width: 220px; height: 220px; background: radial-gradient(var(--purple-light), transparent 70%); top: 32%; right: 28%; animation: floatShape 7s ease-in-out infinite; }
@keyframes floatShape { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-20px) scale(1.05); } }

.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: .55rem; padding: .45rem 1.1rem .45rem .6rem; background: var(--bg-card); box-shadow: var(--shadow-sm); border: 1px solid var(--border); border-radius: 50px; font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: var(--text-sec); margin-bottom: 1.75rem; animation: fadeInUp .6s ease .2s backwards; }
.hero-badge i { color: var(--pink-deep); }
.hero-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 1.4rem; animation: fadeInUp .6s ease .3s backwards; }
.hero-title em { color: var(--pink-deep); font-style: italic; font-weight: 500; display: inline-block; min-width: 1ch; }
.hero-title em::after { content: '|'; animation: blink .75s step-end infinite; color: var(--pink-deep); font-style: normal; font-size: .9em; margin-left: 2px; }
.hero-sub { color: var(--text-sec); font-size: 1.05rem; margin-bottom: 2.25rem; line-height: 1.75; max-width: 480px; animation: fadeInUp .6s ease .4s backwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; animation: fadeInUp .6s ease .5s backwards; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; animation: fadeInUp .6s ease .6s backwards; }
.hstat { text-align: left; }
.hstat-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--text); display: block; }
.hstat-label { font-size: .72rem; color: var(--text-muted); letter-spacing: .02em; }
.hstat-div { width: 1px; height: 36px; background: var(--border); }

/* Hero card stack */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; height: 420px; }
.hero-card-stack { position: relative; width: 280px; height: 380px; }
.hcard {
  position: absolute;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(185,138,68,.25);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--shadow-md);
  width: 240px;
  transition: var(--trans);
}
[data-theme="dark"] .hcard { background: rgba(34,16,25,.9); border-color: rgba(224,185,120,.2); }
.hcard-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.15rem; color: #fff; flex-shrink: 0; border: 1px solid rgba(185,138,68,.3); }
.hcard-avatar-1 { background: linear-gradient(135deg, var(--pink), var(--pink-deep)); }
.hcard-avatar-2 { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); }
.hcard-avatar-3 { background: linear-gradient(135deg, var(--peach), var(--gold)); }
.hcard-info strong { display: block; font-size: .88rem; font-weight: 700; }
.hcard-info span { font-size: .72rem; color: var(--text-muted); }
.hcard-status { margin-left: auto; font-size: .68rem; font-weight: 700; padding: .2rem .55rem; border-radius: 50px; background: rgba(72,187,120,.15); color: #059669; white-space: nowrap; }
.hcard-1 { top: 0; left: 20px; transform: rotate(-4deg); }
.hcard-2 { top: 110px; left: 0; transform: rotate(0deg); z-index: 2; animation: floatCard 3.5s ease-in-out infinite; box-shadow: var(--shadow-lg); }
.hcard-3 { top: 230px; left: 25px; transform: rotate(3deg); }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Hero responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 3.5rem 2rem; gap: 2rem; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-badge { margin-bottom: 1.25rem; }
}
@media (max-width: 768px) {
  .hero { padding: 2.5rem 1.25rem; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
}
@media (max-width: 480px) {
  .hero { padding: 2rem 1rem; }
  .hero-stats { gap: 1rem; }
  .hstat-div { height: 28px; }
}

/* ══════════════════════════════════════════
   SERVICES GRID (Landing)
   ══════════════════════════════════════════ */
.services-overview { background: var(--cream); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1rem; text-align: center; cursor: pointer; transition: var(--trans);
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(185,138,68,.35); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: linear-gradient(135deg, var(--pink-light), var(--gold-light)); border-color: rgba(185,138,68,.4); }
.sc-icon { font-size: 2rem; margin-bottom: .7rem; }
.service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin-bottom: .35rem; }
.service-card p { font-size: .78rem; color: var(--text-muted); }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; } }
@media (max-width: 360px)  { .services-grid { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════════
   TALENT SHOWCASE (Landing)
   ══════════════════════════════════════════ */
.talent-showcase { background: var(--bg); }
.talent-showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .talent-showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .talent-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; } }

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials { background: var(--ink); position: relative; }
.testimonials .section-header h2, .testimonials .section-header p { color: rgba(255,255,255,.85); }
.testimonials .section-header h2 em { color: var(--gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.75rem; transition: var(--trans); backdrop-filter: blur(8px); }
.testi-card:hover { transform: translateY(-4px); border-color: rgba(185,138,68,.4); }
.testi-header strong { color: #fff; }
.testi-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1.5px solid rgba(185,138,68,.35); box-shadow: var(--shadow-sm); transition: transform .3s ease; }
.testi-card:hover .testi-avatar { transform: scale(1.06); }
.testi-avatar-letter { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.15rem; color: rgba(255,255,255,.95); text-shadow: 0 1px 4px rgba(0,0,0,.15); }
.testi-header strong { display: block; font-size: .9rem; font-weight: 700; }
.testi-stars { font-size: .75rem; margin-top: .15rem; }
.testi-card p { font-size: .85rem; color: rgba(255,255,255,.8); font-style: italic; font-family: var(--font-elegant); line-height: 1.7; margin-bottom: .75rem; }
.testi-service { display: inline-block; padding: .2rem .65rem; background: var(--pink-light); color: var(--pink-deep); border-radius: 50px; font-size: .72rem; font-weight: 600; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════ */
.why-us { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.25rem 1.5rem; text-align: center; transition: var(--trans); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(185,138,68,.3); }
.why-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); margin: 0 auto 1.25rem; }
.why-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; margin-bottom: .5rem; }
.why-card p { font-size: .85rem; color: var(--text-sec); line-height: 1.65; }

/* ══════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════ */
.faq-section { background: var(--cream); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--trans); }
.faq-item:hover { border-color: rgba(185,138,68,.3); }
.faq-item.open { border-color: rgba(184,20,74,.3); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); text-align: left;
}
.faq-question span { font-weight: 700; font-size: .92rem; color: var(--text); }
.faq-question i { flex-shrink: 0; color: var(--gold); font-size: .8rem; transition: transform .3s ease; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--pink-deep); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p { padding: 0 1.4rem 1.1rem; font-size: .85rem; color: var(--text-sec); line-height: 1.7; }
@media (max-width: 900px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .why-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section { background: var(--cream); }
.cta-box { background: radial-gradient(ellipse 90% 130% at 50% -10%, rgba(184,20,74,.25), transparent 60%), var(--ink); border: 1px solid rgba(224,185,120,.25); border-radius: var(--radius-lg); padding: 4.5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-box h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: .75rem; color: #fff; }
.cta-box h2 em { color: var(--gold); font-style: italic; font-weight: 500; }
.cta-box p { color: rgba(255,255,255,.72); max-width: 480px; margin: 0 auto; }
.cta-box .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-box .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (max-width: 480px) {
  .cta-box { padding: 2.5rem 1.25rem; }
  .cta-box div { flex-direction: column; align-items: center; }
  .cta-box .btn-primary, .cta-box .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
}

/* ══════════════════════════════════════════
   TALENT CARD (Shared)
   ══════════════════════════════════════════ */
.talent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
}
.talent-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(185,138,68,.35); }
.talent-card::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius); box-shadow: inset 0 0 0 1px rgba(185,138,68,0); opacity: 0; transition: var(--trans); pointer-events: none; }
.talent-card:hover::after { opacity: 1; box-shadow: inset 0 0 0 1px rgba(185,138,68,.3); }

.tc-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.tc-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .5s ease, opacity .5s ease;
  animation: kenBurns 9s ease-in-out infinite alternate;
  will-change: transform;
}
.talent-card:hover .tc-photo img { animation-play-state: paused; transform: scale(1.1); }
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.07) translate(-1%, -1%); }
}
.tc-avatar-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform .4s ease; }
.talent-card:hover .tc-avatar-fallback { transform: scale(1.06); }
.tc-monogram { position: relative; width: 84px; height: 84px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.14); backdrop-filter: blur(2px); }
.tc-monogram-letter { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 2.4rem; color: rgba(255,255,255,.92); text-shadow: 0 2px 10px rgba(0,0,0,.08); }
@media (prefers-reduced-motion: reduce) { .tc-photo img { animation: none; } }
body.modal-open .tc-photo img,
body.modal-open .td-hero-photo img,
body.modal-open .td-hero-photo span,
body.modal-open .loading-screen::before,
body.modal-open .loading-particle { animation-play-state: paused !important; }

/* Talent detail hero photo — slower, more cinematic zoom */
.td-hero-photo img, .td-hero-photo span {
  animation: kenBurnsSlow 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurnsSlow {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .td-hero-photo img, .td-hero-photo span { animation: none; } }

/* Graceful fade-in once an image finishes loading, instead of a hard pop-in */
.tc-photo img, .td-hero-photo img, .talent-detail-grid img {
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
}
.tc-photo img.loaded, .td-hero-photo img.loaded, .talent-detail-grid img.loaded { opacity: 1; }
.tc-monogram-accent { position: absolute; bottom: -4px; right: -4px; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-card); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; }

.tc-status {
  position: absolute; bottom: .6rem; left: .6rem;
  font-size: .68rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 50px;
  background: rgba(0,0,0,.45); color: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
}
.tc-status.online { background: rgba(5,150,105,.85); color: #fff; }
.tc-status.busy   { background: rgba(245,158,11,.85); color: #fff; }
.tc-verified { position: absolute; top: .6rem; right: .6rem; background: rgba(255,255,255,.85); color: var(--gold); border: 1px solid rgba(185,138,68,.4); border-radius: 50px; padding: .18rem .55rem; font-size: .62rem; font-weight: 700; backdrop-filter: blur(6px); display: flex; align-items: center; gap: 3px; }
.tc-pending { position: absolute; top: .6rem; right: .6rem; background: rgba(245,158,11,.2); color: #d97706; border: 1px solid rgba(245,158,11,.35); border-radius: 50px; padding: .18rem .5rem; font-size: .62rem; font-weight: 700; backdrop-filter: blur(4px); }

.tc-info { padding: 1rem; }
.tc-header { display: flex; align-items: center; gap: .4rem; margin-bottom: .25rem; }
.tc-header strong { font-size: .92rem; font-weight: 700; }
.verified-badge { font-size: .7rem; color: var(--gold); font-weight: 700; }
.tc-meta { font-size: .76rem; color: var(--text-muted); margin-bottom: .3rem; }
.tc-rating { font-size: .8rem; font-weight: 600; color: var(--text-sec); margin-bottom: .5rem; }
.tc-services { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .6rem; }
.tc-services span { padding: .2rem .55rem; background: var(--pink-light); color: var(--pink-deep); border-radius: 50px; font-size: .68rem; font-weight: 600; }

/* ══════════════════════════════════════════
   TALENTS PAGE
   ══════════════════════════════════════════ */
.talent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1100px) { .talent-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .talent-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 420px)  { .talent-grid { grid-template-columns: 1fr; } }

.empty-state { grid-column: 1/-1; text-align: center; padding: 4.5rem 1.5rem; }
.empty-state-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--pink-light); color: var(--pink-deep); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1.25rem; }
.empty-state h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: .5rem; }
.empty-state p { color: var(--text-muted); font-size: .88rem; margin-bottom: 1.5rem; max-width: 320px; margin-left: auto; margin-right: auto; }

/* Talent filters */
.talent-filters { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.search-wrap { display: flex; align-items: center; gap: .6rem; background: var(--bg); border: 1px solid var(--border); border-radius: 50px; padding: .5rem 1rem; flex: 1; min-width: 180px; }
.search-wrap input { border: none; background: transparent; flex: 1; color: var(--text); font-size: .86rem; outline: none; font-family: var(--font-body); min-width: 0; }
.search-wrap i { color: var(--text-muted); font-size: .85rem; flex-shrink: 0; }
.talent-filters .custom-select { width: auto; min-width: 150px; }
.talent-filters .custom-select-trigger { padding: .5rem .9rem; border-radius: 50px; font-size: .83rem; }
@media (max-width: 640px) {
  .talent-filters { gap: .5rem; padding: 1rem; }
  .search-wrap { min-width: 100%; }
  .talent-filters .custom-select { flex: 1; min-width: calc(50% - .25rem); }
}
@media (max-width: 380px) {
  .talent-filters .custom-select { min-width: 100%; }
}

/* ══════════════════════════════════════════
   TALENT DETAIL
   ══════════════════════════════════════════ */
.talent-detail-grid { display: grid; grid-template-columns: 320px 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .talent-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .talent-detail-grid { gap: 1rem; } }

/* ══════════════════════════════════════════
   PRICELIST
   ══════════════════════════════════════════ */
.price-filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.price-filter-btn { padding: .45rem 1rem; border: 1px solid var(--border); border-radius: 50px; font-size: .82rem; background: var(--bg-card); color: var(--text-sec); cursor: pointer; transition: var(--trans); font-family: var(--font-body); white-space: nowrap; }
.price-filter-btn:hover, .price-filter-btn.active { background: linear-gradient(135deg, var(--pink-deep), var(--purple-deep)); color: #fff; border-color: transparent; }
@media (max-width: 480px) { .price-filter-bar { gap: .4rem; } .price-filter-btn { font-size: .75rem; padding: .4rem .75rem; } }

.price-section { padding-bottom: 1.5rem; border-bottom: 1px dashed var(--border); margin-bottom: 1.5rem; }
.price-section:last-child { border-bottom: none; }
.price-section-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--pink-deep); display: flex; align-items: center; gap: .6rem; }

.price-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 1rem; margin-bottom: .5rem; }
.price-item-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; position: relative; transition: var(--trans); }
.price-item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-item-card.popular { border-color: var(--pink); background: linear-gradient(135deg, var(--pink-light), var(--bg-card)); }
.popular-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--pink-deep), var(--purple-deep)); color: #fff; padding: .2rem .75rem; border-radius: 50px; font-size: .66rem; font-weight: 700; white-space: nowrap; }
.price-item-label { font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
.price-item-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--pink-deep); }
.price-item-price small { font-size: .7rem; font-family: var(--font-body); color: var(--text-muted); }

.package-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.25rem; }
.package-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; position: relative; transition: var(--trans); display: flex; flex-direction: column; gap: .5rem; }
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.featured { background: linear-gradient(135deg, var(--pink-deep), var(--purple-deep)); color: #fff; border: none; }
.package-card.featured .pkg-price { color: #fff; }
.package-card.featured .pkg-items li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.2); }
.pkg-badge { position: absolute; top: -10px; right: 1rem; background: #f59e0b; color: #fff; padding: .2rem .75rem; border-radius: 50px; font-size: .66rem; font-weight: 700; }
.pkg-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--pink-deep); }
.pkg-items { list-style: none; display: flex; flex-direction: column; gap: .35rem; margin: .5rem 0; }
.pkg-items li { font-size: .78rem; color: var(--text-sec); padding: .25rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .4rem; }
.pkg-items li::before { content: '✓'; color: var(--pink-deep); font-weight: 700; flex-shrink: 0; }

/* ══════════════════════════════════════════
   LAYANAN PAGE
   ══════════════════════════════════════════ */
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 2rem 0; }
.layanan-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--trans); position: relative; overflow: hidden; }
.layanan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.layanan-card.featured-layanan { background: linear-gradient(135deg, var(--purple-light), var(--pink-light)); border-color: var(--purple); }
.lc-badge { position: absolute; top: .75rem; right: .75rem; background: linear-gradient(135deg, var(--pink-deep), var(--purple-deep)); color: #fff; padding: .25rem .75rem; border-radius: 50px; font-size: .7rem; font-weight: 600; }
.lc-icon { width: 58px; height: 58px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--pink-deep); margin-bottom: 1rem; }
.lc-1 .lc-icon { background: var(--pink-light); color: var(--pink-deep); }
.lc-2 .lc-icon { background: var(--gold-light); color: var(--gold); }
.lc-3 .lc-icon { background: var(--purple-light); color: var(--purple-deep); }
.lc-4 .lc-icon { background: var(--peach-light); color: var(--peach); }
.lc-5 .lc-icon { background: var(--pink-light); color: var(--purple-deep); }
.lc-6 .lc-icon { background: var(--gold-light); color: #8b6914; }
.layanan-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .6rem; }
.layanan-card p { font-size: .84rem; color: var(--text-sec); margin-bottom: 1rem; line-height: 1.7; }
.layanan-card ul { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .3rem; }
.layanan-card ul li { font-size: .81rem; color: var(--text-muted); padding-left: 1.2rem; position: relative; }
.layanan-card ul li::before { content: '✦'; position: absolute; left: 0; color: var(--pink); }
@media (max-width: 1024px) { .layanan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .layanan-grid { grid-template-columns: 1fr; gap: 1rem; padding: 1rem 0; } }

/* ══════════════════════════════════════════
   REGISTER FORM
   ══════════════════════════════════════════ */
.register-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; padding: 2rem 0; }
.register-info { background: linear-gradient(135deg, var(--pink-light), var(--purple-light)); border-radius: var(--radius-lg); padding: 2rem; height: fit-content; position: sticky; top: calc(var(--navbar-h) + 1rem); }
.register-info h3 { font-family: var(--font-display); margin-bottom: 1.5rem; }
.reg-benefit { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.reg-benefit i { font-size: 1.2rem; color: var(--pink-deep); flex-shrink: 0; margin-top: .1rem; }
.reg-benefit strong { display: block; margin-bottom: .2rem; font-size: .9rem; }
.reg-benefit p { font-size: .82rem; color: var(--text-muted); }
.register-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }

.step-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 2.5rem; }
.step:not(.step-line) { width: 42px; height: 42px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; position: relative; flex-shrink: 0; z-index: 1; transition: var(--trans); cursor: default; }
.step:not(.step-line) span { position: absolute; top: 100%; margin-top: .4rem; font-size: .7rem; white-space: nowrap; color: var(--text-muted); font-weight: 400; }
.step.active:not(.step-line) { background: linear-gradient(135deg, var(--pink-deep), var(--purple-deep)); border-color: transparent; color: #fff; box-shadow: 0 4px 15px rgba(228,121,158,.4); }
.step.done:not(.step-line)   { background: var(--pink-light); color: var(--pink-deep); border-color: var(--pink); }
.step-line { flex: 1; height: 2px; background: var(--border); }
.step-line.filled { background: linear-gradient(90deg, var(--pink-deep), var(--purple-deep)); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-sec); }
.form-group input, .form-group select, .form-group textarea { padding: .65rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); font-size: .87rem; transition: var(--trans); font-family: var(--font-body); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--pink-deep); box-shadow: 0 0 0 3px rgba(228,120,158,.12); outline: none; }
.icon-input { position: relative; }
.icon-input i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: .85rem; pointer-events: none; }
.icon-input input { padding-left: 2.6rem !important; }
.demo-hint { display: flex; align-items: center; gap: .5rem; margin-top: 1.1rem; padding: .6rem .85rem; background: var(--gold-light); border: 1px solid rgba(185,138,68,.3); border-radius: var(--radius-sm); font-size: .74rem; color: var(--text-sec); }
.demo-hint i { color: var(--gold); flex-shrink: 0; }
.demo-hint strong { color: var(--text); font-weight: 700; }

/* ══════════════════════════════════════════
   CUSTOM SELECT — themed replacement for native <select>
   ══════════════════════════════════════════ */
.custom-select { position: relative; width: 100%; }
.custom-select-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); font-size: .87rem; font-family: var(--font-body);
  cursor: pointer; transition: var(--trans); text-align: left;
}
.custom-select-trigger:hover { border-color: rgba(185,138,68,.4); }
.custom-select.open .custom-select-trigger { border-color: var(--pink-deep); box-shadow: 0 0 0 3px rgba(228,120,158,.12); }
.custom-select-trigger i { font-size: .7rem; color: var(--text-muted); transition: transform .25s ease; flex-shrink: 0; margin-left: .5rem; }
.custom-select.open .custom-select-trigger i { transform: rotate(180deg); color: var(--pink-deep); }
.custom-select-panel {
  position: absolute; top: calc(100% + .4rem); left: 0; right: 0; z-index: 40;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); max-height: 240px; overflow-y: auto; padding: .35rem;
  opacity: 0; transform: translateY(-6px) scale(.98); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.custom-select.open .custom-select-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cs-option { padding: .6rem .75rem; border-radius: var(--radius-sm); font-size: .85rem; color: var(--text-sec); cursor: pointer; transition: var(--trans); }
.cs-option:hover { background: var(--pink-light); color: var(--pink-deep); }
.cs-option.selected { background: var(--pink-light); color: var(--pink-deep); font-weight: 700; }
[data-theme="dark"] .custom-select-panel { background: rgba(34,16,25,.98); }

.reg-step { display: none; }
.reg-step.active { display: block; }
.reg-step h3 { font-family: var(--font-display); margin-bottom: 1.5rem; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .4rem; }
.check-item { display: flex; align-items: center; gap: .45rem; padding: .4rem .85rem; border: 1px solid var(--border); border-radius: 50px; font-size: .82rem; cursor: pointer; transition: var(--trans); }
.check-item:hover { border-color: var(--pink); color: var(--pink-deep); }
.check-item input { accent-color: var(--pink-deep); }

@media (max-width: 1024px) { .register-wrapper { grid-template-columns: 1fr; } .register-info { position: relative; top: 0; } }
@media (max-width: 640px)  { .form-grid { grid-template-columns: 1fr; } .register-form-wrap { padding: 1.25rem; } }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 3rem 0; }
.about-visi { background: linear-gradient(135deg, var(--pink-light), var(--purple-light)); border-radius: var(--radius-lg); padding: 2.5rem; }
.about-visi h3 { font-family: var(--font-display); font-size: 1.2rem; margin-top: 1rem; line-height: 1.6; }
.about-misi { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.misi-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.misi-list li { display: flex; align-items: center; gap: .85rem; font-size: .9rem; }
.misi-list i { color: var(--pink-deep); width: 20px; flex-shrink: 0; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 1.25rem; padding: 2rem 0; } }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 2.5rem; }
.about-stat { background: var(--bg-card); padding: 1.75rem 1rem; text-align: center; }
.about-stat-num { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; color: var(--pink-deep); margin-bottom: .25rem; }
.about-stat-label { font-size: .76rem; color: var(--text-muted); letter-spacing: .01em; }
@media (max-width: 640px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; padding-bottom: 1rem; }
.about-value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.4rem; text-align: center; transition: var(--trans); }
.about-value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(185,138,68,.3); }
.about-value-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin: 1rem 0 .5rem; }
.about-value-card p { font-size: .82rem; color: var(--text-sec); line-height: 1.6; }
@media (max-width: 900px) { .about-values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .about-values { grid-template-columns: 1fr; } }

.about-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding-bottom: 4rem; position: relative; }
.about-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; position: relative; transition: var(--trans); }
.about-step:hover { border-color: rgba(185,138,68,.35); box-shadow: var(--shadow-sm); }
.about-step-num { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 2.2rem; color: var(--gold); opacity: .55; margin-bottom: .5rem; }
.about-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: .5rem; }
.about-step p { font-size: .84rem; color: var(--text-sec); line-height: 1.65; }
@media (max-width: 800px) { .about-timeline { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   DASHBOARD — Sidebar, Topbar, Layout
   Fully redesigned: modern, responsive HP+PC
   ══════════════════════════════════════════ */

/* === SHARED BASE === */
/* dashboard-page display rules are in the PAGES section above */
/* This section handles internal layout only */

.db-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.52);
  z-index: 1099;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  /* Must NOT affect flex layout of parent */
  flex: none;
  pointer-events: none;
}
.db-overlay.open {
  display: block;
  pointer-events: auto;
  animation: overlayFadeIn .25s ease forwards;
}
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* === SIDEBAR SHARED === */
.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform .32s cubic-bezier(0.4,0,0.2,1),
              box-shadow .32s ease;
  flex-shrink: 0;
}

/* Sidebar Header (Logo) */
.db-logo {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--bg-card) 60%, var(--pink-light));
}
.db-logo span { color: var(--pink-deep); font-style: italic; }

/* Avatar block inside sidebar (decorative) */
.db-sidebar-avatar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  margin: 0 .75rem .25rem;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  border-radius: var(--radius-sm);
}
.db-sidebar-avatar-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--purple-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; flex-shrink: 0;
}
.db-sidebar-avatar-label { font-size: .78rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.db-sidebar-avatar-sub   { font-size: .68rem; color: var(--text-muted); }

/* Nav links */
.db-nav {
  flex: 1;
  padding: .5rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  overflow-y: auto;
}
.db-nav-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .75rem .75rem .3rem;
}

.db-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .72rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-sec);
  cursor: pointer;
  transition: var(--trans);
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  position: relative;
  font-family: var(--font-body);
}
.db-link i {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  font-size: .9rem;
  opacity: .75;
  transition: opacity .2s;
}
.db-link:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
}
.db-link:hover i { opacity: 1; }
.db-link.active {
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  color: var(--pink-deep);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(232,121,158,.12);
}
.db-link.active i { opacity: 1; }
.db-link.active::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: linear-gradient(to bottom, var(--pink-deep), var(--purple-deep));
  border-radius: 0 3px 3px 0;
}

/* Logout button */
.db-logout {
  margin: .75rem;
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  color: #ef4444;
  font-size: .84rem;
  font-weight: 600;
  border: 1.5px solid rgba(252,165,165,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  cursor: pointer;
  background: rgba(252,165,165,.06);
  transition: var(--trans);
  font-family: var(--font-body);
  flex-shrink: 0;
}
.db-logout:hover {
  background: rgba(252,165,165,.15);
  border-color: #f87171;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239,68,68,.15);
}

/* Close button inside sidebar (mobile) */
.db-logo-close {
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-muted);
  background: var(--border);
  border: none;
  padding: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background .2s, color .2s;
  flex-shrink: 0;
  font-family: inherit;
}
.db-logo-close:hover { background: var(--pink-light); color: var(--pink-deep); }

/* ══════════════════════════════════════════
   TOPBAR — always rendered, shown/hidden by breakpoint
   ══════════════════════════════════════════ */
.db-topbar {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1.25rem;
  background: var(--bg-card);
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  min-height: 56px;
  flex-shrink: 0;
}
.db-topbar-title {
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-deep);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.db-topbar-user {
  font-size: .78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  flex-shrink: 0;
}

/* Hamburger — visible on mobile, hidden on desktop */
.db-hamburger {
  width: 40px; height: 40px;
  display: flex;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
  transition: var(--trans);
}
.db-hamburger:hover { background: var(--pink-light); color: var(--pink-deep); border-color: var(--pink); }

/* Topbar logout button */
.btn-home {
  font-size: .78rem;
  padding: .4rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.btn-home:hover { border-color: #f87171; color: #ef4444; background: rgba(252,165,165,.1); }
.btn-home i { font-size: .72rem; }

/* ══════════════════════════════════════════
   DESKTOP LAYOUT (≥901px)
   Sidebar always visible, no topbar hamburger needed
   ══════════════════════════════════════════ */
@media (min-width: 901px) {
  .dashboard-page.active {
    flex-direction: row;
  }

  /* Sidebar: fixed left column */
  .dashboard-sidebar {
    width: 252px;
    position: sticky;
    top: 0;
    height: 100vh;
    transform: none !important;
    flex-shrink: 0;
  }

  .db-logo {
    font-size: 1.28rem;
    padding: 1.4rem 1.5rem;
  }

  /* Topbar on desktop: narrower, no hamburger */
  .db-topbar {
    padding: .55rem 1.5rem;
    min-height: 52px;
  }
  .db-hamburger { display: none; }  /* No hamburger on desktop */
  .db-logo-close { display: none; } /* No close btn on desktop */

  /* Main content area */
  .dashboard-content {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.75rem 2rem;
    background: var(--bg);
  }
}

/* ══════════════════════════════════════════
   MOBILE LAYOUT (≤900px)
   Sidebar hidden off-screen, topbar always visible
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .dashboard-page.active {
    flex-direction: column;
  }

  /* Topbar full mobile */
  .db-topbar {
    padding: .6rem 1rem;
    min-height: 54px;
    gap: .6rem;
  }
  .db-topbar-title { font-size: .95rem; }

  /* Sidebar: off-screen drawer */
  .dashboard-sidebar {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    width: 275px;
    max-width: 88vw;
    height: 100vh;
    z-index: 1100;
    transform: translateX(-100%);
    box-shadow: none;
    border-right: none;
  }
  .dashboard-sidebar.open {
    transform: translateX(0);
    box-shadow: 10px 0 40px rgba(0,0,0,.28);
    border-right: 1px solid var(--border);
  }

  .db-logo {
    font-size: 1.15rem;
    padding: 1.1rem 1.25rem;
  }

  .dashboard-content {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
    background: var(--bg);
    word-break: break-word;
  }

  .db-sidebar-avatar { padding: .85rem 1rem; }
}

/* ══════════════════════════════════════════
   SMALL MOBILE (≤480px)
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .db-topbar { padding: .5rem .75rem; gap: .5rem; min-height: 50px; }
  .db-topbar-title { font-size: .88rem; }
  .db-topbar-user { max-width: 80px; font-size: .7rem; display: none; }
  .btn-home { font-size: .72rem; padding: .32rem .65rem; }
  .db-hamburger { width: 36px; height: 36px; font-size: .9rem; }
  .dashboard-content { padding: .75rem; }
  .db-link { font-size: .84rem; padding: .65rem .9rem; }
  .db-sidebar-avatar { padding: .75rem; }
}


/* ══════════════════════════════════════════
   DB MAIN WRAP — right side column (topbar + content)
   ══════════════════════════════════════════ */
.db-main-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* === DASHBOARD TABS === */
.admin-tab, .talent-tab { display: none; animation: dbTabIn .25s ease; }
.admin-tab.active, .talent-tab.active { display: block; }
@keyframes dbTabIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* === STAT CARDS === */
.dash-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dash-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.dash-stat-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  border-radius: 0 var(--radius) 0 60px;
  background: linear-gradient(135deg, rgba(232,121,158,.06), rgba(196,168,232,.06));
}
.dash-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dsc-icon  { font-size: 1.6rem; margin-bottom: .55rem; }
.dsc-val   { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--pink-deep); line-height: 1.1; }
.dsc-label { font-size: .73rem; color: var(--text-muted); margin-top: .3rem; letter-spacing: .2px; }

@media (max-width: 1100px) {
  .dash-grid-4 { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
}
@media (max-width: 900px) {
  .dash-grid-4 { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .dash-stat-card { padding: 1rem; }
  .dsc-val { font-size: 1.5rem; }
  .dsc-icon { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .dash-grid-4 { gap: .6rem; }
  .dash-stat-card { padding: .85rem; }
  .dsc-val { font-size: 1.3rem; }
  .dsc-icon { font-size: 1.25rem; }
  .dsc-label { font-size: .68rem; }
}
@media (max-width: 360px) {
  .dsc-val { font-size: 1.1rem; }
}

/* === DASH SECTIONS === */
.dash-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.dash-section h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  color: var(--text);
}
@media (max-width: 900px) { .dash-section { padding: 1.1rem; } }
@media (max-width: 480px) { .dash-section { padding: .85rem; border-radius: var(--radius-sm); } }

/* === 2-COL GRID === */
.admin-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) { .admin-2col-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* === TABLES === */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  max-width: 100%;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  min-width: 520px;
}
.admin-table th {
  text-align: left;
  padding: .7rem .85rem;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
  background: var(--bg);
  font-size: .73rem;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.admin-table td {
  padding: .7rem .85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: linear-gradient(90deg, var(--pink-light) 0%, transparent 100%); }
@media (max-width: 900px) {
  .admin-table { font-size: .77rem; min-width: 480px; }
  .admin-table th, .admin-table td { padding: .55rem .65rem; }
}
@media (max-width: 480px) {
  .admin-table { font-size: .72rem; min-width: 440px; }
}

/* === BADGES === */
.status-badge {
  padding: .22rem .65rem;
  border-radius: 50px;
  font-size: .67rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  white-space: nowrap;
}
.badge-pending  { background: rgba(251,191,36,.15); color: #d97706; border: 1px solid rgba(251,191,36,.25); }
.badge-active   { background: rgba(72,187,120,.15);  color: #059669; border: 1px solid rgba(72,187,120,.25); }
.badge-rejected { background: rgba(252,165,165,.2);  color: #dc2626; border: 1px solid rgba(252,165,165,.3); }
.badge-done     { background: rgba(147,197,253,.2);  color: #2563eb; border: 1px solid rgba(147,197,253,.3); }

/* ══════════════════════════════════════════
   PHOTO SLOT MANAGER (Talent Dashboard)
   ══════════════════════════════════════════ */
.photo-slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 640px) { .photo-slots-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .photo-slots-grid { grid-template-columns: repeat(2, 1fr); } }

.photo-slot { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; display: flex; flex-direction: column; gap: .65rem; }
.photo-slot-label { font-size: .78rem; font-weight: 700; color: var(--text-sec); }
.photo-slot-preview {
  position: relative; border-radius: var(--radius-sm);
  overflow: hidden; aspect-ratio: 3/4;
  background: var(--bg-card2); border: 1px dashed var(--border);
}
.photo-slot-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.photo-slot-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--text-muted); background: var(--bg); }
.photo-slot-del {
  position: absolute; top: .4rem; right: .4rem;
  width: 28px; height: 28px;
  background: rgba(239,68,68,.88); color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; cursor: pointer;
  opacity: 0; transition: opacity .2s;
}
.photo-slot-preview:hover .photo-slot-del { opacity: 1; }
@media (max-width: 768px) { .photo-slot-del { opacity: 1; } }

.photo-slot-actions { display: flex; gap: .45rem; flex-wrap: wrap; }
.photo-upload-btn, .photo-link-btn {
  flex: 1; min-width: 0;
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  padding: .4rem .6rem; border-radius: var(--radius-sm);
  font-size: .75rem; font-weight: 600; cursor: pointer; transition: var(--trans);
  border: 1.5px solid var(--border); background: var(--bg); color: var(--text-sec);
  white-space: nowrap; font-family: var(--font-body);
}
.photo-upload-btn:hover { background: var(--pink-light); border-color: var(--pink); color: var(--pink-deep); }
.photo-link-btn:hover   { background: var(--purple-light); border-color: var(--purple); color: var(--purple-deep); }
.photo-drive-input { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .65rem; animation: fadeInDown .2s ease; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(8px); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--trans); padding: 1rem; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box { background: var(--bg-card); border-radius: var(--radius-lg); padding: 2.5rem; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: modalIn .35s ease; }
@keyframes modalIn { from { transform: scale(.95) translateY(10px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); transition: var(--trans); }
.modal-close:hover { background: var(--pink-light); color: var(--pink-deep); }
.modal-logo { font-family: var(--font-display); font-size: 1.5rem; text-align: center; margin-bottom: .5rem; }
.modal-logo span { color: var(--pink-deep); font-style: italic; }
.booking-modal { max-width: 540px; }
.notif-box { max-width: 400px; }
.notif-header { font-family: var(--font-display); font-size: 1.2rem; display: flex; align-items: center; gap: .6rem; margin-bottom: 1.25rem; color: var(--pink-deep); }
@media (max-width: 480px) { .modal-box { padding: 1.5rem 1.25rem; border-radius: var(--radius); } }

/* ══════════════════════════════════════════
   BOOKING MULTI-STEP
   ══════════════════════════════════════════ */
.booking-progress { display: flex; gap: .5rem; margin-bottom: 1.5rem; justify-content: center; }
.bp-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: var(--trans); }
.bp-dot.active { background: var(--pink-deep); transform: scale(1.4); }
.bp-dot.done   { background: var(--pink); }
.booking-step { display: none; animation: fadeInUp .3s ease; }
.booking-step.active { display: block; }

/* ══════════════════════════════════════════
   FLOATING ELEMENTS
   ══════════════════════════════════════════ */
.float-wa { position: fixed; bottom: 5.5rem; right: 1.5rem; width: 52px; height: 52px; background: linear-gradient(135deg, var(--pink-deep), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; box-shadow: 0 4px 20px rgba(184,20,74,.4); z-index: 800; transition: var(--trans); }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.float-music { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: linear-gradient(135deg, var(--pink-deep), var(--purple-deep)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; box-shadow: var(--shadow-md); z-index: 800; cursor: pointer; transition: var(--trans); }
.float-music:hover { transform: scale(1.1); }
.float-music.playing i { animation: spin 2s linear infinite; }
body.in-dashboard .float-wa,
body.in-dashboard .float-music,
body.in-dashboard .back-to-top,
body.in-dashboard .scroll-progress,
body.in-dashboard .proto-badge { display: none !important; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 9.7rem;
  right: 1.5rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-sec);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 799;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .2s, color .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--pink-deep); color: #fff; border-color: transparent; }
@media (max-width: 768px) { .back-to-top { width: 36px; height: 36px; font-size: .78rem; bottom: 8.6rem; right: 1rem; } }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink-deep), var(--gold));
  z-index: 1100;
  transition: width .1s linear;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@media (max-width: 480px) {
  .float-wa    { width: 46px; height: 46px; font-size: 1.3rem; bottom: 4.8rem; right: 1rem; }
  .float-music { width: 40px; height: 40px; font-size: .9rem; bottom: 1rem; right: 1rem; }
}

/* ══════════════════════════════════════════
   POPUP NOTIFICATION — Premium Modern v2
   ══════════════════════════════════════════ */

/* Shimmer animation for notification */
@keyframes notifShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes notifSlideIn {
  0% { transform: translateX(120%) scale(.9); opacity: 0; }
  60% { transform: translateX(-6px) scale(1.02); opacity: 1; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes notifPulseGlow {
  0%,100% { box-shadow: 0 8px 32px rgba(232,121,158,.25), 0 0 0 0 rgba(232,121,158,.4); }
  50% { box-shadow: 0 12px 40px rgba(232,121,158,.45), 0 0 0 8px rgba(232,121,158,0); }
}
@keyframes notifDotBlink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
@keyframes notifProgress {
  from { width: 100%; }
  to   { width: 0%; }
}
@keyframes notifEmojiFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-5deg); }
  75% { transform: translateY(-2px) rotate(5deg); }
}
@keyframes badgePop {
  0% { transform: scale(0) rotate(-12deg); opacity: 0; }
  70% { transform: scale(1.15) rotate(4deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.premium-notif {
  position: fixed;
  bottom: 4.1rem;
  left: 1rem;
  right: auto;
  z-index: 8500;
  max-width: 320px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .55rem .55rem .7rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  transform: translateY(16px) scale(.94);
  opacity: 0;
  transition: none;
}
[data-theme="dark"] .premium-notif { background: rgba(34,16,25,.97); border-color: rgba(185,138,68,.22); }
.premium-notif.show {
  animation: notifSlideIn .4s cubic-bezier(.34,1.56,.64,1) forwards;
  pointer-events: auto;
}
.premium-notif.hide {
  animation: notifSlideOut .3s ease forwards;
  pointer-events: none;
}
@keyframes notifSlideIn { to { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes notifSlideOut { to { transform: translateY(10px) scale(.95); opacity: 0; } }

.pn-emoji { font-size: 1.15rem; flex-shrink: 0; line-height: 1; }
.pn-text { min-width: 0; line-height: 1.25; }
.pn-title { font-size: .72rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.pn-desc { font-size: .64rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.pn-cta-btn {
  flex-shrink: 0;
  display: flex; align-items: center; gap: .3rem;
  padding: .38rem .7rem;
  background: var(--pink-deep);
  color: #fff;
  border-radius: 50px;
  font-size: .66rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-body);
  transition: transform .2s, box-shadow .2s;
}
.pn-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(184,20,74,.35); }
.pn-cta-btn i { font-size: .58rem; }
.pn-close {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: .5rem;
  transition: background .2s, transform .2s;
}
.pn-close:hover { background: rgba(239,68,68,.2); color: #ef4444; transform: scale(1.1); }
.pn-progress { position: absolute; bottom: 0; left: 12px; right: 12px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.pn-progress-fill { height: 100%; background: linear-gradient(90deg, var(--pink-deep), var(--gold)); width: 100%; transform-origin: left; }
.pn-progress-fill.animating { animation: notifProgress 6s linear forwards; }

@media (max-width: 768px) {
  .premium-notif { bottom: 3.6rem; left: .7rem; right: auto; max-width: min(300px, calc(100vw - 1.4rem)); }
  .pn-title, .pn-desc { max-width: 118px; }
}
@media (max-width: 380px) {
  .premium-notif { padding: .5rem .5rem .5rem .6rem; gap: .4rem; }
  .pn-title, .pn-desc { max-width: 92px; }
  .pn-cta-btn { padding: .34rem .55rem; font-size: .6rem; }
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer { background: #180a10; color: rgba(255,255,255,.65); padding: 4.5rem 2rem 0; border-top: 1px solid rgba(224,185,120,.15); }
[data-theme="dark"] .footer { background: #10070b; }
.footer-content { max-width: 1280px; margin: 0 auto 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: #fff; margin-bottom: .85rem; }
.footer-logo span { color: var(--gold); font-style: italic; font-weight: 500; }
.footer-brand p { font-size: .84rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: var(--trans); }
.footer-social a:hover { background: var(--pink-deep); color: #fff; border-color: transparent; }
.footer-links h4, .footer-contact h4 { color: var(--gold); font-family: var(--font-display); font-weight: 600; font-size: .92rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer-links a { display: block; font-size: .83rem; margin-bottom: .6rem; opacity: .68; transition: var(--trans); cursor: pointer; }
.footer-links a:hover { opacity: 1; color: var(--pink); padding-left: 3px; }
.footer-contact p { font-size: .83rem; margin-bottom: .65rem; display: flex; align-items: center; gap: .6rem; }
.disclaimer { margin-top: 1rem; padding: 1rem; background: rgba(255,255,255,.04); border-radius: var(--radius-sm); font-size: .75rem; line-height: 1.6; border-left: 2px solid var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; text-align: center; max-width: 1280px; margin: 0 auto; font-size: .82rem; }

/* Footer responsive */
@media (max-width: 1024px) { .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 640px)  { .footer-content { grid-template-columns: 1fr; gap: 1.75rem; } .footer { padding: 3rem 1.25rem 0; } }
@media (max-width: 480px)  { .footer-content { gap: 1.5rem; } }

/* Developer credit */
.developer-credit { width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; color: var(--text-muted); letter-spacing: .2px; }
[data-theme="dark"]  .developer-credit { border-top-color: rgba(255,255,255,.06); }
[data-theme="light"] .developer-credit { border-top-color: rgba(0,0,0,.06); }

/* Developer name badge — subtle gold pill, no neon */
.flicker-name {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .22rem .7rem .22rem .55rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .2px;
  color: var(--gold);
  background: rgba(185,138,68,.1);
  border: 1px solid rgba(185,138,68,.3);
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.flicker-name::before { content: '✦'; font-size: .68rem; opacity: .85; }
.flicker-name:hover { background: var(--pink-deep); color: #fff; border-color: transparent; transform: translateY(-1px); }
@media (max-width: 768px) { .developer-credit { font-size: 12px; padding-bottom: 15px; } .flicker-name { font-size: .72rem; padding: .2rem .6rem .2rem .5rem; } }

/* ══════════════════════════════════════════
   ANIMATIONS & SCROLL REVEAL
   ══════════════════════════════════════════ */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(72,187,120,.4); } 50% { box-shadow: 0 0 0 6px rgba(72,187,120,0); } }

.reveal       { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.95); transition: opacity .6s ease, transform .6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Glassmorphism */
.glass      { background: rgba(255,255,255,.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.4); }
[data-theme="dark"] .glass { background: rgba(36,24,48,.65); border-color: rgba(255,255,255,.08); }

/* Skeleton */
.skeleton { background: linear-gradient(90deg, var(--border) 25%, var(--bg-card2) 50%, var(--border) 75%); background-size: 200% 100%; animation: skelwave 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes skelwave { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Tags */
.tag-chat    { background: rgba(244,167,192,.2); color: var(--pink-deep); }
.tag-call    { background: rgba(196,168,232,.2); color: var(--purple-deep); }
.tag-vc      { background: rgba(147,197,253,.2); color: #2563eb; }
.tag-offline { background: rgba(252,165,165,.2); color: #ef4444; }
.tag-mabar   { background: rgba(167,243,208,.2); color: #059669; }

/* Neon hover */
.neon-hover:hover { box-shadow: 0 0 20px rgba(228,121,158,.35), 0 0 40px rgba(196,168,232,.15); }

/* Page container padding */
#page-talents .container,
#page-pricelist .container,
#page-layanan .container,
#page-daftar-talent .container,
#page-about .container { padding-top: 2rem; padding-bottom: 4rem; }
@media (max-width: 768px) {
  #page-talents .container,
  #page-pricelist .container,
  #page-layanan .container,
  #page-daftar-talent .container,
  #page-about .container { padding-top: 1.25rem; padding-bottom: 3rem; }
  .container { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 .75rem; }
}

/* ══════════════════════════════════════════
   GLOBAL RESPONSIVE FIXES
   ══════════════════════════════════════════ */
/* Dashboard overflow guard - handled in PAGES section */

@media (max-width: 540px) {
  .photo-slots-grid { grid-template-columns: 1fr !important; }
  .price-filter-bar { padding: .85rem .75rem; gap: .35rem; }
  .price-filter-btn { font-size: .72rem; padding: .35rem .65rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .layanan-grid { grid-template-columns: 1fr; }
  .layanan-card { padding: 1.25rem; }
  .package-grid { grid-template-columns: 1fr; }
  .price-items-grid { grid-template-columns: repeat(2, 1fr); }
  .register-wrapper { gap: 1.25rem; padding: 1rem 0; }
  .register-form-wrap { padding: 1rem; border-radius: var(--radius); }
  .cta-box { padding: 2.5rem 1.25rem; }
  .cta-box > div { flex-direction: column; align-items: center; }
  .cta-box .btn-primary, .cta-box .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 360px) {
  .container { padding: 0 .6rem; }
  .hero { padding: 1.5rem .75rem; }
  .hero-title { font-size: 1.6rem; }
  .nav-logo { font-size: 1.2rem; }
  .btn-nav-login { padding: .45rem .85rem; font-size: .78rem; }
  .modal-box { padding: 1.25rem 1rem; }
  .modal-overlay { padding: .75rem; }
  .footer { padding: 2.5rem .85rem 0; }
  .price-items-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   DASHBOARD POLISH — Additional Fixes
   ══════════════════════════════════════════ */

/* Hide logout text on very small screens, keep icon */
@media (max-width: 380px) {
  .btn-home-txt { display: none; }
  .btn-home { padding: .32rem .55rem; }
}

/* Sidebar border accent on desktop */
@media (min-width: 901px) {
  .dashboard-sidebar {
    border-right: 1px solid var(--border);
    box-shadow: 4px 0 20px rgba(0,0,0,.04);
  }
  .db-link.active {
    box-shadow: 0 2px 12px rgba(232,121,158,.18);
  }
}

/* Dark mode sidebar polish */
[data-theme="dark"] .dashboard-sidebar {
  background: var(--bg-card);
}
[data-theme="dark"] .db-logo {
  background: linear-gradient(135deg, var(--bg-card) 60%, rgba(232,121,158,.08));
}
[data-theme="dark"] .db-sidebar-avatar {
  background: linear-gradient(135deg, rgba(232,121,158,.12), rgba(196,168,232,.12));
}
[data-theme="dark"] .db-link.active {
  background: linear-gradient(135deg, rgba(232,121,158,.15), rgba(196,168,232,.12));
}
[data-theme="dark"] .admin-table th { background: var(--bg-card2); }
[data-theme="dark"] .admin-table tr:hover td {
  background: linear-gradient(90deg, rgba(232,121,158,.08) 0%, transparent 100%);
}

/* Dashboard content min-height fix */
.dashboard-content { min-height: calc(100vh - 54px); }
@media (min-width: 901px) { .dashboard-content { min-height: 100vh; } }

/* Sidebar smooth transition */
.dashboard-sidebar { will-change: transform; }

/* Photo slots responsive fix */
@media (max-width: 640px) {
  .photo-slots-grid { grid-template-columns: 1fr !important; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .photo-slots-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Better search bar in admin */
.search-wrap {
  display: flex; align-items: center; gap: .6rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 50px; padding: .48rem 1rem;
  flex: 1; min-width: 180px;
  transition: border-color .2s, box-shadow .2s;
}
.search-wrap:focus-within {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(232,121,158,.1);
}
.search-wrap input {
  border: none; background: transparent; flex: 1;
  color: var(--text); font-size: .85rem; outline: none;
  font-family: var(--font-body); min-width: 0;
}
.search-wrap i { color: var(--text-muted); font-size: .82rem; flex-shrink: 0; }

/* Action buttons in tables */
.admin-table .btn-sm {
  font-size: .7rem;
  padding: .22rem .5rem;
}

/* Nav label separator */
.db-nav-label {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .85rem .75rem .25rem;
  opacity: .7;
}

/* Overlay animation */
.db-overlay {
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.db-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Dashboard page wrapper fix */
#page-admin, #page-talent-dash {
  min-height: 100vh;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   BUGFIX v4.0 — Dashboard Mobile & PC Fixes
   ══════════════════════════════════════════ */

/* ── FIX 1: Dashboard page layout — pastikan flex row di desktop ── */
#page-admin.dashboard-page.active,
#page-talent-dash.dashboard-page.active {
  display: flex !important;
  flex-direction: row !important;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

/* ── FIX 2: Sidebar desktop — tidak boleh ikut scroll halaman ── */
@media (min-width: 901px) {
  #page-admin.dashboard-page.active,
  #page-talent-dash.dashboard-page.active {
    flex-direction: row !important;
    overflow: hidden;
  }

  #adminSidebar,
  #talentSidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 252px;
    min-width: 252px;
    flex-shrink: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: none !important;
    display: flex;
    flex-direction: column;
    z-index: 10;
  }

  /* db-main-wrap scroll container */
  #page-admin .db-main-wrap,
  #page-talent-dash .db-main-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100vh;
  }

  /* dashboard-content scrollable area */
  #page-admin .dashboard-content,
  #page-talent-dash .dashboard-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.75rem 2rem;
    min-height: 0;
  }

  /* Topbar tidak scroll */
  #page-admin .db-topbar,
  #page-talent-dash .db-topbar {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 50;
  }
}

/* ── FIX 3: Mobile dashboard — full column, sidebar drawer ── */
@media (max-width: 900px) {
  #page-admin.dashboard-page.active,
  #page-talent-dash.dashboard-page.active {
    flex-direction: column !important;
    height: 100dvh;
    overflow: hidden;
  }

  #page-admin .db-main-wrap,
  #page-talent-dash .db-main-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
  }

  #page-admin .db-topbar,
  #page-talent-dash .db-topbar {
    flex-shrink: 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 50;
  }

  #page-admin .dashboard-content,
  #page-talent-dash .dashboard-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    min-height: 0;
    width: 100%;
  }

  /* Sidebar drawer di mobile */
  #adminSidebar,
  #talentSidebar {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    width: 275px;
    max-width: 88vw;
    height: 100vh;
    z-index: 1100;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    transition: transform .32s cubic-bezier(0.4,0,0.2,1), box-shadow .32s ease;
  }

  #adminSidebar.open,
  #talentSidebar.open {
    transform: translateX(0);
    box-shadow: 10px 0 40px rgba(0,0,0,.28);
  }
}

/* ── FIX 4: Topbar di mobile — layout pas ── */
@media (max-width: 480px) {
  #page-admin .db-topbar,
  #page-talent-dash .db-topbar {
    padding: .5rem .75rem;
    min-height: 50px;
    gap: .5rem;
  }

  .db-topbar-title { font-size: .85rem; }
  .db-topbar-user { display: none; }

  #page-admin .dashboard-content,
  #page-talent-dash .dashboard-content {
    padding: .75rem;
  }
}

/* ── FIX 5: Admin stat cards — 2 kolom di mobile ── */
@media (max-width: 600px) {
  .dash-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .65rem;
  }
  .dash-stat-card { padding: .85rem; }
  .dsc-val { font-size: 1.2rem; }
  .dsc-icon { font-size: 1.2rem; }
  .dsc-label { font-size: .65rem; }
}

/* ── FIX 6: Admin 2-col grid di mobile ── */
@media (max-width: 600px) {
  .admin-2col-grid {
    grid-template-columns: 1fr !important;
    gap: .85rem;
  }
}

/* ── FIX 7: Table horizontal scroll di mobile — tahan overflow ── */
@media (max-width: 900px) {
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .admin-table {
    min-width: 460px;
    font-size: .75rem;
  }
  .admin-table th,
  .admin-table td {
    padding: .5rem .6rem;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .admin-table { min-width: 400px; font-size: .7rem; }
  .admin-table th,
  .admin-table td { padding: .4rem .5rem; }
}

/* ── FIX 8: Dash section heading wrap di mobile ── */
@media (max-width: 480px) {
  .dash-section h3 {
    font-size: .92rem;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }
  .dash-section h3 .btn-sm {
    font-size: .68rem;
    padding: .3rem .65rem;
  }
}

/* ── FIX 9: Photo slots grid fix ── */
@media (max-width: 480px) {
  .photo-slots-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 481px) and (max-width: 900px) {
  .photo-slots-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── FIX 10: Overlay z-index & pointer-events ── */
#adminOverlay,
#talentOverlay {
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.52);
  z-index: 1099;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: none;
  pointer-events: none;
  flex: none !important; /* jangan ikut flex layout */
}
#adminOverlay.open,
#talentOverlay.open {
  display: block;
  pointer-events: auto;
}

/* ── FIX 11: Hero section HP ── */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  .hero-title { font-size: clamp(1.75rem, 6.5vw, 2.2rem); }
  .hero-sub { font-size: .9rem; }
  .hero-stats { gap: .85rem; flex-wrap: wrap; }
  .hstat-num { font-size: 1.35rem; }
  .hstat-label { font-size: .68rem; }
}
@media (max-width: 480px) {
  .hero { padding: 1.75rem .85rem; }
  .hero-badge { font-size: .72rem; padding: .35rem .75rem; }
  .hero-actions { gap: .6rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { font-size: .85rem; padding: .7rem 1.25rem; }
}

/* ── FIX 12: Navbar HP — topbar tidak tertumpuk konten ── */
@media (max-width: 480px) {
  .nav-container { padding: 0 .85rem; }
  .btn-nav-login { padding: .45rem .85rem; font-size: .8rem; gap: .3rem; }
  .nav-logo { font-size: 1.25rem; }
}

/* ── FIX 13: Service grid HP ── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .service-card { padding: 1rem .65rem; }
  .sc-icon { font-size: 1.5rem; margin-bottom: .35rem; }
  .service-card h3 { font-size: .82rem; }
  .service-card p { font-size: .7rem; display: none; }
}
@media (max-width: 360px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── FIX 14: Footer HP — text tidak overflow ── */
@media (max-width: 480px) {
  .footer-contact p { font-size: .78rem; word-break: break-all; }
  .footer-bottom p { font-size: .75rem; }
  .disclaimer { font-size: .72rem; padding: .75rem; }
}

/* ── FIX 15: Modal HP ── */
@media (max-width: 480px) {
  .modal-overlay { padding: .65rem; align-items: flex-end; }
  .modal-box {
    padding: 1.5rem 1rem;
    border-radius: var(--radius) var(--radius) 0 0;
    max-height: 85vh;
    width: 100%;
    max-width: 100%;
  }
  .booking-modal { max-width: 100%; }
}

/* ── FIX 16: db-nav labels & links tidak terpotong ── */
.db-nav { overflow-y: auto; overflow-x: hidden; }
.db-link { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── FIX 17: Earnings/stats layout di talent dash ── */
@media (max-width: 600px) {
  .earn-grid,
  .talent-earn-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── FIX 18: Register form HP ── */
@media (max-width: 640px) {
  .step-indicator { gap: 0; }
  .step:not(.step-line) { width: 36px; height: 36px; font-size: .8rem; }
  .step:not(.step-line) span { font-size: .62rem; }
  .form-grid { grid-template-columns: 1fr; gap: .75rem; }
}

/* ── FIX 19: Pricelist HP ── */
@media (max-width: 480px) {
  .price-items-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .price-item-card { padding: .85rem .75rem; }
  .price-item-label { font-size: .8rem; }
  .price-item-price { font-size: 1.05rem; }
  .package-grid { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .price-items-grid { grid-template-columns: 1fr; }
}

/* ── FIX 20: Body overflow saat dashboard aktif ── */
body.dashboard-active {
  overflow: hidden;
}
body.dashboard-active #appContent {
  overflow: hidden;
}

/* ══════════════════════════════════════════
   INBOX SYSTEM
   ══════════════════════════════════════════ */
.db-inbox-badge {
  display: none;
  align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--pink-deep); color: #fff;
  border-radius: 50px; font-size: .68rem; font-weight: 700;
  margin-left: auto;
}
.inbox-list { display: flex; flex-direction: column; gap: .75rem; }
.inbox-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.15rem; cursor: pointer; transition: var(--trans); position: relative;
}
.inbox-item:hover { border-color: rgba(185,138,68,.35); box-shadow: var(--shadow-sm); }
.inbox-item.unread { border-left: 3px solid var(--pink-deep); background: var(--pink-light); }
.inbox-item-top { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .4rem; }
.inbox-item-top strong { font-size: .92rem; }
.inbox-tag { font-size: .7rem; padding: .15rem .55rem; background: var(--purple-light); color: var(--purple-deep); border-radius: 50px; font-weight: 600; }
.inbox-time { font-size: .72rem; color: var(--text-muted); margin-left: auto; }
.inbox-item-msg { font-size: .85rem; color: var(--text-sec); line-height: 1.6; margin-bottom: .5rem; }
.inbox-item-contact { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; }

