/* ============================================================
   GLOBAL THEME — DUAL MODE (WHITE PREMIUM + MIDNIGHT CHAMPAGNE)
   Main Site: Clean White Authority
   Wizard Pages: Luxury Dark Theme
============================================================ */

/* ================= TOKENS — WHITE PREMIUM (DEFAULT) ================= */

:root{
  /* White Premium Colors */
  --bg:#ffffff;
  --paper:#ffffff;
  --paper-soft:#f8fafc;

  --ink:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;

  --brand:#6d28d9;
  --brand-soft:#ede9fe;

  --lux-red:#5C0303;
  --lux-gold:#d4af37;

  /* Shared Design Tokens */
  --radius-sm:10px;
  --radius:14px;
  --radius-lg:18px;

  --shadow-soft:0 6px 18px rgba(2,6,23,.06);
  --shadow:0 10px 30px rgba(2,6,23,.08);
  --shadow-strong:0 18px 42px rgba(2,6,23,.14);
}

/* ================= MIDNIGHT CHAMPAGNE TOKENS (WIZARD PAGES) ================= */

.wizard-page,
.wizard-theme {
    /* Core Brand Colors - Midnight Champagne */
    --midnight: #0d1117;
    --slate: #1c1f26;
    --deep-slate: #161922;
    --champagne: #d4af37;
    --rose-gold: #b8941f;
    --warm-gold: #e6c05f;
    --blush: #ff9a8b;
    
    /* Background System */
    --bg-primary: var(--midnight);
    --bg-secondary: var(--slate);
    --bg-tertiary: var(--deep-slate);
    --bg-elevated: #252932;
    --bg-overlay: rgba(13, 17, 23, 0.95);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a8a8b8;
    --text-muted: #6b6b7b;
    --text-disabled: #4a4a54;
    --text-on-gold: #1a1a1a;
    
    /* Border System */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);
    --border-strong: rgba(255, 255, 255, 0.25);
    --border-gold: var(--champagne);
    
    /* Interactive States */
    --gold-hover: var(--warm-gold);
    --gold-pressed: var(--rose-gold);
    --surface-hover: rgba(255, 255, 255, 0.05);
    --surface-active: rgba(255, 255, 255, 0.08);
    
    /* Status Colors */
    --success: #4ade80;
    --success-bg: rgba(74, 222, 128, 0.1);
    --warning: #fbbf24;
    --warning-bg: rgba(251, 191, 36, 0.1);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.1);
    --info: #3b82f6;
    --info-bg: rgba(59, 130, 246, 0.1);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, rgba(13, 17, 23, 0) 0%, #0d1117 100%);
    --gradient-glow: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    --gradient-surface: linear-gradient(135deg, #1c1f26 0%, #161922 100%);
    --gradient-gold-hover: linear-gradient(135deg, #e6c05f 0%, #ffeed6 50%, #e6c05f 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
    --shadow-gold-lg: 0 8px 32px rgba(212, 175, 55, 0.35);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}

/* ================= RESET ================= */

*{margin:0;padding:0;box-sizing:border-box}
html{
  height:auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body{
  min-height:100%;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,sans-serif;
  line-height:1.45;
}

/* Wizard pages get dark background */
.wizard-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
}

/* Subtle background glow for wizard */
.wizard-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 400px;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 0;
}

img{max-width:100%;display:block}
a{color:var(--brand);text-decoration:none}
a:hover{color:#4c1d95}
button,a{-webkit-tap-highlight-color:transparent}

/* Wizard page links */
.wizard-page a {
    color: var(--champagne);
}

.wizard-page a:hover {
    color: var(--warm-gold);
}

/* ================= TYPOGRAPHY ================= */

h1,h2,h3,h4,h5,h6{
  color:var(--lux-red);
  font-weight:800;
  line-height:1.25;
}

/* Wizard typography */
.wizard-page h1,
.wizard-page h2,
.wizard-page h3,
.wizard-page h4,
.wizard-page h5,
.wizard-page h6 {
    color: var(--text-primary);
    font-weight: 700;
}

p,span,li,td,th,label{color:var(--ink)}
.muted,.text-muted{color:var(--muted)}

/* Wizard text colors */
.wizard-page p,
.wizard-page span,
.wizard-page li,
.wizard-page label {
    color: var(--text-secondary);
}

.wizard-page .text-muted {
    color: var(--text-muted);
}

/* ================= LAYOUT CORE ================= */

.container,
.wrap,
.page-wrap{
  width:100%;
  padding-inline:clamp(14px,2vw,32px);
}

.main-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:28px;
  align-items:start;
}

