/* ============================================================
   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: Roboto, sans-serif;
    --font-body: Roboto, sans-serif;
    --font-mono: Roboto, sans-serif;
    
    /* 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:Roboto, 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: Roboto, sans-serif;
}

.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: Roboto, sans-serif;
    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;
}

/* =================================================
   PREMIUM HEADER: NAVY / PURPLE / GOLD STYLE
================================================= */

.site-header.premium-header {
  background: #111827;
  border-top: 5px solid #f5b942;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1000;
}

.premium-header-inner {
  max-width: 1600px;
  min-height: 118px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

/* LOGO */
.header-logo {
  flex: 0 0 250px;
  width: 250px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(90deg, #0b1020 0%, #111827 76%, rgba(17,24,39,0) 100%);
  overflow: hidden;
}

.site-logo-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.site-logo {
  width: 215px;
  max-width: 215px;
  max-height: 104px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* MAIN RIGHT AREA */
.premium-header-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* TOP ROW */
.premium-header-top {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-quick-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.header-quick-links a {
  color: #f8fafc;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-quick-links a:hover {
  color: #f5b942;
}

/* SEARCH */
.header-search {
  flex: 1 1 420px;
  max-width: 520px;
}

.header-search form {
  display: flex;
  width: 100%;
}

.header-search input {
  width: 100%;
  height: 34px;
  background: #0b1020;
  border: 1px solid #334155;
  border-right: 0;
  color: #fff;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.header-search input::placeholder {
  color: #94a3b8;
}

.header-search button {
  height: 34px;
  padding: 0 14px;
  border: 0;
  background: #7c3aed;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.header-search button:hover {
  background: #8b5cf6;
}

/* AUTH */
.header-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.btn-auth {
  height: 34px;
  padding: 0 15px;
  border: 1px solid #7c3aed;
  color: #f8fafc;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.btn-auth:hover {
  background: #7c3aed;
  color: #fff;
}

.btn-register {
  background: #f5b942;
  border-color: #f5b942;
  color: #111827;
}

.btn-register:hover {
  background: #ffd36f;
  border-color: #ffd36f;
  color: #111827;
}

/* LANGUAGE */
.nav-lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.lang-btn {
  height: 32px;
  padding: 0 9px;
  background: #1e293b;
  border: 1px solid #475569;
  color: #f8fafc;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 3px;
}

.lang-btn:hover {
  border-color: #f5b942;
  color: #f5b942;
}

/* BOTTOM ROW */
.premium-header-bottom {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* AD */
.header-ad {
  flex: 0 0 300px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header-ad a {
  display: block;
  width: 100%;
  height: 100%;
}

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

/* NAVIGATION */
.header-nav {
  flex: 1;
  min-width: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  height: 60px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  box-sizing: border-box;
}

.nav-menu li a:hover {
  color: #f5b942;
  border-bottom-color: #f5b942;
  background: rgba(245,185,66,0.08);
}

/* MOBILE BURGER */
.mobile-burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-self: center;
  background: #0b1020;
  color: #f5b942;
  border: 1px solid #334155;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE DRAWER */
.global-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.global-drawer.open {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  width: 310px;
  max-width: 86vw;
  height: 100%;
  background: #111827;
  color: #fff;
  padding: 18px;
  box-sizing: border-box;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.global-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.drawer-btn {
  width: 34px;
  height: 34px;
  background: #f5b942;
  color: #111827;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.drawer-search {
  margin: 16px 0;
}

.drawer-search form {
  display: flex;
}

.drawer-search input {
  width: 100%;
  height: 38px;
  background: #0b1020;
  color: #fff;
  border: 1px solid #334155;
  padding: 0 10px;
  box-sizing: border-box;
}

.drawer-search button {
  height: 38px;
  border: 0;
  background: #7c3aed;
  color: #fff;
  padding: 0 12px;
  font-weight: 800;
}

.drawer-nav {
  margin-top: 16px;
}

.drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-list li a {
  display: block;
  padding: 12px 0;
  color: #f8fafc;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}

.drawer-list li a:hover {
  color: #f5b942;
}

.drawer-auth {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.drawer-auth a {
  display: block;
  text-align: center;
  padding: 11px 14px;
  background: #7c3aed;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
}

.drawer-auth a:first-child {
  background: #f5b942;
  color: #111827;
}

.drawer-lang-switch {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1320px) {
  .premium-header-inner {
    padding: 0 18px;
  }

  .header-logo {
    flex-basis: 220px;
    width: 220px;
  }

  .site-logo {
    width: 190px;
    max-width: 190px;
  }

  .header-ad {
    flex-basis: 240px;
  }

  .nav-menu li a {
    padding: 0 8px;
    font-size: 14px;
  }

  .header-search {
    max-width: 380px;
  }
}

@media (max-width: 1100px) {
  .header-ad {
    display: none !important;
  }

  .header-search {
    max-width: 430px;
  }

  .nav-menu li a {
    padding: 0 9px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }

  .premium-header-inner {
    min-height: 84px;
    align-items: center;
    padding: 0 14px;
  }

  .header-logo {
    flex: 0 0 190px;
    width: 190px;
    height: 84px;
  }

  .site-logo {
    width: 165px;
    max-width: 165px;
    max-height: 76px;
  }

  .premium-header-main {
    display: none;
  }

  .mobile-burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

body.drawer-open {
  overflow: hidden;
}

/* ===============================
   LANGUAGE DROPDOWN
================================ */

.language-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.lang-current {
  height: 32px;
  padding: 0 10px;
  background: #1e293b;
  border: 1px solid #475569;
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 3px;
}

.lang-current:hover {
  border-color: #f5b942;
  color: #f5b942;
}

.lang-arrow {
  font-size: 10px;
  color: #f5b942;
}

.language-menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  width: 86px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  z-index: 99999;
}

.language-dropdown:hover .language-menu,
.language-dropdown.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu li {
  margin: 0;
  padding: 0;
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.language-menu a:hover {
  background: #7c3aed;
  color: #fff;
}

/* Mobile drawer language list */
.drawer-language-list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.drawer-language-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 8px;
  background: #1e293b;
  color: #f8fafc;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid #334155;
  border-radius: 4px;
}

.drawer-language-list a:hover {
  border-color: #f5b942;
  color: #f5b942;
}

.btn-contact {
  border-color: #f5b942;
  color: #f5b942;
}

.btn-contact:hover {
  background: #f5b942;
  color: #111827;
}

.site-logo {
  width: 230px;
  max-width: 230px;
  max-height: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

.header-logo {
  height: 118px;
}
@media (max-width: 480px) {

  .header-logo {
    width: 170px;
    max-width: 170px;
    height: 54px;
  }

  .site-logo-link {
    width: 170px;
    height: 54px;
  }

  .site-logo {
    width: 160px;
    max-width: 160px;
    max-height: 50px;
  }

  .mobile-burger {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

}.header-logo {
  background: linear-gradient(...);
}

/* =================================================
   MOBILE HEADER: TWO ROW LAYOUT
================================================= */

.mobile-premium-header {
  display: none;
}

@media (max-width: 991px) {

  .premium-header-inner {
    display: none !important;
  }

  .site-header.premium-header {
    background: #111827;
    border-top: 4px solid #f5b942;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    min-height: 126px;
    height: auto;
    overflow: visible;
  }

  .mobile-premium-header {
    display: block;
    width: 100%;
    background: #111827;
    color: #fff;
  }

  .mobile-top-row {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-sizing: border-box;
  }

  .mobile-top-link {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-login-btn {
    height: 34px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7c3aed;
    color: #fff;
    border: 1px solid #8b5cf6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-lang-dropdown {
    position: relative;
  }

  .mobile-lang-dropdown .lang-current {
    height: 34px;
    padding: 0 9px;
    background: #1e293b;
    border: 1px solid #475569;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-lang-dropdown .language-menu {
    top: calc(100% + 6px);
    right: 0;
    z-index: 99999;
  }

  .mobile-theme-toggle {
    width: 34px;
    height: 34px;
    background: transparent;
    border: 0;
    color: #f5b942;
    font-size: 21px;
    cursor: pointer;
  }

  .mobile-bottom-row {
    height: 76px;
    display: grid;
    grid-template-columns: 145px 42px 1fr 90px;
    align-items: center;
    column-gap: 10px;
    padding: 0 18px;
    box-sizing: border-box;
  }

  .mobile-logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 145px;
    height: 66px;
    overflow: hidden;
    text-decoration: none;
  }

  .mobile-site-logo {
    display: block;
    width: 130px;
    max-width: 130px;
    max-height: 60px;
    height: auto;
    object-fit: contain;
  }

  .mobile-search-icon {
    width: 38px;
    height: 38px;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-location-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    min-width: 0;
  }

  .mobile-location-link span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: auto;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
  }

  .mobile-menu-btn span {
    font-size: 16px;
  }

  .mobile-burger {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .mobile-top-row {
    padding: 0 10px;
    gap: 6px;
  }

  .mobile-top-link {
    font-size: 13px;
  }

  .mobile-login-btn {
    padding: 0 11px;
    font-size: 12px;
  }

  .mobile-bottom-row {
    grid-template-columns: 118px 34px 1fr 70px;
    column-gap: 7px;
    padding: 0 10px;
  }

  .mobile-logo-link {
    width: 118px;
  }

  .mobile-site-logo {
    width: 108px;
    max-width: 108px;
  }

  .mobile-search-icon {
    width: 32px;
    font-size: 28px;
  }

  .mobile-location-link {
    font-size: 14px;
  }

  .mobile-menu-btn {
    font-size: 17px;
    gap: 4px;
  }

  .mobile-menu-btn span {
    font-size: 14px;
  }
}

/* =================================================
   MOBILE HEADER COUNTRY/CITY SELECTOR
================================================= */

@media (max-width: 991px) {

  .mobile-cc-header-row {
    grid-template-columns: 120px 38px 1fr 72px;
    column-gap: 8px;
    position: relative;
  }

  .mobile-cc-wrap {
    position: relative;
    min-width: 0;
  }

  .mobile-cc-toggle {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 2px solid #7c3aed;
    border-radius: 18px;
    background: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.18);
  }

  .mobile-cc-toggle span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-cc-icon {
    flex: 0 0 auto;
  }

  .mobile-cc-arrow {
    margin-left: auto;
    font-size: 11px;
    color: #475569;
  }

  .mobile-cc-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(360px, 88vw);
    max-height: 430px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #7c3aed;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
  }

  .mobile-cc-wrap.open .mobile-cc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-cc-search {
    width: calc(100% - 24px);
    height: 42px;
    margin: 12px;
    padding: 0 14px;
    border: 1px solid #d7dce5;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
    outline: none;
  }

  .mobile-cc-country-list,
  .mobile-cc-city-list {
    max-height: 185px;
    overflow-y: auto;
    padding: 0 12px 12px;
    box-sizing: border-box;
  }

  .mobile-cc-country-list {
    display: grid;
    gap: 7px;
  }

  .mobile-cc-country-list button {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    color: #111827;
    text-align: left;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-cc-country-list button:hover,
  .mobile-cc-country-list button.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
  }

  .mobile-cc-city-list {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
  }

  .mobile-cc-city-list.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mobile-cc-city {
    min-height: 36px;
    padding: 8px 10px;
    background: #111827;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .mobile-cc-city:hover {
    background: #f5b942;
    color: #111827;
  }
}

@media (max-width: 430px) {

  .mobile-cc-header-row {
    grid-template-columns: 104px 32px 1fr 64px;
    column-gap: 6px;
  }

  .mobile-cc-toggle {
    height: 42px;
    padding: 0 9px;
    border-radius: 16px;
    font-size: 13px;
  }

  .mobile-cc-dropdown {
    right: -72px;
    width: min(350px, 94vw);
  }
}

/* ============================================================
   FRONT PAGE FULL SCREEN EDGE-TO-EDGE
   Keeps existing layout, only expands width
============================================================ */

/* Remove theme/container restrictions */
body.home,
body.page-template-front-page,
body.front-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #f8fafc;
}

body.home main,
body.home .home-main,
body.home .site-main,
body.home .page-wrap,
body.home .container,
body.home .wrap,
body.page-template-front-page main,
body.page-template-front-page .home-main,
body.page-template-front-page .site-main,
body.page-template-front-page .page-wrap,
body.page-template-front-page .container,
body.page-template-front-page .wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Make front page grid full viewport width */
body.home .home-grid,
body.page-template-front-page .home-grid,
body.front-page .home-grid {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 0;

  padding: 0 !important;
  box-sizing: border-box;
}

/* Left content stays same, just gets clean internal spacing */
body.home .home-left,
body.page-template-front-page .home-left,
body.front-page .home-left {
  width: 100%;
  min-width: 0;
  padding: 14px 16px 28px !important;
  box-sizing: border-box;
}

/* Sidebar stays same, edge aligned */
body.home .home-right,
body.page-template-front-page .home-right,
body.front-page .home-right,
body.home .main-right,
body.page-template-front-page .main-right,
body.front-page .main-right {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Make each section visually full-width within its column */
body.home .cc-strip,
body.page-template-front-page .cc-strip,
body.front-page .cc-strip,
body.home .banner-wrap,
body.page-template-front-page .banner-wrap,
body.front-page .banner-wrap,
body.home .listing-block,
body.page-template-front-page .listing-block,
body.front-page .listing-block {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Keep premium visual spacing without changing layout */
body.home .cc-strip,
body.page-template-front-page .cc-strip,
body.front-page .cc-strip {
  margin-bottom: 14px;
}

body.home .banner-wrap,
body.page-template-front-page .banner-wrap,
body.front-page .banner-wrap {
  margin-bottom: 16px;
}

body.home .listing-block,
body.page-template-front-page .listing-block,
body.front-page .listing-block {
  margin-top: 18px;
}

/* Desktop sidebar sticky remains aligned */
@media (min-width: 992px) {
  body.home .main-right,
  body.page-template-front-page .main-right,
  body.front-page .main-right {
    position: sticky;
    top: 84px;
    align-self: start;
    min-height: calc(100vh - 84px);
  }
}

/* Large screens: keep same layout but use more screen */
@media (min-width: 1600px) {
  body.home .home-grid,
  body.page-template-front-page .home-grid,
  body.front-page .home-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  body.home .home-left,
  body.page-template-front-page .home-left,
  body.front-page .home-left {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Mobile: keep existing single-column layout */
@media (max-width: 991px) {
  body.home .home-grid,
  body.page-template-front-page .home-grid,
  body.front-page .home-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    grid-template-columns: 1fr;
  }

  body.home .home-left,
  body.page-template-front-page .home-left,
  body.front-page .home-left {
    padding: 0 !important;
  }

  body.home .listing-block,
  body.page-template-front-page .listing-block,
  body.front-page .listing-block {
    border-radius: 0;
  }

  body.home .banner-wrap,
  body.page-template-front-page .banner-wrap,
  body.front-page .banner-wrap {
    margin-top: 0;
  }

  /* Keep duplicate front-page country/city hidden on mobile */
  body.home .cc-strip,
  body.front-page .cc-strip,
  body.page-template-front-page .cc-strip,
  .home-main .cc-strip {
    display: none !important;
  }
}

/* ============================================================
   HEADER FULL SCREEN EDGE-TO-EDGE
   Keeps current header layout, only stretches width
============================================================ */

/* Full viewport header shell */
.site-header.premium-header {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #111827;
  border-top: 5px solid #f5b942;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-sizing: border-box;
  overflow: visible;
}

/* Remove inner max-width limitation */
.site-header.premium-header .premium-header-inner {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 18px 0 0 !important;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

/* Logo touches left edge */
.site-header.premium-header .header-logo {
  flex: 0 0 285px;
  width: 285px;
  height: 118px;
  margin: 0 !important;
  padding-left: 20px;
  background: linear-gradient(90deg, #0b1020 0%, #111827 78%, rgba(17,24,39,0) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* Logo image sizing */
.site-header.premium-header .site-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.site-header.premium-header .site-logo {
  width: 235px;
  max-width: 235px;
  max-height: 104px;
  height: auto;
  object-fit: contain;
}

/* Right section fills all remaining space */
.site-header.premium-header .premium-header-main {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

/* Top row stretches right */
.site-header.premium-header .premium-header-top {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  box-sizing: border-box;
}

/* Search gets flexible width */
.site-header.premium-header .header-search {
  flex: 1 1 auto;
  max-width: 620px;
  min-width: 240px;
}

/* Auth and language stay right aligned */
.site-header.premium-header .header-auth,
.site-header.premium-header .nav-lang-switch {
  flex: 0 0 auto;
}

/* Bottom row stretches full remaining width */
.site-header.premium-header .premium-header-bottom {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-sizing: border-box;
}

/* Banner compact but visible */
.site-header.premium-header .header-ad {
  flex: 0 0 300px;
  width: 300px;
  height: 46px;
  overflow: hidden;
}

.site-header.premium-header .header-ad a,
.site-header.premium-header .header-ad img {
  width: 100%;
  height: 100%;
  display: block;
}

.site-header.premium-header .header-ad img {
  object-fit: cover;
}

/* Navigation fills available right side */
.site-header.premium-header .header-nav {
  flex: 1 1 auto;
  min-width: 0;
  height: 60px;
  display: flex;
  justify-content: flex-end;
}

/* Nav uses all available space cleanly */
.site-header.premium-header .nav-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  overflow: hidden;
}

.site-header.premium-header .nav-menu li {
  flex: 0 0 auto;
}

.site-header.premium-header .nav-menu li a {
  height: 60px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Large desktop improves spacing */
@media (min-width: 1600px) {
  .site-header.premium-header .premium-header-inner {
    padding-right: 28px !important;
  }

  .site-header.premium-header .header-logo {
    flex-basis: 310px;
    width: 310px;
    padding-left: 28px;
  }

  .site-header.premium-header .site-logo {
    width: 255px;
    max-width: 255px;
  }

  .site-header.premium-header .header-search {
    max-width: 760px;
  }

  .site-header.premium-header .header-ad {
    flex-basis: 340px;
    width: 340px;
  }

  .site-header.premium-header .nav-menu li a {
    padding: 0 14px;
  }
}

/* Medium desktop keeps everything on screen */
@media (max-width: 1320px) {
  .site-header.premium-header .header-logo {
    flex-basis: 240px;
    width: 240px;
    padding-left: 16px;
  }

  .site-header.premium-header .site-logo {
    width: 200px;
    max-width: 200px;
  }

  .site-header.premium-header .header-ad {
    flex-basis: 220px;
    width: 220px;
  }

  .site-header.premium-header .header-search {
    max-width: 420px;
  }

  .site-header.premium-header .nav-menu li a {
    padding: 0 8px;
    font-size: 14px;
  }
}

/* Smaller desktop: hide ad first, keep nav/search usable */
@media (max-width: 1120px) {
  .site-header.premium-header .header-ad {
    display: none !important;
  }

  .site-header.premium-header .header-search {
    max-width: 440px;
  }
}

/* Mobile should also be full width */
@media (max-width: 991px) {
  .site-header.premium-header {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mobile-premium-header {
    width: 100% !important;
    max-width: 100% !important;
  }

  .premium-header-inner {
    display: none !important;
  }
}

/* ============================================================
   PREMIUM FOOTER: NAVY / PURPLE / GOLD
============================================================ */

.site-footer.premium-footer {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    radial-gradient(circle at top left, rgba(124,58,237,0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(245,185,66,0.18), transparent 32%),
    #0b1020;
  color: #e5e7eb;
  border-top: 5px solid #f5b942;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(124,58,237,0.18), transparent 35%, rgba(245,185,66,0.12));
  opacity: 0.75;
}

.premium-footer .footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 46px 28px 0;
  box-sizing: border-box;
}

.premium-footer .footer-top {
  display: grid;
  grid-template-columns: minmax(320px, 1.7fr) repeat(3, minmax(180px, 1fr));
  gap: 34px;
  align-items: start;
}

.premium-footer .footer-col {
  min-width: 0;
}

.premium-footer .footer-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.premium-footer .footer-logo img {
  width: 245px;
  max-width: 100%;
  height: auto;
  display: block;
}

.premium-footer .footer-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.75;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(124,58,237,0.16);
  border: 1px solid rgba(245,185,66,0.36);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 800;
}

.premium-footer h4 {
  margin: 0 0 16px;
  color: #f5b942;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.premium-footer li {
  margin: 0 0 10px;
}

.premium-footer li:last-child {
  margin-bottom: 0;
}

.premium-footer a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.premium-footer ul a {
  display: inline-flex;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 650;
}

.premium-footer ul a:hover {
  color: #f5b942;
  transform: translateX(3px);
}

.premium-footer .footer-bottom {
  margin-top: 38px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #94a3b8;
  font-size: 13px;
}

.premium-footer .footer-bottom a {
  color: #f5b942;
  font-weight: 900;
}

.premium-footer .footer-bottom a:hover {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 991px) {
  .premium-footer .footer-inner {
    padding: 34px 18px 0;
  }

  .premium-footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
  }

  .premium-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .premium-footer .footer-logo img {
    width: 210px;
  }

  .premium-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .premium-footer .footer-top {
    grid-template-columns: 1fr;
  }

  .premium-footer .footer-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-badges {
    gap: 7px;
  }

  .footer-badges span {
    font-size: 11px;
  }
}

.premium-header-top {
  overflow: visible !important;
}

/* ============================================================
   FINAL FIX: HEADER LANGUAGE DROPDOWN VISIBILITY
============================================================ */

.site-header.premium-header .language-dropdown,
.site-header.premium-header .nav-lang-switch,
.site-header.premium-header .mobile-lang-dropdown {
  overflow: visible !important;
  flex: 0 0 auto !important;
}

.site-header.premium-header .premium-header-main,
.site-header.premium-header .premium-header-top,
.site-header.premium-header .premium-header-bottom {
  overflow: visible !important;
}

.site-header.premium-header .lang-current {
  min-width: 92px !important;
  height: 36px !important;
  padding: 0 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  background: #1e293b !important;
  border: 1px solid #475569 !important;
  border-radius: 6px !important;
  color: #f8fafc !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.site-header.premium-header .lang-current span {
  color: #f8fafc !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

.site-header.premium-header .lang-current .flag,
.site-header.premium-header .lang-current span:first-child {
  width: 24px !important;
  min-width: 24px !important;
  font-size: 18px !important;
  justify-content: center !important;
}

.site-header.premium-header .lang-current .lang-arrow {
  color: #f5b942 !important;
  font-size: 10px !important;
  margin-left: 2px !important;
}

.site-header.premium-header .language-menu {
  min-width: 98px !important;
  width: 98px !important;
  right: 0 !important;
  z-index: 999999 !important;
}

.site-header.premium-header .language-menu a,
.site-header.premium-header .language-menu a span {
  color: #ffffff !important;
}

/* ============================================================
   FIX: DESKTOP HEADER NAVIGATION NOT VISIBLE
============================================================ */

@media (min-width: 992px) {

  .site-header.premium-header .premium-header-bottom {
    background: #111827 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    overflow: visible !important;
  }

  .site-header.premium-header .header-nav {
    background: #111827 !important;
    height: 60px !important;
    overflow: visible !important;
  }

  .site-header.premium-header .nav-menu {
    background: #111827 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    overflow: visible !important;
  }

  .site-header.premium-header .nav-menu li a {
    color: #f8fafc !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-shadow: none !important;
  }

  .site-header.premium-header .nav-menu li a:hover {
    color: #f5b942 !important;
    background: rgba(245,185,66,0.10) !important;
    border-bottom-color: #f5b942 !important;
  }

  .site-header.premium-header .header-ad {
    background: #111827 !important;
  }
}
/* ============================================================
   MOBILE HEADER / COUNTRY SELECTOR STABILITY PATCH
   Fixes mobile country popup, drawer stacking and small-screen overflow
============================================================ */

@media (max-width: 991px) {
  body.mobile-cc-open,
  body.drawer-open {
    overflow: hidden !important;
    touch-action: none;
  }

  body.mobile-cc-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.54);
    z-index: 100050;
  }

  .site-header.premium-header {
    position: relative;
    z-index: 100100;
    overflow: visible !important;
  }

  .mobile-premium-header,
  .mobile-bottom-row,
  .mobile-cc-header-row,
  .mobile-cc-wrap {
    overflow: visible !important;
  }

  .mobile-cc-toggle {
    max-width: 100%;
    white-space: nowrap;
  }

  .mobile-cc-wrap.open {
    z-index: 100120 !important;
  }

  .mobile-cc-dropdown {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: 136px !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - 154px) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 2px solid #7c3aed !important;
    border-radius: 20px !important;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.38) !important;
    z-index: 100130 !important;
    box-sizing: border-box !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) scale(0.98) !important;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease !important;
  }

  .mobile-cc-wrap.open .mobile-cc-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }

  .mobile-cc-search {
    flex: 0 0 auto !important;
    width: calc(100% - 24px) !important;
    height: 48px !important;
    margin: 12px !important;
    padding: 0 14px !important;
    border: 1px solid #d7dce5 !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
  }

  .mobile-cc-country-list {
    flex: 0 1 auto !important;
    max-height: 30dvh !important;
    min-height: 120px !important;
    overflow-y: auto !important;
    display: grid !important;
    gap: 8px !important;
    padding: 0 12px 12px !important;
    box-sizing: border-box !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-cc-country-list button {
    min-height: 44px !important;
    padding: 8px 14px !important;
    border-radius: 13px !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
  }

  .mobile-cc-city-list {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 32dvh !important;
    overflow-y: auto !important;
    padding: 12px !important;
    border-top: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-cc-city-list.active {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .mobile-cc-city {
    min-height: 42px !important;
    padding: 8px 9px !important;
    border-radius: 13px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
  }

  .global-drawer {
    z-index: 100200 !important;
  }

  .drawer-panel {
    width: min(340px, 88vw) !important;
  }
}

@media (max-width: 430px) {
  .mobile-cc-dropdown {
    left: 10px !important;
    right: 10px !important;
    top: 134px !important;
    max-height: calc(100dvh - 148px) !important;
  }

  .mobile-cc-country-list {
    max-height: 28dvh !important;
  }

  .mobile-cc-city-list {
    max-height: 30dvh !important;
  }

  .mobile-cc-city-list.active {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mobile-cc-country-list button,
  .mobile-cc-city {
    font-size: 13px !important;
  }
}

@media (max-height: 640px) and (max-width: 991px) {
  .mobile-cc-dropdown {
    top: 118px !important;
    max-height: calc(100dvh - 128px) !important;
  }

  .mobile-cc-search {
    height: 42px !important;
    margin: 10px !important;
    width: calc(100% - 20px) !important;
  }

  .mobile-cc-country-list {
    max-height: 25dvh !important;
  }

  .mobile-cc-city-list {
    max-height: 28dvh !important;
  }
}


/* ============================================================
   MOBILE HEADER FINAL ALIGNMENT PATCH
   Keeps existing desktop layout unchanged.
   Fixes country selector alignment and drawer menu text visibility.
============================================================ */

@media (max-width: 991px) {
  body.mobile-cc-open,
  body.drawer-open {
    overflow: hidden !important;
  }

  body.mobile-cc-open::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(2, 6, 23, 0.58) !important;
    z-index: 100050 !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: 154px !important;
    width: min(380px, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    height: auto !important;
    max-height: calc(100dvh - 166px) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border: 2px solid #7c3aed !important;
    border-radius: 20px !important;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.42) !important;
    z-index: 100140 !important;
    box-sizing: border-box !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(-8px) scale(0.98) !important;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease !important;
  }

  body.mobile-cc-open .mobile-cc-dropdown.mobile-cc-portal {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-search {
    flex: 0 0 auto !important;
    width: calc(100% - 24px) !important;
    height: 48px !important;
    margin: 12px !important;
    padding: 0 16px !important;
    border: 1px solid #d7dce5 !important;
    border-radius: 15px !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    outline: none !important;
    box-sizing: border-box !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list,
  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city-list {
    box-sizing: border-box !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list {
    flex: 0 1 auto !important;
    display: grid !important;
    gap: 8px !important;
    min-height: 112px !important;
    max-height: 30dvh !important;
    padding: 0 12px 12px !important;
    overflow-y: auto !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list button {
    width: 100% !important;
    min-height: 44px !important;
    padding: 9px 16px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    color: #111827 !important;
    text-align: left !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list button.active,
  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list button:hover {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: #ffffff !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city-list {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 32dvh !important;
    padding: 12px !important;
    border-top: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    overflow-y: auto !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city-list.active {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city {
    min-height: 42px !important;
    padding: 8px 9px !important;
    border-radius: 13px !important;
    background: #111827 !important;
    color: #ffffff !important;
    text-align: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city:hover {
    background: #f5b942 !important;
    color: #111827 !important;
  }

  .global-drawer {
    z-index: 100300 !important;
    background: rgba(2, 6, 23, 0.66) !important;
  }

  .global-drawer.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .drawer-panel {
    width: min(360px, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    height: 100dvh !important;
    background: #111827 !important;
    color: #ffffff !important;
    padding: 22px 18px !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.38) !important;
  }

  .drawer-header,
  .drawer-header h2,
  .drawer-header h3,
  .drawer-header strong {
    color: #ffffff !important;
  }

  .drawer-search input {
    background: #0b1020 !important;
    border: 1px solid #334155 !important;
    color: #ffffff !important;
  }

  .drawer-search input::placeholder {
    color: #94a3b8 !important;
  }

  .drawer-search button {
    background: #7c3aed !important;
    color: #ffffff !important;
  }

  .drawer-list,
  .drawer-list li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .global-drawer .drawer-list a,
  .global-drawer .drawer-list li a,
  .global-drawer .drawer-nav a {
    display: block !important;
    width: 100% !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    color: #ffffff !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    text-shadow: none !important;
  }

  .global-drawer .drawer-list a:hover,
  .global-drawer .drawer-list li a:hover,
  .global-drawer .drawer-nav a:hover {
    color: #f5b942 !important;
  }

  .drawer-auth a,
  .drawer-lang-switch a {
    color: #ffffff !important;
  }
}

@media (max-width: 430px) {
  .mobile-cc-dropdown.mobile-cc-portal {
    top: 156px !important;
    width: min(372px, calc(100vw - 20px)) !important;
    max-height: calc(100dvh - 168px) !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list {
    max-height: 28dvh !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city-list {
    max-height: 30dvh !important;
  }
}

@media (max-height: 660px) and (max-width: 991px) {
  .mobile-cc-dropdown.mobile-cc-portal {
    top: 120px !important;
    max-height: calc(100dvh - 132px) !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-search {
    height: 42px !important;
    margin: 10px !important;
    width: calc(100% - 20px) !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list {
    max-height: 24dvh !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city-list {
    max-height: 28dvh !important;
  }
}


/* Mobile country selector: show only selected country's cities */
@media (max-width: 991px) {
  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city,
  .mobile-cc-city {
    display: none !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-city.is-active,
  .mobile-cc-city.is-active {
    display: flex !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list button {
    -webkit-tap-highlight-color: transparent !important;
  }

  .mobile-cc-dropdown.mobile-cc-portal .mobile-cc-country-list button:focus {
    outline: 2px solid rgba(124, 58, 237, .22) !important;
    outline-offset: 2px !important;
  }
}

/* Normal navigation font weight override */
.site-header.premium-header .nav-menu a,
.site-header.premium-header .nav-menu li a,
.global-drawer .drawer-list a,
.global-drawer .drawer-list li a,
.global-drawer .drawer-nav a,
.nav-menu a,
.drawer-list a {
  font-weight: 400 !important;
}

/* Premium heading override: mirrors site-unified.css for pages that load global.css last. */
h1,h2,h3,h4,h5,h6,
.entry-title,.page-title,.section-title,.widget-title,.card-title,.profile-title,.agency-title,.directory-title,.sx-title,.hero-title,.listing-title,.archive-title,.post-title,.modal-title,.form-title,
[class*="__title"],[class*="-title"]{
  font-family:Roboto, sans-serif;
  font-style:normal !important;
  color:#101014 !important;
  text-transform:none !important;
  text-rendering:geometricPrecision;
}
h1,.page-title,.entry-title,.hero-title,.archive-title{font-weight:650 !important;letter-spacing:-.034em !important;line-height:1.05 !important;text-wrap:balance;}
h2,.section-title,.form-title,.modal-title{font-weight:625 !important;letter-spacing:-.028em !important;line-height:1.10 !important;text-wrap:balance;}
h3,.card-title,.profile-title,.agency-title,.directory-title,.listing-title,.post-title,.sx-title{font-weight:575 !important;letter-spacing:-.018em !important;line-height:1.18 !important;}
h4,h5,h6,.widget-title{font-weight:550 !important;letter-spacing:-.010em !important;line-height:1.22 !important;}
.kicker,.eyebrow,.section-kicker,.pre-title,.subtitle-label{font-weight:500 !important;letter-spacing:.11em !important;text-transform:uppercase !important;}
.hero-title::after,.section-title::after,.page-title::after{content:"";display:block;width:42px;height:2px;margin-top:12px;border-radius:999px;background:linear-gradient(90deg,#b7892d,rgba(183,137,45,0));}
.card-title::after,.profile-title::after,.agency-title::after,.directory-title::after,.sx-title::after,.widget-title::after{display:none !important;content:none !important;}

/* Premium responsive navigation final override, mirrored from site-unified.css */
.site-header.premium-header .wx-primary-menu > li > a,
.site-header.premium-header .nav-menu > li > a{font-weight:400!important;border-radius:999px!important;border:1px solid transparent!important;letter-spacing:.012em!important;}
.site-header.premium-header .wx-primary-menu > li > a:hover,
.site-header.premium-header .nav-menu > li > a:hover{border-color:rgba(245,185,66,.22)!important;background:linear-gradient(135deg,rgba(245,185,66,.11),rgba(124,58,237,.13))!important;color:#f5b942!important;}
.global-drawer .wx-drawer-section{margin-top:14px!important;padding:14px!important;border:1px solid rgba(245,185,66,.14)!important;border-radius:20px!important;background:rgba(255,255,255,.035)!important;}
.global-drawer .drawer-section-title{display:block;margin:0 0 10px;color:#f5b942;font-size:11px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;}
.global-drawer .wx-drawer-menu{display:grid!important;grid-template-columns:1fr 1fr;gap:8px!important;}
.global-drawer .wx-drawer-menu a,.global-drawer .drawer-list li a{display:flex!important;align-items:center!important;min-height:42px!important;padding:0 12px!important;border:1px solid rgba(255,255,255,.08)!important;border-radius:14px!important;background:rgba(15,23,42,.56)!important;color:#e5e7eb!important;font-size:13px!important;font-weight:400!important;line-height:1.2!important;}
.global-drawer .wx-drawer-menu a:hover,.global-drawer .drawer-list li a:hover{color:#f5b942!important;border-color:rgba(245,185,66,.30)!important;background:linear-gradient(135deg,rgba(245,185,66,.10),rgba(124,58,237,.12))!important;transform:translateX(2px)!important;}
.site-footer.premium-footer ul{display:grid!important;gap:7px!important;}
.site-footer.premium-footer ul a{width:100%!important;min-height:32px!important;align-items:center!important;padding:0 10px!important;border-radius:10px!important;color:#cbd5e1!important;font-size:13px!important;font-weight:400!important;border:1px solid transparent!important;}
.site-footer.premium-footer ul a:hover{color:#f5b942!important;border-color:rgba(245,185,66,.18)!important;background:rgba(245,185,66,.07)!important;transform:translateX(2px)!important;}
@media(max-width:640px){.global-drawer .wx-drawer-menu{grid-template-columns:1fr!important}.site-footer.premium-footer ul{grid-template-columns:1fr 1fr!important}.site-footer.premium-footer ul a{min-height:38px!important;justify-content:center!important;text-align:center!important;background:rgba(255,255,255,.035)!important}}
@media(max-width:390px){.site-footer.premium-footer ul{grid-template-columns:1fr!important}}

/* =================================================
COMPACT SITE LOGO OVERRIDES
Trim excess logo spacing while keeping the premium header layout stable.
================================================= */
.site-header.premium-header .header-logo,
.header-logo {
  flex-basis: 226px !important;
  width: 226px !important;
  min-width: 226px !important;
  padding-left: 10px !important;
  padding-right: 6px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.site-header.premium-header .site-logo-link,
.site-logo-link {
  width: auto !important;
  max-width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.site-header.premium-header .site-logo,
.site-logo {
  width: 205px !important;
  max-width: 205px !important;
  max-height: 92px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

@media (min-width: 1600px) {
  .site-header.premium-header .header-logo,
  .header-logo {
    flex-basis: 246px !important;
    width: 246px !important;
    min-width: 246px !important;
    padding-left: 14px !important;
  }

  .site-header.premium-header .site-logo,
  .site-logo {
    width: 225px !important;
    max-width: 225px !important;
    max-height: 96px !important;
  }
}

@media (max-width: 1320px) {
  .site-header.premium-header .header-logo,
  .header-logo {
    flex-basis: 204px !important;
    width: 204px !important;
    min-width: 204px !important;
    padding-left: 8px !important;
  }

  .site-header.premium-header .site-logo,
  .site-logo {
    width: 188px !important;
    max-width: 188px !important;
    max-height: 86px !important;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-row {
    grid-template-columns: 126px 34px 1fr 72px !important;
    column-gap: 7px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .mobile-logo-link {
    width: 126px !important;
    max-width: 126px !important;
    height: 58px !important;
    overflow: hidden !important;
  }

  .mobile-site-logo {
    width: 120px !important;
    max-width: 120px !important;
    max-height: 52px !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 430px) {
  .mobile-bottom-row {
    grid-template-columns: 104px 30px 1fr 62px !important;
    column-gap: 6px !important;
  }

  .mobile-logo-link {
    width: 104px !important;
    max-width: 104px !important;
  }

  .mobile-site-logo {
    width: 100px !important;
    max-width: 100px !important;
    max-height: 48px !important;
  }
}


/* Dynamic country/city loading: prevents thousands of hidden city links from bloating initial HTML. */
.cc-empty,
.cc-loading,
.mobile-cc-empty,
.mobile-cc-loading {
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 700;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.cc-show-all-wrap[hidden] {
  display: none !important;
}
