/* ============================================================
   PREMIER TALENT AGENCY — Main Stylesheet
   ============================================================ */
:root {
  --gold:    #c9a84c;
  --gold-lt: #e2c97e;
  --dark:    #0a0a0a;
  --dark2:   #141414;
  --dark3:   #1e1e1e;
  --card-bg: #181818;
  --text:    #ffffff;
  --muted:   #aaaaaa;
  --border:  #2a2a2a;
  --radius:  6px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Segoe UI', Arial, sans-serif; font-size: 16px; line-height: 1.6; min-height: 100vh; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- AGE GATE ---- */
#age-gate { position: fixed; inset: 0; z-index: 9999; background: #000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.age-gate-box { background: rgba(10,10,10,.98); border: 1px solid var(--gold); border-radius: 10px; max-width: 560px; width: 100%; padding: 50px 40px; text-align: center; }
.age-gate-box h2 { font-size: 1.1rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.age-gate-box p { color: var(--muted); font-size: .93rem; margin-bottom: 10px; }
.age-gate-box p.highlight { color: var(--gold); font-size: .9rem; margin-bottom: 28px; }
.age-gate-btns { display: flex; gap: 16px; justify-content: center; }
.btn-enter { background: var(--gold); color: #000; border: none; cursor: pointer; padding: 14px 44px; border-radius: var(--radius); font-size: 1rem; font-weight: 700; letter-spacing: 1px; transition: background .2s; }
.btn-enter:hover { background: var(--gold-lt); }
.btn-leave { background: transparent; color: var(--muted); border: 1px solid var(--border); cursor: pointer; padding: 14px 44px; border-radius: var(--radius); font-size: 1rem; font-weight: 600; transition: border-color .2s, color .2s; }
.btn-leave:hover { border-color: #555; color: #fff; }

/* ---- NAVBAR ---- */
#navbar { position: sticky; top: 0; z-index: 1000; background: rgba(10,10,10,.97); border-bottom: 1px solid var(--border); padding: 0 24px; }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-links a { color: #ddd; font-size: .85rem; font-weight: 500; letter-spacing: .5px; padding: 6px 10px; border-radius: var(--radius); transition: color .2s, background .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(201,168,76,.08); }
.nav-socials { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-socials a { color: var(--muted); font-size: 1.15rem; transition: color .2s; display: flex; align-items: center; }
.nav-socials a:hover { color: var(--gold); }
.nav-socials svg { width: 20px; height: 20px; fill: currentColor; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.mobile-nav { display: none; flex-direction: column; background: var(--dark2); border-top: 1px solid var(--border); padding: 12px 24px 20px; }
.mobile-nav a { color: #ddd; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .95rem; font-weight: 500; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-socials { display: flex; gap: 18px; padding-top: 16px; }
.mobile-socials a { color: var(--muted); }
.mobile-socials svg { width: 22px; height: 22px; fill: currentColor; }

/* ---- HERO ---- */
.hero { background: linear-gradient(180deg, #000 0%, var(--dark2) 100%); padding: 60px 24px 40px; text-align: center; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-shadow: 0 0 40px rgba(201,168,76,.3); margin-bottom: 12px; }
.hero-sub { font-size: clamp(.9rem, 2vw, 1.1rem); color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 48px; }
.hero-models { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto 40px; }
.hero-model-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; box-shadow: 0 8px 30px rgba(0,0,0,.6); transition: transform .3s; }
.hero-model-card:hover { transform: translateY(-6px); }
.hero-model-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hero-model-card:hover img { transform: scale(1.05); }
.hero-model-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); padding: 40px 14px 14px; }
.hero-model-name { font-size: 1rem; font-weight: 700; color: #fff; }
.hero-cta { margin-top: 8px; }

/* ---- BUTTONS ---- */
.btn-primary { display: inline-block; background: var(--gold); color: #000; padding: 14px 48px; border-radius: var(--radius); font-size: 1rem; font-weight: 700; letter-spacing: 1px; border: none; cursor: pointer; transition: background .2s, transform .1s; }
.btn-primary:hover { background: var(--gold-lt); color: #000; transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: var(--gold); border: 2px solid var(--gold); padding: 12px 36px; border-radius: var(--radius); font-size: .95rem; font-weight: 700; letter-spacing: 1px; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--gold); color: #000; }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(180deg,#000 0%,#141414 100%); padding: 60px 24px 40px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }
.page-hero p { color: var(--muted); margin-top: 14px; font-size: 1rem; }
.gold-line { width: 60px; height: 3px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }

/* ---- SECTION ---- */
.section { padding: 64px 24px; }
.section-dark { background: var(--dark2); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-header p { color: var(--muted); font-size: .95rem; max-width: 520px; margin: 0 auto; }

/* ---- FILTER BAR ---- */
.filter-bar { display: flex; gap: 8px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; align-items: center; }
.filter-btn { background: var(--dark3); color: var(--muted); border: 1px solid var(--border); padding: 7px 18px; border-radius: 30px; font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .2s; white-space: nowrap; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.filter-sep { color: var(--border); font-size: 1.2rem; padding: 0 4px; }

/* ---- MODELS GRID ---- */
.models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1400px; margin: 0 auto; }
.model-card { background: var(--card-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.4); transition: transform .3s, box-shadow .3s; }
.model-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(201,168,76,.15); }
.model-card-photo { aspect-ratio: 3/4; overflow: hidden; }
.model-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.model-card:hover .model-card-photo img { transform: scale(1.06); }
.model-card-info { padding: 16px 14px 18px; }
.model-card-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.model-card-phone { font-size: 1.3rem; font-weight: 800; color: var(--gold); letter-spacing: 1px; margin-bottom: 4px; }
.model-card-email { font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.model-card-email a { color: var(--muted); }
.model-card-email a:hover { color: var(--gold); }
.model-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.model-tag { font-size: .65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; background: rgba(201,168,76,.1); color: var(--gold); border: 1px solid rgba(201,168,76,.2); }
.gender-badge { display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; margin-bottom: 8px; }
.badge-female { background: rgba(201,168,76,.15); color: var(--gold); }
.badge-male   { background: rgba(100,160,255,.12); color: #7aaeff; }
.gender-divider { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; padding: 10px 0 4px; }
.gender-divider span { font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); white-space: nowrap; font-weight: 700; }
.gender-divider::before, .gender-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ---- BOOK / FORMS ---- */
.book-layout { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.book-info h3 { font-size: 1.3rem; color: var(--gold); margin-bottom: 14px; }
.book-info p { color: var(--muted); margin-bottom: 12px; font-size: .95rem; }
.book-contact-phone { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.book-form, .contact-form-wrap { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { background: var(--dark2); border: 1px solid var(--border); color: #fff; padding: 12px 14px; border-radius: var(--radius); font-size: .95rem; font-family: inherit; outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { background: rgba(201,168,76,.1); border: 1px solid var(--gold); color: var(--gold); padding: 14px; border-radius: var(--radius); text-align: center; display: none; }

/* ---- ABOUT ---- */
.about-layout { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 10px; overflow: hidden; aspect-ratio: 3/4; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: 2rem; color: var(--gold); font-weight: 900; margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 14px; line-height: 1.8; }
.about-stats { display: flex; gap: 32px; margin-top: 28px; }
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ---- OFFICES ---- */
.offices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.office-card { background: var(--card-bg); border-radius: 10px; padding: 28px 24px; border: 1px solid var(--border); transition: border-color .3s; }
.office-card:hover { border-color: var(--gold); }
.office-city { font-size: 1.2rem; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.office-state { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.office-address { color: #ccc; font-size: .9rem; line-height: 1.6; margin-bottom: 14px; }
.office-phone { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.office-email { font-size: .85rem; color: var(--muted); }

/* ---- BECOME MODEL ---- */
.become-layout { max-width: 760px; margin: 0 auto; }
.become-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.become-step { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: #000; font-size: 1.4rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: .85rem; color: var(--muted); }
.requirements { background: var(--card-bg); border-radius: 10px; padding: 28px; margin-bottom: 32px; border: 1px solid var(--border); }
.requirements h3 { color: var(--gold); margin-bottom: 14px; font-size: 1.1rem; }
.requirements li { color: var(--muted); font-size: .9rem; padding: 5px 0 5px 16px; position: relative; }
.requirements li::before { content: '✓'; color: var(--gold); position: absolute; left: 0; }

/* ---- FOOTER ---- */
footer { background: #000; border-top: 1px solid var(--border); padding: 48px 24px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; max-width: 280px; margin-top: 10px; }
.footer-socials { display: flex; gap: 14px; margin-top: 18px; }
.footer-socials a { color: var(--muted); transition: color .2s; }
.footer-socials a:hover { color: var(--gold); }
.footer-socials svg { width: 22px; height: 22px; fill: currentColor; }
.footer-col h4 { color: var(--gold); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: var(--muted); font-size: .8rem; }

/* ---- LOADER ---- */
.loading { text-align: center; padding: 60px; color: var(--muted); }
.spinner { width: 40px; height: 40px; margin: 0 auto 16px; border: 3px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) { .models-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .hero-models { grid-template-columns: repeat(2, 1fr); } .about-layout { grid-template-columns: 1fr; } .about-img { aspect-ratio: 16/9; } .book-layout { grid-template-columns: 1fr; } .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .nav-links { display: none; } .nav-socials { display: none; } .hamburger { display: flex; } .models-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .hero-models { grid-template-columns: repeat(2, 1fr); gap: 10px; } .become-steps { grid-template-columns: 1fr; } .footer-inner { grid-template-columns: 1fr; } .age-gate-box { padding: 36px 24px; } }
@media (max-width: 480px) { .hero-title { font-size: 1.9rem; } .models-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .model-card-phone { font-size: 1.05rem; } .age-gate-btns { flex-direction: column; } }

/* ============================================================
   DAY / LIGHT MODE  (toggled by admin — applies site-wide)
   ============================================================ */
body.day-mode {
  --dark:    #ffffff;
  --dark2:   #f5f5f5;
  --dark3:   #ebebeb;
  --card-bg: #ffffff;
  --text:    #111111;
  --muted:   #555555;
  --border:  #e0e0e0;
}

/* Base */
body.day-mode                             { background: #f5f5f5; color: #111; }

/* Age gate */
body.day-mode #age-gate                   { background: #f0f0f0; }
body.day-mode .age-gate-box               { background: #fff; border-color: var(--gold); box-shadow: 0 8px 40px rgba(0,0,0,.1); }
body.day-mode .age-gate-box p             { color: #555; }
body.day-mode .age-gate-box p.highlight   { color: var(--gold); }
body.day-mode .btn-leave                  { color: #555; border-color: #ccc; }
body.day-mode .btn-leave:hover            { color: #111; border-color: #888; }

/* Navbar */
body.day-mode #navbar                     { background: rgba(255,255,255,.97); border-bottom-color: #e0e0e0; }
body.day-mode .nav-links a                { color: #333; }
body.day-mode .nav-links a:hover,
body.day-mode .nav-links a.active         { color: var(--gold); background: rgba(201,168,76,.08); }
body.day-mode .nav-logo-text              { color: var(--gold); }
body.day-mode .nav-socials a              { color: #888; }
body.day-mode .hamburger span             { background: #333; }
body.day-mode .mobile-nav                 { background: #fff; border-top-color: #e0e0e0; }
body.day-mode .mobile-nav a               { color: #333; border-bottom-color: #eee; }
body.day-mode .mobile-nav a:hover         { color: var(--gold); }

/* Hero */
body.day-mode .hero                       { background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 100%); }
body.day-mode .hero-sub                   { color: #777; }
body.day-mode .hero-model-name            { color: #fff; }
body.day-mode .btn-outline                { color: var(--gold); border-color: var(--gold); }
body.day-mode .btn-outline:hover          { background: var(--gold); color: #fff; }

/* Page hero */
body.day-mode .page-hero                  { background: linear-gradient(180deg, #eeeeee 0%, #e4e4e4 100%); }
body.day-mode .page-hero p                { color: #666; }

/* Sections */
body.day-mode .section-dark               { background: #eeeeee; }
body.day-mode .section-header h2          { color: var(--gold); }
body.day-mode .section-header p           { color: #666; }

/* Filter bar */
body.day-mode .filter-btn                 { background: #fff; color: #555; border-color: #ddd; }
body.day-mode .filter-btn.active,
body.day-mode .filter-btn:hover           { background: var(--gold); color: #000; border-color: var(--gold); }
body.day-mode .filter-sep                 { color: #ccc; }

/* Model cards */
body.day-mode .model-card                 { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
body.day-mode .model-card:hover           { box-shadow: 0 8px 32px rgba(201,168,76,.18); }
body.day-mode .model-card-name            { color: #111; }
body.day-mode .model-card-phone           { color: var(--gold); }
body.day-mode .model-card-email a         { color: #666; }
body.day-mode .model-card-email a:hover   { color: var(--gold); }
body.day-mode .gender-divider span        { color: var(--gold); }
body.day-mode .gender-divider::before,
body.day-mode .gender-divider::after      { background: #ddd; }

/* Office cards */
body.day-mode .office-card                { background: #fff; border-color: #e0e0e0; }
body.day-mode .office-card:hover          { border-color: var(--gold); }
body.day-mode .office-state               { color: #999; }
body.day-mode .office-address             { color: #444; }
body.day-mode .office-phone               { color: #111; }
body.day-mode .office-email               { color: #666; }

/* About */
body.day-mode .about-text h2              { color: var(--gold); }
body.day-mode .about-text p               { color: #555; }
body.day-mode .stat-num                   { color: var(--gold); }
body.day-mode .stat-label                 { color: #777; }

/* Book / Forms */
body.day-mode .book-info h3               { color: var(--gold); }
body.day-mode .book-info p                { color: #555; }
body.day-mode .form-group label           { color: #666; }
body.day-mode .form-group input,
body.day-mode .form-group textarea,
body.day-mode .form-group select          { background: #f8f8f8; border-color: #ddd; color: #111; }
body.day-mode .form-group input::placeholder,
body.day-mode .form-group textarea::placeholder { color: #aaa; }
body.day-mode .form-success               { background: rgba(201,168,76,.08); }

/* Become a model */
body.day-mode .step-title                 { color: #111; }
body.day-mode .step-desc                  { color: #666; }
body.day-mode .requirements               { background: #fff; border-color: #e0e0e0; }
body.day-mode .requirements h3            { color: var(--gold); }
body.day-mode .requirements li            { color: #555; }

/* Footer */
body.day-mode footer                      { background: #e8e8e8; border-top-color: #d8d8d8; }
body.day-mode .footer-brand p             { color: #555; }
body.day-mode .footer-brand .nav-logo-text { color: var(--gold); }
body.day-mode .footer-col h4              { color: var(--gold); }
body.day-mode .footer-col ul li a         { color: #555; }
body.day-mode .footer-col ul li a:hover   { color: var(--gold); }
body.day-mode .footer-socials a           { color: #888; }
body.day-mode .footer-bottom p            { color: #777; }
body.day-mode .footer-bottom              { border-top-color: #d8d8d8; }

/* Headings / inline text */
body.day-mode h1, body.day-mode h2,
body.day-mode h3, body.day-mode h4       { color: #111; }
body.day-mode p                           { color: #444; }

/* Loading */
body.day-mode .loading                    { color: #888; }
body.day-mode .spinner                    { border-color: #ddd; border-top-color: var(--gold); }

/* ============================================================
   ENHANCEMENTS — v4.1
   ============================================================ */

/* ---- NAVBAR SCROLLED ---- */
#navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.65); }

/* ---- HAMBURGER → X ANIMATION ---- */
.hamburger span { transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ---- FILTER COUNT BADGE ---- */
.filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.18); color: var(--gold);
  font-size: .65rem; font-weight: 700; min-width: 18px; height: 16px;
  border-radius: 10px; padding: 0 5px; margin-left: 5px;
  transition: background .2s, color .2s;
}
.filter-btn.active .filter-count,
.filter-btn:hover .filter-count { background: rgba(0,0,0,.18); color: #000; }

/* ---- PHONE LINKS IN CARDS ---- */
.model-card-phone a { color: var(--gold); font-weight: 800; }
.model-card-phone a:hover { color: var(--gold-lt); }

/* ---- IMAGE ERROR PLACEHOLDER ---- */
.img-error-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--dark3); color: var(--muted); font-size: .75rem; letter-spacing: 1px;
  text-transform: uppercase; aspect-ratio: 3/4;
}

/* ---- DAY MODE: new elements ---- */
body.day-mode .search-input { background: #f0f0f0; border-color: #ddd; color: #111; }
body.day-mode .search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
body.day-mode .model-card-book { color: var(--gold); border-color: var(--gold); }
body.day-mode .model-card-book:hover { background: var(--gold); color: #000; }
body.day-mode .model-card-phone a { color: var(--gold); }
body.day-mode #back-to-top { box-shadow: 0 4px 20px rgba(0,0,0,.2); }
body.day-mode #navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }
body.day-mode .img-error-placeholder { background: #e8e8e8; color: #aaa; }
body.day-mode .filter-count { background: rgba(201,168,76,.15); color: var(--gold); }

/* ---- STATS BAR ---- */
/* (canonical definition in ADDITIONS block below; responsive breakpoint here) */
@media (max-width: 640px) {
  .stat-item { flex-basis: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
body.day-mode .stats-bar { background: #f5f5f5; }
body.day-mode .stat-lbl { color: #666; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 32px; position: relative;
}
.testimonial-quote {
  font-size: 1.05rem; line-height: 1.75; color: #ccc; font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.testimonial-name { color: var(--gold); font-weight: 700; font-size: .9rem; letter-spacing: .5px; }
.testimonial-role { color: var(--muted); font-size: .85rem; }

body.day-mode .testimonial-card { background: #f5f5f5; border-color: #e0e0e0; }
body.day-mode .testimonial-quote { color: #444; }

/* ---- CONTACT PAGE ---- */
@media(max-width:700px){.contact-grid{grid-template-columns:1fr!important;}}

/* ---- BECOME A MODEL PAGE ---- */
@media(max-width:600px){.twoCol,.threeCol{grid-template-columns:1fr!important;}}

/* ---- MODEL PROFILE PAGE ---- */
.model-card-photo-link { display: block; }
.model-card-photo-link:hover .model-card-photo img { transform: scale(1.06); }

/* ======================================================
   V4 NEW FEATURES — APPENDED STYLES
   ====================================================== */

/* ---- FAVORITES / HEART ---- */
.fav-btn {
  position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.6);
  border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .2s, transform .15s; z-index: 2;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.fav-btn:hover { background: rgba(0,0,0,.85); transform: scale(1.1); }
.fav-btn.active { color: #e05252; }
.fav-btn:not(.active) { color: #888; }
#fav-panel {
  position: fixed; bottom: 80px; right: 20px; background: #1a1a1a;
  border: 1px solid #333; border-radius: 12px; padding: 16px 20px;
  z-index: 1000; max-width: 280px; display: none; box-shadow: 0 8px 32px rgba(0,0,0,.6);
}
#fav-panel.open { display: block; }
#fav-toggle-btn {
  position: fixed; bottom: 20px; right: 20px; background: var(--gold);
  color: #000; border: none; border-radius: 50%; width: 52px; height: 52px;
  font-size: 1.3rem; cursor: pointer; z-index: 1001;
  box-shadow: 0 4px 16px rgba(201,168,76,.4); display: none;
}
#fav-badge {
  position: absolute; top: -6px; right: -6px; background: #e05252;
  color: #fff; font-size: .65rem; font-weight: 700; border-radius: 50%;
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
}

/* ---- MODEL COMPARISON ---- */
#compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; background: #111;
  border-top: 2px solid var(--gold); padding: 12px 20px;
  display: none; align-items: center; gap: 12px; z-index: 900; flex-wrap: wrap;
}
#compare-bar.visible { display: flex; }
.compare-chk-wrap { position: absolute; top: 10px; left: 10px; z-index: 2; }
.compare-chk-wrap input[type=checkbox] {
  width: 18px; height: 18px; cursor: pointer; accent-color: var(--gold);
  background: rgba(0,0,0,.7); border-radius: 4px;
}
#compare-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.96); z-index: 9000;
  overflow-y: auto; display: none; padding: 40px 20px;
}
#compare-overlay.open { display: block; }
.compare-grid { display: grid; gap: 24px; max-width: 1200px; margin: 0 auto; }
.compare-col { background: #181818; border: 1px solid #2a2a2a; border-radius: 12px; padding: 24px; }
.compare-col img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
.compare-stat { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: .88rem; }
.compare-stat:last-child { border-bottom: none; }
.compare-stat-label { color: #666; }
.compare-stat-val { color: #ccc; font-weight: 600; }

/* ---- AVAILABILITY STATUS BADGE ---- */
.avail-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.avail-available  { background: #1a3a28; color: #52c07a; border: 1px solid #2a4a38; }
.avail-limited    { background: #3a2e10; color: #c9a84c; border: 1px solid #4a3e20; }
.avail-unavailable{ background: #3a1a1a; color: #e05252; border: 1px solid #4a2a2a; }
.avail-btn {
  background: #1a1a1a; border: 1px solid #333; color: #aaa; padding: 9px 18px;
  border-radius: 8px; cursor: pointer; font-size: .88rem; transition: all .2s;
}
.avail-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ---- DARK MODE AUTO INDICATOR ---- */
.dark-mode-bar {
  position: fixed; bottom: 0; left: 0; right: 0; background: #1a1a1a;
  padding: 12px 20px; text-align: center; z-index: 500; font-size: .85rem;
  color: #888; border-top: 1px solid #2a2a2a; display: none;
}

/* ---- CASTING CARDS ---- */
.casting-card {
  background: #181818; border: 1px solid #2a2a2a; border-radius: 12px; padding: 28px 32px;
  border-left: 4px solid var(--gold);
}
.casting-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.casting-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0; }
.casting-deadline { font-size: .8rem; color: var(--gold); background: rgba(201,168,76,.1); padding: 4px 12px; border-radius: 20px; white-space: nowrap; }
.casting-meta { font-size: .85rem; color: #888; margin-bottom: 8px; }
.casting-desc { color: #aaa; line-height: 1.6; margin: 12px 0; }
.casting-req { background: #111; border-radius: 8px; padding: 14px 18px; margin-top: 12px; }

/* ---- BLOG GRID ---- */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}
.blog-card {
  display: flex; flex-direction: column; background: #181818;
  border: 1px solid #2a2a2a; border-radius: 12px; overflow: hidden;
  text-decoration: none; transition: transform .2s, border-color .2s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.blog-card-img {
  height: 200px; background: #222 center/cover no-repeat;
}
.blog-card-img-placeholder { background: linear-gradient(135deg,#1a1a1a,#2a2020); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .75rem; color: #666; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-title { font-size: 1.05rem; color: #fff; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-excerpt { font-size: .88rem; color: #888; line-height: 1.6; flex: 1; }
.blog-read-more { color: var(--gold); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 16px; }

/* ---- POST BODY ---- */
.post-body { color: #ccc; line-height: 1.8; font-size: 1rem; }
.post-body h2 { color: var(--gold); margin: 28px 0 12px; }
.post-body h3 { color: #fff; margin: 20px 0 10px; }
.post-body a { color: var(--gold); }
.post-body img { max-width: 100%; border-radius: 8px; margin: 16px 0; }

/* ---- GALLERY ---- */
.gallery-campaign { }
.gallery-campaign-header { margin-bottom: 12px; }
.gallery-campaign-title { font-size: 1.4rem; color: #fff; margin-bottom: 4px; }
.gallery-campaign-meta { color: #666; font-size: .85rem; }
.gallery-campaign-desc { color: #888; line-height: 1.6; margin-bottom: 20px; }
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.gallery-thumb {
  height: 200px; background: #222 center/cover no-repeat;
  border-radius: 8px; cursor: pointer; transition: transform .2s, opacity .2s;
}
.gallery-thumb:hover { transform: scale(1.02); opacity: .9; }

/* ---- MONTHLY REPORT / EXPORT ---- */
.report-card { background: #181818; border: 1px solid #2a2a2a; border-radius: 10px; padding: 22px; margin-bottom: 16px; }

/* ---- NEWSLETTER ADMIN TABLE ---- */
.nl-count { font-size: 2rem; font-weight: 700; color: var(--gold); }

/* ---- DARK MODE (prefers-color-scheme) ---- */
@media (prefers-color-scheme: light) {
  body.auto-dark-mode {
    --dark:  #ffffff; --dark2: #f5f5f5; --border: #e0e0e0;
    --text:  #111111; --muted: #666666;
    background: #fff; color: #111;
  }
  body.auto-dark-mode nav#navbar { background: rgba(255,255,255,.95); border-color: #e0e0e0; }
  body.auto-dark-mode .model-card { background: #f5f5f5; border-color: #e0e0e0; }
  body.auto-dark-mode .casting-card,
  body.auto-dark-mode .blog-card { background: #f5f5f5; border-color: #e0e0e0; }
}

/* ---- GEO OFFICE HIGHLIGHT ---- */
.office-card-nearest { border-color: var(--gold) !important; position: relative; }
.office-card-nearest::before {
  content: "Nearest to you"; position: absolute; top: -10px; left: 16px;
  background: var(--gold); color: #000; font-size: .65rem; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px;
}

/* ---- CUSTOM QUOTE FORM ---- */
.quote-section { background: #111; border: 1px solid #2a2a2a; border-radius: 12px; padding: 32px; margin-top: 32px; }

/* ---- DEPOSIT INFO ---- */
.deposit-banner {
  background: linear-gradient(135deg, #1a1500, #2a2000);
  border: 1px solid var(--gold); border-radius: 10px; padding: 20px 24px;
  margin-bottom: 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.deposit-banner-icon { font-size: 1.5rem; }
.deposit-banner-text { flex: 1; }
.deposit-banner-text h4 { color: var(--gold); margin: 0 0 4px; font-size: 1rem; }
.deposit-banner-text p { color: #aaa; margin: 0; font-size: .88rem; }

/* ============================================================
   ADDITIONS — classes used in JS but missing from original CSS
   ============================================================ */

/* ---- COOKIE NOTICE BANNER ---- */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(18,18,18,.97); border-top: 1px solid #2a2a2a;
  padding: 14px 20px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
body.day-mode .cookie-notice { background: rgba(255,255,255,.97); }
body.day-mode .cookie-notice-text { color: #555; }
.cookie-notice-text { color: #aaa; font-size: .85rem; line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-notice-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.cookie-notice-btn {
  background: var(--gold); color: #000; border: none;
  padding: 9px 20px; border-radius: 6px; font-weight: 700;
  font-size: .85rem; cursor: pointer; transition: opacity .2s;
}
.cookie-notice-btn:hover { opacity: .85; }
.cookie-notice-decline {
  background: none; border: 1px solid #444; color: #888;
  padding: 8px 16px; border-radius: 6px; font-size: .82rem;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.cookie-notice-decline:hover { border-color: #888; color: #ccc; }

/* ---- BACK TO TOP BUTTON ---- */
#back-to-top {
  position: fixed; bottom: 32px; right: 24px; z-index: 900;
  background: var(--gold); color: #000; border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.5rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { opacity: .85; }

/* ---- SEARCH INPUT (models page) ---- */
.search-wrap { width: 100%; margin: 0 auto 28px; }
.search-input {
  width: 100%; padding: 13px 18px; background: #181818;
  border: 1px solid #2a2a2a; border-radius: 8px; color: #fff;
  font-size: .95rem; outline: none; transition: border-color .2s;
  box-sizing: border-box;
}
.search-input::placeholder { color: #555; }
.search-input:focus { border-color: var(--gold); }

/* ---- STATS BAR (homepage) ---- */
.stats-bar {
  background: #111; border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e; padding: 28px 20px;
}
.stats-bar-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 32px 48px;
}
.stat-item { text-align: center; }
.stat-val { font-size: 1.9rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: .75rem; color: #666; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- MODEL CARD BOOK BUTTON ---- */
.model-card-book {
  display: inline-block; margin-top: 12px; padding: 8px 18px;
  background: var(--gold); color: #000; font-weight: 700;
  font-size: .8rem; border-radius: 6px; text-decoration: none;
  text-transform: uppercase; letter-spacing: .5px;
  transition: opacity .2s;
}
.model-card-book:hover { opacity: .82; }

/* ---- BOOKING CALENDAR (public) ---- */
.iim-cal { background: #111; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; user-select: none; }
.iim-cal-nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: #0a0a0a; border-bottom: 1px solid var(--border); }
.iim-cal-nav button { background: none; border: none; color: var(--gold); font-size: 1.4rem; cursor: pointer; padding: 0 8px; line-height: 1; transition: color .2s; }
.iim-cal-nav button:hover { color: var(--gold-lt); }
.iim-cal-nav span { color: #fff; font-size: .88rem; font-weight: 600; letter-spacing: 1px; }
.iim-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 8px; gap: 2px; }
.iim-cal-dow { text-align: center; font-size: .68rem; color: #555; padding: 6px 0 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.iim-cal-day { text-align: center; padding: 9px 4px; font-size: .85rem; cursor: pointer; border-radius: 50%; transition: background .15s, color .15s; }
.iim-cal-day:hover:not(.day-disabled):not(.day-blocked):not(.day-empty) { background: rgba(201,168,76,.18); color: var(--gold); }
.iim-cal-day.day-empty { cursor: default; }
.iim-cal-day.day-disabled { color: #2d2d2d; cursor: default; }
.iim-cal-day.day-blocked { color: #8b2020; background: rgba(224,82,82,.06); cursor: not-allowed; text-decoration: line-through; }
.iim-cal-day.day-selected { background: var(--gold); color: #000; font-weight: 700; }
.iim-cal-day.day-today:not(.day-selected):not(.day-disabled) { outline: 1px solid rgba(201,168,76,.4); }
@media (max-width: 400px) { .iim-cal-day { padding: 7px 2px; font-size: .78rem; } }

/* ============================================================
   ENHANCEMENTS v5 — Additive only, zero breaking changes
   ============================================================ */

/* ---- SKELETON LOADING ---- */
.skeleton-card {
  background: var(--card-bg); border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.skeleton-photo {
  aspect-ratio: 3/4; background: linear-gradient(90deg,
    var(--dark3) 0%, #2a2a2a 50%, var(--dark3) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
.skeleton-info { padding: 16px 14px 18px; display: flex; flex-direction: column; gap: 9px; }
.skeleton-line {
  height: 12px; border-radius: 6px;
  background: linear-gradient(90deg, var(--dark3) 0%, #2a2a2a 50%, var(--dark3) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
.skeleton-line.short { width: 55%; }
.skeleton-line.medium { width: 75%; }
.skeleton-line.full { width: 100%; }
.skeleton-line.btn { height: 32px; border-radius: var(--radius); margin-top: 4px; }
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- TOAST NOTIFICATIONS ---- */
#iim-toast-root {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 99999; display: flex; flex-direction: column; align-items: center;
  gap: 10px; pointer-events: none; width: max-content; max-width: 92vw;
}
.iim-toast {
  background: var(--dark2); border: 1px solid var(--border);
  color: #fff; padding: 13px 22px; border-radius: 10px;
  font-size: .9rem; font-weight: 500; letter-spacing: .2px;
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  opacity: 0; transform: translateY(14px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: auto; display: flex; align-items: center; gap: 10px;
  min-width: 220px; max-width: 460px; text-align: left;
}
.iim-toast.show { opacity: 1; transform: translateY(0); }
.iim-toast.success { border-left: 4px solid #52c07a; }
.iim-toast.error   { border-left: 4px solid #e05252; }
.iim-toast.info    { border-left: 4px solid var(--gold); }
.iim-toast-icon { font-size: 1.1rem; flex-shrink: 0; }
.iim-toast-close {
  margin-left: auto; background: none; border: none; color: var(--muted);
  font-size: 1.1rem; cursor: pointer; padding: 0 0 0 10px; line-height: 1;
  flex-shrink: 0; transition: color .2s;
}
.iim-toast-close:hover { color: #fff; }

/* ---- IMAGE FADE-IN ON LOAD ---- */
.iim-img-fade { opacity: 0; transition: opacity .38s ease; }
.iim-img-fade.loaded { opacity: 1; }

/* ---- WHATSAPP BUTTON ON CARD ---- */
.model-card-wa {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  text-align: center; margin-top: 8px;
  background: transparent; border: 1px solid #25d366; color: #25d366;
  padding: 8px; border-radius: var(--radius); font-size: .75rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}
.model-card-wa:hover { background: #25d366; color: #000; transform: none; }
.model-card-wa svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
body.day-mode .model-card-wa { color: #128c7e; border-color: #128c7e; }
body.day-mode .model-card-wa:hover { background: #128c7e; color: #fff; }

/* ---- INLINE FORM VALIDATION ---- */
.form-group input.field-ok,
.form-group textarea.field-ok,
.form-group select.field-ok {
  border-color: #52c07a;
}
.form-group input.field-err,
.form-group textarea.field-err,
.form-group select.field-err {
  border-color: #e05252;
}
.field-hint {
  font-size: .76rem; margin-top: 3px;
  transition: color .2s;
}
.field-hint.hint-ok  { color: #52c07a; }
.field-hint.hint-err { color: #e05252; }
body.day-mode .field-hint.hint-ok  { color: #1a7a40; }
body.day-mode .field-hint.hint-err { color: #b02020; }

/* ---- SOCIAL SHARE BAR (model profile) ---- */
.profile-share {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.profile-share-label {
  font-size: .72rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600; flex-shrink: 0;
}
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 7px 14px; border-radius: 30px; font-size: .74rem;
  font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--muted);
  text-decoration: none; cursor: pointer; background: none;
  transition: border-color .2s, color .2s, background .2s;
}
.share-btn svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.share-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.07); }
.share-btn.copy-ok { border-color: #52c07a; color: #52c07a; }
body.day-mode .share-btn { color: #666; border-color: #ccc; }
body.day-mode .share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ---- COPY-TO-CLIPBOARD TOOLTIP ---- */
.copy-tip {
  font-size: .7rem; color: #52c07a; letter-spacing: .3px;
  opacity: 0; transition: opacity .2s; user-select: none; pointer-events: none;
}
.copy-tip.show { opacity: 1; }

/* ---- SEARCH RESULT COUNT ANIMATION ---- */
#iim-model-count, #hp-count { transition: opacity .2s; }

/* ---- DEBOUNCE / PERFORMANCE: visual search feedback ---- */
.search-input.searching {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.10);
}

/* ---- RESPONSIVE ADJUSTMENTS (no override, only additions) ---- */
@media (max-width: 480px) {
  #iim-toast-root { bottom: 70px; }
  .model-card-wa  { font-size: .7rem; }
}

  /* ============================================================
     NEW FEATURES v6 — Quick-View, Cart, Share, Estimator, etc.
     ============================================================ */

  /* ── Quick-View Modal ── */
  .qv-overlay { display:none; position:fixed; inset:0; z-index:10000; background:rgba(0,0,0,.85); align-items:center; justify-content:center; padding:16px; }
  .qv-overlay.open { display:flex; }
  .qv-modal { background:var(--dark2); border:1px solid var(--border); border-radius:12px; padding:28px 24px; max-width:480px; width:100%; position:relative; max-height:90vh; overflow-y:auto; }
  .qv-close { position:absolute; top:12px; right:14px; background:none; border:none; color:#888; font-size:1.5rem; cursor:pointer; line-height:1; }
  .qv-close:hover { color:#fff; }
  .qv-photo { width:80px; height:107px; object-fit:cover; border-radius:6px; float:right; margin:0 0 12px 16px; }
  .qv-name { font-size:1.15rem; font-weight:900; color:#fff; letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; }
  .qv-badge { margin-bottom:12px; }
  .qv-stats { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin:14px 0; clear:both; }
  .qv-stat { background:var(--dark); border:1px solid var(--border); border-radius:6px; padding:8px 10px; }
  .qv-stat-label { font-size:.65rem; letter-spacing:1.2px; text-transform:uppercase; color:var(--muted); margin-bottom:2px; }
  .qv-stat-value { font-size:.88rem; font-weight:700; color:#fff; }
  .qv-actions { display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
  .qv-actions a, .qv-actions button { flex:1; min-width:120px; text-align:center; padding:10px; font-size:.78rem; }
  body.day-mode .qv-modal { background:#fff; border-color:#e0e0e0; }
  body.day-mode .qv-stat { background:#f4f4f4; border-color:#ddd; }
  body.day-mode .qv-stat-value { color:#111; }
  body.day-mode .qv-name { color:#111; }

  /* ── Quick-View card button ── */
  .model-card-quickview { display:block; text-align:center; margin-top:6px; background:transparent; border:1px solid #333; color:#888; padding:7px; border-radius:var(--radius); font-size:.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; cursor:pointer; transition:background .2s, color .2s; width:100%; }
  .model-card-quickview:hover { border-color:var(--gold); color:var(--gold); }
  body.day-mode .model-card-quickview { border-color:#ccc; color:#777; }
  body.day-mode .model-card-quickview:hover { border-color:var(--gold); color:var(--gold); }

  /* ── Booking Cart ── */
  .model-card-cart { display:block; text-align:center; margin-top:6px; background:transparent; border:1px solid #333; color:#888; padding:7px; border-radius:var(--radius); font-size:.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; cursor:pointer; transition:background .2s, color .2s; width:100%; }
  .model-card-cart:hover { border-color:var(--gold); color:var(--gold); }
  .model-card-cart.in-cart { background:rgba(201,168,76,.1); border-color:var(--gold); color:var(--gold); }
  .iim-cart-fab { position:fixed; bottom:80px; right:20px; z-index:9000; background:var(--gold); color:#000; border:none; border-radius:50px; padding:12px 20px; font-size:.82rem; font-weight:800; letter-spacing:1px; cursor:pointer; box-shadow:0 4px 20px rgba(0,0,0,.4); display:none; align-items:center; gap:8px; transition:transform .2s; }
  .iim-cart-fab:hover { transform:translateY(-2px); }
  .iim-cart-fab.visible { display:flex; }
  .iim-cart-badge { background:#000; color:var(--gold); border-radius:50%; width:22px; height:22px; display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:900; }
  .iim-cart-panel { position:fixed; bottom:140px; right:20px; z-index:9001; background:var(--dark2); border:1px solid var(--border); border-radius:12px; padding:20px; width:280px; box-shadow:0 8px 30px rgba(0,0,0,.5); display:none; }
  .iim-cart-panel.open { display:block; }
  .iim-cart-panel h4 { color:var(--gold); font-size:.9rem; letter-spacing:1px; margin-bottom:12px; }
  .iim-cart-list { max-height:180px; overflow-y:auto; margin-bottom:12px; display:flex; flex-direction:column; gap:6px; }
  .iim-cart-item { display:flex; align-items:center; gap:8px; background:var(--dark); border:1px solid var(--border); border-radius:6px; padding:8px 10px; }
  .iim-cart-item span { flex:1; font-size:.82rem; color:#fff; }
  .iim-cart-rm { background:none; border:none; color:#666; cursor:pointer; font-size:1rem; line-height:1; padding:0 4px; }
  .iim-cart-rm:hover { color:#e05252; }
  body.day-mode .iim-cart-fab { box-shadow:0 4px 20px rgba(0,0,0,.2); }
  body.day-mode .iim-cart-panel { background:#fff; border-color:#e0e0e0; }
  body.day-mode .iim-cart-item { background:#f4f4f4; border-color:#ddd; }
  body.day-mode .iim-cart-item span { color:#111; }

  /* ── Share button on cards ── */
  .model-card-share { display:block; text-align:center; margin-top:6px; background:transparent; border:1px solid #333; color:#888; padding:7px; border-radius:var(--radius); font-size:.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; cursor:pointer; transition:background .2s, color .2s; width:100%; }
  .model-card-share:hover { border-color:var(--gold); color:var(--gold); }

  /* ── Rate Estimator ── */
  .rate-estimator { background:var(--dark2); border:1px solid var(--gold); border-radius:12px; padding:28px 24px; margin-top:36px; }
  .rate-estimator h3 { color:var(--gold); font-size:1.05rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; margin-bottom:6px; }
  .rate-estimator p { color:var(--muted); font-size:.85rem; margin-bottom:18px; }
  .rate-estimator select, .rate-estimator input[type=number] { width:100%; padding:10px 12px; background:var(--dark); border:1px solid var(--border); border-radius:6px; color:#fff; font-size:.88rem; margin-bottom:12px; box-sizing:border-box; }
  .rate-estimator-result { background:var(--dark); border-left:3px solid var(--gold); padding:14px 16px; border-radius:0 6px 6px 0; margin-top:4px; display:none; }
  .rate-estimator-result.show { display:block; }
  .rate-estimator-result .re-range { font-size:1.4rem; font-weight:900; color:var(--gold); }
  .rate-estimator-result .re-note { font-size:.78rem; color:var(--muted); margin-top:4px; }
  body.day-mode .rate-estimator { background:#f8f8f8; border-color:var(--gold); }
  body.day-mode .rate-estimator select, body.day-mode .rate-estimator input[type=number] { background:#fff; border-color:#ddd; color:#111; }
  body.day-mode .rate-estimator-result { background:#f0f0f0; }

  /* ── Returning Client Fast-Track ── */
  .returning-client-wrap { background:var(--dark2); border:1px solid var(--border); border-radius:8px; padding:16px 18px; margin-bottom:14px; }
  .returning-client-wrap summary { cursor:pointer; color:var(--gold); font-size:.82rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; user-select:none; }
  .returning-client-wrap summary::-webkit-details-marker { color:var(--gold); }
  .returning-client-inner { margin-top:12px; display:flex; gap:8px; flex-wrap:wrap; align-items:flex-end; }
  .returning-client-inner input { flex:1; min-width:180px; padding:10px 12px; background:var(--dark); border:1px solid var(--border); border-radius:6px; color:#fff; font-size:.88rem; }
  .returning-client-inner button { padding:10px 18px; background:var(--gold); color:#000; border:none; border-radius:6px; font-size:.78rem; font-weight:800; letter-spacing:1px; cursor:pointer; white-space:nowrap; }
  .returning-ok { color:#52c07a; font-size:.82rem; margin-top:8px; display:none; }
  .returning-err { color:#e05252; font-size:.82rem; margin-top:8px; display:none; }
  body.day-mode .returning-client-wrap { background:#f4f4f4; border-color:#ddd; }
  body.day-mode .returning-client-inner input { background:#fff; border-color:#ccc; color:#111; }

  /* ── Booking Confirm Preview ── */
  .booking-preview { background:#141414; border:1px solid #2a2a2a; border-radius:10px; padding:20px; margin-top:16px; display:none; }
  .booking-preview.show { display:block !important; }
  .booking-preview-header { background:var(--gold); padding:12px 18px; border-radius:6px 6px 0 0; margin:-20px -20px 16px; text-align:center; font-size:.78rem; font-weight:900; letter-spacing:2px; color:#000; }
  .booking-preview-body p { color:#bbb; font-size:.88rem; line-height:1.7; margin-bottom:8px; }
  .booking-preview-body strong { color:#fff; }
  .booking-preview-footer { border-top:1px solid #2a2a2a; margin-top:12px; padding-top:10px; font-size:.72rem; color:#555; text-align:center; }

  /* ── Testimonial Submit ── */
  .testi-submit-wrap { max-width:640px; margin:0 auto; padding:60px 24px 80px; }
  .testi-submit-card { background:var(--dark2); border:1px solid var(--border); border-radius:12px; padding:36px 32px; }
  .testi-submit-card h1 { font-size:1.4rem; font-weight:800; color:#fff; letter-spacing:2px; text-transform:uppercase; margin-bottom:8px; }
  .testi-gold-line { width:48px; height:3px; background:var(--gold); border-radius:2px; margin-bottom:16px; }
  .testi-submit-card p { color:var(--muted); font-size:.88rem; margin-bottom:20px; line-height:1.7; }
  body.day-mode .testi-submit-card { background:#f8f8f8; border-color:#e0e0e0; }
  body.day-mode .testi-submit-card h1 { color:#111; }
  @media (max-width:600px) {
    .qv-stats { grid-template-columns:1fr; }
    .iim-cart-panel { right:10px; left:10px; width:auto; }
    .testi-submit-card { padding:24px 18px; }
    .rate-estimator { padding:18px 16px; }
  }
  