@media(max-width:1000px){
  .main-layout{grid-template-columns:1fr}
}

/* ================= GRID UTILITIES ================= */

.grid-cards{
  display:grid;
  gap:22px;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
}

@media(min-width:1600px){
  .grid-cards{
    grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
  }
}

/* ================= PANELS ================= */

.panel{
  background:var(--paper);
  border-radius:var(--radius-lg);
  padding:18px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

/* ================= SIDEBAR ================= */

.main-right{
  display:flex;
  flex-direction:column;
  gap:22px;
}

@media(min-width:992px){
  .main-right{position:sticky;top:90px}
}

/* ================= HEADER ================= */

.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:6000;
}

.header-top{
  max-width:1480px;
  margin:0 auto;
  height:52px;
  padding:6px 14px;
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:10px;
}

.header-logo a{
  font-size:20px;
  font-weight:900;
  color:var(--brand);
  white-space:nowrap;
}

.header-search form{
  display:flex;
  height:38px;
}

.header-search input{
  width:100%;
  height:38px;
  padding:0 12px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:var(--paper-soft);
  font-size:13px;
}

.header-search button{display:none}

.header-auth{display:flex;gap:8px}

.btn-auth{
  padding:7px 14px;
  border-radius:var(--radius-sm);
  border:1px solid var(--brand);
  color:var(--brand);
  font-size:13px;
}

.btn-register{
  background:var(--brand);
  color:#fff;
}

.mobile-burger{
  width:40px;
  height:38px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:#fff;
  font-size:22px;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-soft);
}

/* ================= NAV (DESKTOP) ================= */

.header-nav{
  border-top:1px solid var(--line);
  background:#fff;
}

.nav-wrap{
  max-width:1480px;
  margin:0 auto;
  padding:0 14px;
}

.nav-menu{
  list-style:none;
  display:flex;
  justify-content:center;
  gap:22px;
  padding:10px 0;
}

.nav-menu a{
  font-size:13px;
  font-weight:600;
  color:var(--lux-red);
}

/* ================= DRAWER ================= */

.global-drawer{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.45);
  backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:.3s ease;
  z-index:9999;
}

.global-drawer.open{
  opacity:1;
  pointer-events:auto;
}

.drawer-panel{
  position:absolute;
  right:0;
  top:0;
  width:86vw;
  max-width:360px;
  height:100%;
  background:#fff;
  border-left:1px solid var(--line);
  padding:18px;
  transform:translateX(100%);
  transition:.35s ease;
}

.global-drawer.open .drawer-panel{
  transform:translateX(0);
}

.drawer-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.drawer-list a{
  font-size:15px;
  font-weight:600;
  color:var(--lux-red);
}

/* ================= COUNTRY → CITY STRIP ================= */

.cc-strip{
  background:linear-gradient(180deg,#f0fdf8,#e6fbf2);
  border-bottom:1px solid #cdeee2;
  padding:14px clamp(12px,2vw,32px) 18px;
}

.cc-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
}

.cc-country-select{
  background:#fff;
  border:1px solid #bfe6d6;
  border-radius:var(--radius-sm);
  padding:8px 12px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
}

/* ================= ESCORT CARD ================= */

.escort-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:.25s ease;
}

.escort-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-strong);
}

.escort-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}

.escort-meta-block{
  padding:14px;
  background:#fff;
}

.meta-header{
  display:flex;
  justify-content:space-between;
  gap:8px;
}

.meta-header .name{
  font-size:15px;
  font-weight:700;
  color:var(--lux-red);
}

.meta-header .age{
  font-size:12px;
  padding:3px 8px;
  border-radius:999px;
  background:#f1f5f9;
  color:var(--muted);
}

.meta-bottom{
  margin-top:10px;
  display:flex;
  justify-content:space-between;
}

.meta-location{
  font-size:13px;
  color:#475569;
}

.meta-price{
  font-size:13px;
  font-weight:800;
  color:var(--lux-red);
}

/* ================= REVIEWS ================= */

.sd-review-list{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.sd-review-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow-soft);
}

@media(max-width:768px){
  .sd-review-list{grid-template-columns:1fr}
}

/* ================= FOOTER ================= */

.footer{
  background:#f8fafc;
  border-top:1px solid var(--line);
  padding:40px clamp(14px,2vw,32px) 14px;
  color:var(--muted);
}

.footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;
}

@media(max-width:520px){
  .footer-top{grid-template-columns:1fr}
}

/* ============================================================
   WIZARD PAGE STYLES — MIDNIGHT CHAMPAGNE THEME
============================================================ */

/* Wizard Container */
#agencyWizard {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Progress Dots */
.progress-dots {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 1rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    backdrop-filter: blur(10px);
}

.progress-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    position: relative;
}

.progress-dot::after {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(100% + 0.75rem);
    width: 1.5rem;
    height: 2px;
    background: var(--border-medium);
    transition: background 0.3s ease;
}

.progress-dot:last-child::after {
    display: none;
}

.progress-dot.completed::after {
    background: var(--gradient-gold);
}

.progress-dot.active,
.progress-dot.completed {
    opacity: 1;
}

.dot-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.progress-dot.active .dot-circle {
    background: var(--gradient-gold);
    border-color: var(--champagne);
    color: var(--text-on-gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.progress-dot.completed .dot-circle {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--text-on-gold);
}

.progress-dot.completed .dot-circle::before {
    content: '✓';
    position: absolute;
    font-size: 0.9rem;
}

.dot-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    max-width: 90px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.progress-dot.active .dot-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* Wizard Cards */
.wizard-wrap {
    position: relative;
}

.wizard-card {
    background: var(--bg-secondary);
    padding: 1.5rem 1rem;
    display: none;
    animation: fadeInWizard 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: calc(100vh - 120px);
}

.wizard-card.active {
    display: block;
}

@keyframes fadeInWizard {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wizard-sub {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

/* Section Groups */
.section-group {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

.section-group:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.section-label::before {
    content: '';
    width: 3px;
    height: 18px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Form Elements - Wizard */
.wizard-page .form-row {
    display: grid;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
}

.wizard-page .form-row:has(.field:nth-child(2)) {
    grid-template-columns: 1fr 1fr;
}

.wizard-page .field {
    display: flex;
    flex-direction: column;
}

.wizard-page .field label {
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.wizard-page .field input[type="text"],
.wizard-page .field input[type="email"],
.wizard-page .field input[type="password"],
.wizard-page .field input[type="number"],
.wizard-page .field select,
.wizard-page .field textarea {
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--border-medium);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-family: inherit;
}

.wizard-page .field input::placeholder,
.wizard-page .field textarea::placeholder {
    color: var(--text-muted);
}

.wizard-page .field input:focus,
.wizard-page .field select:focus,
.wizard-page .field textarea:focus {
    outline: none;
    border-color: var(--champagne);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), var(--shadow-sm);
}

.wizard-page .field input:hover:not(:focus),
.wizard-page .field select:hover:not(:focus),
.wizard-page .field textarea:hover:not(:focus) {
    border-color: var(--border-strong);
    background: var(--bg-elevated);
}

.wizard-page .field input.error,
.wizard-page .field select.error {
    border-color: var(--error);
    background: var(--error-bg);
}

.wizard-page .field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* Select Styling - Wizard */
.wizard-page .field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Services Grid - Wizard */
.wizard-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.625rem;
    padding: 0 0.5rem;
}

.wizard-page .services-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--border-medium);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-tertiary);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.wizard-page .services-grid label:hover {
    border-color: var(--champagne);
    background: var(--bg-elevated);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.wizard-page .services-grid input[type="checkbox"] {
    width: 17px;
    height: 17px;
    cursor: pointer;
    accent-color: var(--champagne);
    flex-shrink: 0;
}

.wizard-page .services-grid label:has(input:checked) {
    border-color: var(--champagne);
    background: var(--gradient-surface);
    color: var(--text-primary);
    box-shadow: 0 0 0 1px var(--champagne), var(--shadow-gold);
}

/* Days Grid - Wizard */
.wizard-page .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.wizard-page .days-grid label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.625rem 0.375rem;
    border: 1.5px solid var(--border-medium);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-tertiary);
    font-weight: 500;
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-secondary);
}

.wizard-page .days-grid label:hover {
    border-color: var(--champagne);
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.wizard-page .days-grid input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: var(--champagne);
}

.wizard-page .days-grid label:has(input:checked) {
    border-color: var(--champagne);
    background: var(--gradient-surface);
    color: var(--text-primary);
    box-shadow: 0 0 0 1px var(--champagne);
}

/* File Upload - Wizard */
.wizard-page .file-box {
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
}

.wizard-page .file-box label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.wizard-page .file-box input[type="file"] {
    display: block;
    width: 100%;
    padding: 0.875rem;
    border: 2px dashed var(--border-medium);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.wizard-page .file-box input[type="file"]:hover {
    border-color: var(--champagne);
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.wizard-page .preview-grid {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.875rem;
    flex-wrap: wrap;
}

.wizard-page .preview-grid img {
    border: 2px solid var(--border-medium);
    border-radius: 6px;
    padding: 3px;
    background: var(--bg-tertiary);
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
}

/* Terms & Notices - Wizard */
.wizard-page .terms-row {
    padding: 0 0.5rem;
}

.wizard-page .terms-row label {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    cursor: pointer;
    padding: 0.875rem;
    border: 1.5px solid var(--border-medium);
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-tertiary);
    font-weight: 400;
    line-height: 1.5;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.wizard-page .terms-row label:hover {
    border-color: var(--champagne);
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.wizard-page .terms-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.125rem;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--champagne);
}

.wizard-page .notice-box {
    background: var(--gradient-surface);
    border: 1.5px solid var(--border-medium);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    margin: 1.25rem 0.5rem 0;
}

.wizard-page .notice-box svg {
    flex-shrink: 0;
    color: var(--champagne);
    margin-top: 0.125rem;
    width: 18px;
    height: 18px;
}

.wizard-page .notice-box p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Buttons - Wizard */
.wizard-page .step-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.875rem;
    margin-top: 1.75rem;
    padding: 1.25rem 1rem 1rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    position: sticky;
    bottom: 0;
    z-index: var(--z-sticky);
    backdrop-filter: blur(10px);
}

.wizard-page .btn {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.wizard-page .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wizard-page .btn:hover::before {
    width: 300px;
    height: 300px;
}

.wizard-page .btn-gold {
    background: var(--gradient-gold);
    color: var(--text-on-gold);
    box-shadow: var(--shadow-gold);
    border: 1px solid transparent;
}

.wizard-page .btn-gold:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.wizard-page .btn-gold:active {
    transform: translateY(0);
    box-shadow: var(--shadow-gold);
}

.wizard-page .btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-medium);
}

.wizard-page .btn-ghost:hover {
    border-color: var(--champagne);
    color: var(--champagne);
    background: var(--surface-hover);
}

.wizard-page .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

/* Validation Message - Wizard */
.wizard-page .validation-message {
    background: var(--error-bg);
    border: 1.5px solid var(--error);
    border-radius: 6px;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0 0.5rem 1.25rem;
    animation: slideDownWizard 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDownWizard {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-page .validation-message.fade-out {
    animation: fadeOutWizard 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeOutWizard {
    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

.wizard-page .validation-message svg {
    color: var(--error);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.wizard-page .validation-message span {
    color: var(--error);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Loading Spinner - Wizard */
.wizard-page .spinner {
    animation: spinWizard 1s linear infinite;
}

@keyframes spinWizard {
    to {
        transform: rotate(360deg);
    }
}

/* Hints - Wizard */
.wizard-page .hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
    line-height: 1.4;
}

/* Custom Scrollbar - Wizard */
.wizard-page ::-webkit-scrollbar {
    width: 12px;
}

.wizard-page ::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

.wizard-page ::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 6px;
    border: 3px solid var(--bg-tertiary);
}

.wizard-page ::-webkit-scrollbar-thumb:hover {
    background: var(--champagne);
}

/* Selection - Wizard */
.wizard-page ::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
}

/* ============================================================
   MOBILE HEADER — ALIGNMENT & SCALE FIX
============================================================ */

@media (max-width:900px){

  .site-header{
    height:48px;
  }

  .header-top{
    height:52px;
    padding:6px 12px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
  }

  .header-logo{
    display:flex;
    align-items:center;
  }

  .header-logo a{
    font-size:16px;
    font-weight:900;
    letter-spacing:.2px;
    max-width:150px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .header-search{
    display:none;
  }

  .mobile-burger{
    display:flex;
    width:40px;
    height:40px;
    font-size:22px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(2,6,23,.14);
  }

  .header-ad{
    display:flex;
    align-items:center;
    justify-content:center;
    height:46px;
    padding:2px 6px;
    margin-left:8px;
    background:#f8fafc;
    border:1px solid var(--line);
    border-radius:10px;
  }

  .header-ad img{
    height:46px;
    width:auto;
    object-fit:contain;
    border-radius:6px;
  }

  .header-auth,
  .header-nav{
    display:none;
  }

  .footer-top{
    grid-template-columns:1fr 1fr;
  }

  /* Wizard mobile adjustments */
  .wizard-page .progress-dots {
      gap: 1rem;
      padding: 1rem 0.75rem;
  }

  .wizard-page .progress-dot::after {
      display: none;
  }

  .wizard-page .dot-circle {
      width: 28px;
      height: 28px;
      font-size: 0.8rem;
  }

  .wizard-page .dot-label {
      font-size: 0.65rem;
      max-width: 70px;
  }

  .wizard-page .wizard-card {
      padding: 1.25rem 0.75rem;
  }

  .wizard-page .form-row:has(.field:nth-child(2)) {
      grid-template-columns: 1fr;
  }

  .wizard-page .services-grid {
      grid-template-columns: 1fr;
  }

  .wizard-page .days-grid {
      grid-template-columns: repeat(4, 1fr);
  }

  .wizard-page .step-actions {
      flex-direction: column-reverse;
      padding: 1rem 0.75rem 0.875rem;
  }

  .wizard-page .btn {
      width: 100%;
  }
}

@media (max-width:480px){
  .wizard-page .days-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.375rem;
  }

  .wizard-page .days-grid label {
      padding: 0.5rem 0.25rem;
      font-size: 0.75rem;
  }
}

/* ============================================================
   DESKTOP WIZARD OPTIMIZATIONS
============================================================ */

@media (min-width: 1024px) {
    .wizard-page .wizard-card {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 2.5rem;
        border-radius: 16px;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: var(--shadow-xl);
    }

    .wizard-page .step-actions {
        padding: 1.5rem 0 0;
        background: transparent;
        position: relative;
    }

    .wizard-page .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (min-width: 1440px) {
    .wizard-page .wizard-card {
        max-width: 1400px;
    }
}

/* ============================================================
   ACCESSIBILITY
============================================================ */

.wizard-page .btn:focus-visible,
.wizard-page .field input:focus-visible,
.wizard-page .field select:focus-visible,
.wizard-page .field textarea:focus-visible {
    outline: 2px solid var(--champagne);
    outline-offset: 2px;
}

.wizard-page .progress-dot:focus-visible {
    outline: 2px solid var(--champagne);
    outline-offset: 4px;
    border-radius: 50%;
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   PRINT STYLES
============================================================ */

@media print {
    .wizard-page .progress-dots,
    .wizard-page .step-actions {
        display: none;
    }

    .wizard-page .wizard-card {
        box-shadow: none;
        border: 1px solid var(--border-medium);
    }

    .wizard-page {
        background: white;
    }
}

.mini-card-wrapper {
  position: relative;
}

.mini-badge-verified {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #10b981;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(16,185,129,.35);
  letter-spacing: .3px;
  z-index: 5;
}