/* ============================================================
   temizlik360 — Main Stylesheet
   Primary: #2DAAE1 | Fonts: Poppins / Roboto / Inter
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --primary:       #2DAAE1;
  --primary-dark:  #1a8fbf;
  --primary-light: #e8f6fd;
  --secondary:     #1a2b4a;
  --success:       #27ae60;
  --warning:       #f39c12;
  --danger:        #e74c3c;
  --info:          #3498db;

  --bg:            #f8fafc;
  --bg-card:       #ffffff;
  --border:        #e2e8f0;
  --text:          #1a202c;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-md:  0 10px 25px rgba(0,0,0,.08), 0 4px 10px rgba(0,0,0,.05);
  --shadow-lg:  0 20px 40px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);

  --radius-sm:  6px;
  --radius:     10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full:9999px;

  --transition: all .22s cubic-bezier(.4,0,.2,1);
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Roboto', sans-serif;
  --font-ui:    'Inter', sans-serif;

  --nav-h: 70px;
}

[data-theme="dark"] {
  --bg:            #111113;
  --bg-card:       #1c1c20;
  --border:        #2a2a30;
  --text:          #e8eaed;
  --text-muted:    #9aa0ac;
  --text-light:    #5f6672;
  --primary-light: rgba(45,170,225,.12);
  --secondary:     #c8d0dc;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
  --shadow:     0 4px 6px rgba(0,0,0,.35), 0 2px 4px rgba(0,0,0,.25);
  --shadow-md:  0 10px 25px rgba(0,0,0,.4), 0 4px 10px rgba(0,0,0,.25);
  --shadow-lg:  0 20px 40px rgba(0,0,0,.5), 0 8px 16px rgba(0,0,0,.3);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 600; line-height: 1.25; color: var(--text); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger  { color: var(--danger)  !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2rem; }
.d-none { display: none !important; }
.d-flex { display: flex; } .align-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.fw-600 { font-weight: 600; } .fw-700 { font-weight: 700; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.4rem; font-family: var(--font-head);
  font-size: .9rem; font-weight: 500; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap; line-height: 1.4;
  text-decoration: none;
}
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-sm  { padding: .4rem 1rem; font-size: .82rem; border-radius: var(--radius-sm); }
.btn-lg  { padding: .85rem 2rem; font-size: 1rem; }
.btn-xl  { padding: 1rem 2.4rem; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; justify-content: center; }
.btn-icon { background: none; border: none; cursor: pointer; padding: .4rem .6rem; border-radius: var(--radius-sm); color: var(--text-muted); transition: var(--transition); display:inline-flex;align-items:center;gap:.35rem; }
.btn-icon:hover { background: var(--primary-light); color: var(--primary); }
.btn-link { background: none; border: none; color: var(--primary); cursor: pointer; font-size: inherit; padding: 0; text-decoration: underline; }
.btn-ghost { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: .4rem .7rem; border-radius: var(--radius-sm); transition: var(--transition); }
.btn-ghost:hover { background: var(--primary-light); color: var(--primary); }

.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(45,170,225,.4); }

.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: #f0f9ff; transform: translateY(-1px); }

.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-success:hover { background: #1e8449; }
.btn-danger  { background: var(--danger);  color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #c0392b; }
.btn-warning { background: var(--warning); color: #fff; border-color: var(--warning); }

.btn-google {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  width: 100%; padding: .8rem; background: #fff; color: #3c4043;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-weight: 500; cursor: pointer; transition: var(--transition); font-size: .95rem;
}
.btn-google:hover { background: #f8f9fa; box-shadow: var(--shadow); }

/* ── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: .2rem .65rem; font-size: .72rem; font-weight: 600;
  border-radius: var(--radius-full); letter-spacing: .02em;
}
.badge-success  { background: #d4edda; color: #155724; }
.badge-warning  { background: #fff3cd; color: #856404; }
.badge-danger   { background: #fde8e8; color: #991b1b; }
.badge-info     { background: #dbeafe; color: #1e40af; }
.badge-secondary{ background: #e2e8f0; color: var(--text-muted); }
.badge-primary  { background: var(--primary-light); color: var(--primary-dark); }
.badge-pending     { background: #fff3cd; color: #856404; }
.badge-accepted    { background: #d4edda; color: #155724; }
.badge-in_progress { background: #dbeafe; color: #1e40af; }
.badge-completed   { background: #d1fae5; color: #065f46; }
.badge-cancelled   { background: #fde8e8; color: #991b1b; }
.badge-approved    { background: #d4edda; color: #155724; }
.badge-rejected    { background: #fde8e8; color: #991b1b; }
.badge-lg { padding: .35rem .9rem; font-size: .82rem; }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: flex; align-items: center; justify-content: space-between;
  gap: .4rem; font-size: .875rem; font-weight: 500;
  color: var(--text); margin-bottom: .45rem;
}
.form-label-link { font-size: .8rem; font-weight: 400; color: var(--primary); }
.form-input {
  width: 100%; padding: .72rem 1rem;
  background: var(--bg-card); color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .92rem; transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,170,225,.12); }
.form-input::placeholder { color: var(--text-light); }
.form-hint { display: block; font-size: .78rem; color: var(--text-muted); margin-top: .3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:480px) { .form-row { grid-template-columns: 1fr; } }
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: 1rem; }
.form-checkbox { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--primary); cursor: pointer; }
.input-password-wrap { position: relative; }
.input-password-wrap .form-input { padding-right: 2.8rem; }
.pwd-toggle { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0; font-size: 1rem; }
.password-strength { margin-top: .4rem; height: 18px; }
.pwd-bar { height: 4px; border-radius: 4px; transition: width .3s; margin-bottom: 2px; }
.password-strength span { font-size: .75rem; color: var(--text-muted); }
.phone-input-wrap { display: flex; align-items: center; gap: .5rem; }
.phone-prefix { padding: .72rem .8rem; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .9rem; white-space: nowrap; }
.phone-input { flex: 1; }
.btn-verify-phone { white-space: nowrap; padding: .6rem 1rem; background: var(--primary); color: #fff; border: none; border-radius: var(--radius); font-size: .83rem; cursor: pointer; }
.otp-input { letter-spacing: .5rem; font-size: 1.4rem; text-align: center; font-weight: 700; }
.otp-input-wrap { display: flex; gap: .5rem; margin-top: .5rem; }

select.form-input { cursor: pointer; -webkit-appearance: auto; appearance: auto; }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── ALERTS ─────────────────────────────────────────────────── */
.alert {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  margin-bottom: 1.2rem; font-size: .9rem; border-left: 4px solid;
}
.alert ul { margin: .3rem 0 0 .5rem; }
.alert ul li { margin-bottom: .2rem; }
.alert-success { background: #d4edda; color: #155724; border-color: var(--success); }
.alert-error,
.alert-danger  { background: #fde8e8; color: #991b1b; border-color: var(--danger); }
.alert-warning { background: #fff3cd; color: #856404; border-color: var(--warning); }
.alert-info    { background: #dbeafe; color: #1e40af; border-color: var(--info); }
.alert-lg { padding: 1.4rem; gap: 1rem; }
.alert-sm { padding: .6rem .9rem; font-size: .82rem; }

.info-box {
  display: flex; gap: 1rem; padding: 1rem 1.2rem;
  border-radius: var(--radius); margin-bottom: 1rem;
}
.info-box-info    { background: #dbeafe; color: #1e40af; }
.info-box-warning { background: #fff3cd; color: #856404; }
.info-box-success { background: #d4edda; color: #155724; }

/* ── FLASH CONTAINER ────────────────────────────────────────── */
.flash-container { position: fixed; top: calc(var(--nav-h) + 12px); right: 16px; z-index: 9999; width: min(360px, calc(100vw - 32px)); }
.flash-container .alert { box-shadow: var(--shadow-md); animation: slideInRight .3s ease; }
@keyframes slideInRight { from{transform:translateX(110%);opacity:0} to{transform:translateX(0);opacity:1} }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  /* NOT "transition: all" — backdrop-filter + transition:all creates stacking context
     that traps fixed children. Only transition specific safe props. */
  transition: box-shadow .22s cubic-bezier(.4,0,.2,1), background .22s cubic-bezier(.4,0,.2,1);
}
[data-theme="dark"] .navbar { background: rgba(17,17,19,.96); border-bottom-color: rgba(255,255,255,.06); }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container { display: flex; align-items: center; height: 100%; gap: 1.5rem; }
.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { max-height: 38px; max-width: 175px; width: auto; height: auto; object-fit: contain; }
.brand-logo-light { display: block !important; }
.brand-logo-dark  { display: none  !important; }
[data-theme="dark"] .brand-logo-light { display: none  !important; }
[data-theme="dark"] .brand-logo-dark  { display: block !important; }
.brand-text { display: flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--secondary); }
.brand-text span, .brand-text-lg span, .brand-text-xl span { color: var(--primary); }
.brand-text-lg { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--secondary); }
.brand-text-xl { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--secondary); display:flex;align-items:center;gap:.4rem; }
.brand-text-xl:hover { color: var(--secondary); }

.nav-links { display: flex; align-items: center; gap: .3rem; margin: 0 auto; }
.nav-link { padding: .45rem .9rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }

.nav-actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; flex-shrink: 0; }

.lang-toggle { font-size: .78rem; font-weight: 600; }

.dark-toggle { font-size: 1rem; }

.notif-btn { position: relative; }
.notif-badge {
  position: absolute; top: 0; right: 0;
  background: var(--danger); color: #fff;
  font-size: .6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: translate(30%,-30%);
}

/* ── NAV BELL (guest only) ───────────────────────────── */
@keyframes bellRing {
  0%,55%,100% { transform: rotate(0deg); }
  5%           { transform: rotate(18deg); }
  15%          { transform: rotate(-16deg); }
  25%          { transform: rotate(13deg); }
  35%          { transform: rotate(-10deg); }
  45%          { transform: rotate(6deg); }
}
@keyframes bellDotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .6; }
}
.nav-bell-btn {
  background: none; border: none; cursor: pointer; padding: .35rem .4rem;
  color: var(--primary); font-size: 1.15rem;
  position: relative; display: inline-flex; align-items: center;
  border-radius: 8px; transition: background .15s;
}
.nav-bell-btn:hover { background: var(--primary-light); }
.nav-bell-btn i { display: inline-block; animation: bellRing 2.8s ease-in-out infinite; transform-origin: top center; }
.nav-bell-dot {
  position: absolute; top: 3px; right: 3px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; border: 1.5px solid var(--bg);
  animation: bellDotPulse 1.6s ease-in-out infinite;
}

.nav-user-menu { position: relative; }
.user-avatar-btn {
  display: flex; align-items: center; gap: .5rem;
  background: none; border: none; cursor: pointer;
  padding: .35rem .6rem; border-radius: var(--radius);
  color: var(--text); font-size: .88rem; font-weight: 500;
}
.user-avatar-btn:hover { background: var(--primary-light); }
.user-avatar-sm { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.user-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 180px; overflow: hidden; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition);
  z-index: 500;
}
.nav-user-menu:hover .user-dropdown,
.nav-user-menu:focus-within .user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.user-dropdown a {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1.1rem; font-size: .875rem; color: var(--text);
}
.user-dropdown a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-divider { height: 1px; background: var(--border); margin: .3rem 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; border-radius: var(--radius-sm); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
/* Hamburger → X when active */
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE LAYOUT ─────────────────────────────────────────────── */
main#mainContent { margin-top: var(--nav-h); min-height: calc(100vh - var(--nav-h)); }

.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem 1rem; background: var(--primary-light); color: var(--primary); border-radius: var(--radius-full); font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .8rem; }
.section-title { font-size: 2.2rem; font-weight: 700; line-height: 1.2; margin-bottom: .8rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero-section { position: relative; min-height: 88vh; display: flex; align-items: center; background: linear-gradient(135deg, #0e2044 0%, #1a4a7a 50%, #2DAAE1 100%); overflow: hidden; padding: 80px 0 40px; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero-bg.svg') center/cover no-repeat; opacity: .06; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-full); font-size: .8rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-title { font-size: 3.4rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.4rem; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: rgba(255,255,255,.85); }

.hero-img-wrap { position: relative; }
.hero-img { width: 100%; object-fit: contain; aspect-ratio: 1/1; display: block; }
.hero-card { position: absolute; background: rgba(255,255,255,.95); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-radius: var(--radius-md); padding: .8rem 1.1rem; display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow-lg); }
.hero-card-top    { top: -20px; right: -20px; }
.hero-card-bottom { bottom: 20px; left: -20px; }
.hero-card > i { font-size: 1.5rem; }
.hero-card strong { display: block; font-size: .95rem; font-weight: 700; color: #111827; }
.hero-card span   { font-size: .75rem; color: #6b7280; }
[data-theme="dark"] .hero-card { background: rgba(28,28,32,.95); border: 1px solid rgba(255,255,255,.08); }
[data-theme="dark"] .hero-card strong { color: #e8eaed; }
[data-theme="dark"] .hero-card span   { color: #9aa0ac; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 2rem 0; box-shadow: var(--shadow-sm); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat-card { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; }
.stat-icon { width: 48px; height: 48px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.stat-number { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--text); }
.stat-label  { font-size: .8rem; color: var(--text-muted); }

/* ── SERVICES GRID ───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.8rem 1.5rem;
  text-align: center; transition: var(--transition);
  display: flex; flex-direction: column; gap: .7rem;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.service-card-icon { width: 64px; height: 64px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto .5rem; }
.service-card-title { font-size: 1rem; font-weight: 600; }
.service-card-desc  { font-size: .85rem; color: var(--text-muted); flex: 1; }
.service-card-price { display: flex; flex-direction: column; align-items: center; }
.price-from   { font-size: .72rem; color: var(--text-light); }
.price-amount { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.service-btn  { margin-top: .3rem; width: 100%; justify-content: center; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-section { background: var(--primary-light); }
.steps-grid  { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem; align-items: center; }
.step-card { background: var(--bg-card); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); }
.step-number { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--primary-light); line-height: 1; margin-bottom: .5rem; }
.step-icon { font-size: 2rem; color: var(--primary); margin-bottom: .8rem; }
.step-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.step-card p  { font-size: .85rem; color: var(--text-muted); }
.step-arrow { color: var(--primary); font-size: 1.5rem; }

/* ── TRUST SECTION ───────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.trust-img-wrap { position: relative; }
.trust-img { border-radius: var(--radius-xl); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.trust-badge { position: absolute; bottom: 20px; left: -20px; background: #fff; border-radius: var(--radius-md); padding: .8rem 1.2rem; display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow-md); }
.trust-badge i { font-size: 1.5rem; color: var(--warning); }
.trust-badge strong { display: block; font-size: 1.1rem; font-weight: 700; }
.trust-badge span { font-size: .75rem; color: var(--text-muted); }
.trust-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.trust-feature { display: flex; gap: 1rem; align-items: flex-start; }
.tf-icon { width: 44px; height: 44px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.tf-body h4 { font-size: .95rem; font-weight: 600; margin-bottom: .25rem; }
.tf-body p  { font-size: .85rem; color: var(--text-muted); }

/* ── EXTRAS ──────────────────────────────────────────────────── */
.extras-section { background: var(--bg-card); padding: 60px 0; }
.extras-grid { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.extra-chip { display: flex; align-items: center; gap: .5rem; padding: .6rem 1.2rem; background: var(--primary-light); color: var(--primary-dark); border-radius: var(--radius-full); font-size: .9rem; font-weight: 500; border: 1px solid rgba(45,170,225,.2); }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.review-header { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.review-name  { font-size: .9rem; font-weight: 600; }
.review-stars { font-size: .8rem; color: var(--warning); }
.review-icon  { margin-left: auto; color: var(--primary-light); font-size: 1.5rem; }
.review-text  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: .8rem; font-style: italic; }
.review-date  { font-size: .75rem; color: var(--text-light); }

/* ── BLOG ────────────────────────────────────────────────────── */
.blog-section { background: var(--primary-light); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem; }
.blog-card { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); border: 1px solid var(--border); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-placeholder { display: flex; align-items: center; justify-content: center; background: var(--primary-light); color: var(--primary); font-size: 3rem; }
.blog-card-body { padding: 1.4rem; }
.blog-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--text-muted); margin-bottom: .7rem; }
.blog-card-title { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-read-more { font-size: .85rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: .3rem; }
.blog-read-more:hover { gap: .6rem; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%); padding: 80px 0; text-align: center; }
.cta-content { max-width: 640px; margin: 0 auto; }
.cta-icon { font-size: 3rem; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.cta-content h2 { font-size: 2.2rem; color: #fff; margin-bottom: 1rem; }
.cta-content p  { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--secondary); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .brand-text-lg { color: #fff; margin-bottom: .8rem; }
.footer-brand p { font-size: .875rem; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: .8rem; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--primary); color: #fff; }
.footer-links h4 { color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-links ul li { margin-bottom: .6rem; }
.footer-links ul li a { font-size: .85rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .4rem; }
.footer-links ul li a:hover { color: var(--primary); }
.footer-contact h4 { color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-contact p { font-size: .85rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.footer-badge { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; padding: .7rem .9rem; background: rgba(255,255,255,.05); border-radius: var(--radius); }
.footer-badge i { font-size: 1.2rem; color: var(--primary); }
.footer-badge span { font-size: .82rem; color: rgba(255,255,255,.7); }
.footer-badge small { font-size: .72rem; color: rgba(255,255,255,.5); }
/* ── Ödeme logoları şeridi ────────────────────────── */
.footer-payment-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.1rem 0 .6rem;
}
.fpp-label {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-right: .25rem;
}
.fpp-label i { color: #4ade80; font-size: .65rem; }

/* Logo konteyneri — sabit 72×34 px kutu, logo içinde ortalı */
.fpp-logos { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.fpp-logo-wrap {
    width: 72px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Beyaz zemin — logolar kendi renklerinde görünür */
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    overflow: hidden;
    transition: background .2s ease, border-color .2s ease, transform .18s ease;
}
.fpp-logo-wrap:hover {
    background: rgba(255,255,255,.95);
    border-color: rgba(255,255,255,.9);
    transform: translateY(-2px);
}
.fpp-logo {
    max-width: 58px;
    max-height: 22px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* Rengi koru, sadece opacity ile söndür —
       brightness(0) invert(1) beyaz logolu kartları görünmez yapıyordu */
    opacity: .55;
    transition: opacity .2s ease;
}
.fpp-logo-wrap:hover .fpp-logo { opacity: 1; }
/* iyzico daha geniş logosu için biraz daha yer */
.fpp-logo-wrap-iyzico { width: 80px; }
.fpp-logo-iyzico { max-width: 66px; }
/* ─────────────────────────────────────────────────── */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .8rem; }

/* ── AUTH ────────────────────────────────────────────────────── */
.auth-body { min-height: 100vh; background: var(--bg); }
.auth-wrapper { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-left {
  background: linear-gradient(145deg, #0d2137 0%, #1a4a7a 50%, #2070b8 100%);
  padding: 2.5rem 2.5rem 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.auth-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(45,170,225,.3) 0%, transparent 55%),
              radial-gradient(ellipse at 5% 90%, rgba(45,170,225,.15) 0%, transparent 50%);
  pointer-events: none;
}
.auth-left::after {
  content: ''; position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -100px; right: -80px;
  pointer-events: none;
}
.auth-left > * { position: relative; z-index: 1; }
.auth-brand { margin-bottom: 0; }
.auth-tagline { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: .4rem; letter-spacing: .01em; }
.auth-illustration { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem 0; }
.auth-illustration .auth-img { border-radius: 16px; width: 100%; max-height: 200px; object-fit: cover; margin-bottom: 1.5rem; opacity: .9; box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.auth-trust-list { display: flex; flex-direction: column; gap: .75rem; }
.auth-trust-item { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.82); font-size: .86rem; }
.auth-trust-icon { width: 34px; height: 34px; background: rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: .9rem; }
.auth-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.stat-item { text-align: center; background: rgba(255,255,255,.08); border-radius: 10px; padding: .75rem .5rem; border: 1px solid rgba(255,255,255,.1); }
.stat-item .stat-number { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: #fff; }
.stat-item span { display: block; font-size: .7rem; color: rgba(255,255,255,.55); margin-top: .15rem; }
.auth-right { display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; overflow-y: auto; }
.auth-card { width: 100%; max-width: 440px; }
.auth-form-header { margin-bottom: 2rem; }
.auth-icon-circle { width: 60px; height: 60px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.auth-icon-circle.success { background: #d4edda; color: var(--success); }
.auth-title { font-size: 1.7rem; font-weight: 700; margin-bottom: .4rem; }
.auth-subtitle { color: var(--text-muted); font-size: .9rem; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: .8rem; color: var(--text-muted); }
.auth-footer-text { text-align: center; font-size: .875rem; color: var(--text-muted); margin-top: 1rem; }
.auth-resend { text-align: center; font-size: .875rem; color: var(--text-muted); margin-top: 1rem; }
.role-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.5rem; padding: .3rem; background: var(--bg); border-radius: var(--radius-md); border: 1px solid var(--border); }
.role-tab { padding: .65rem; background: transparent; border: none; border-radius: var(--radius-sm); cursor: pointer; font-size: .875rem; font-weight: 500; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: .4rem; transition: var(--transition); }
.role-tab.active { background: var(--primary); color: #fff; }

/* ── BOOKING STEPS ───────────────────────────────────────────── */
.booking-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin: 2rem 0; }
.bp-step { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.bp-circle { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; border: 2px solid var(--border); background: var(--bg-card); color: var(--text-muted); }
.bp-step.active .bp-circle  { background: var(--primary); color: #fff; border-color: var(--primary); }
.bp-step.done   .bp-circle  { background: var(--success); color: #fff; border-color: var(--success); }
.bp-step span   { font-size: .75rem; color: var(--text-muted); white-space: nowrap; }
.bp-step.active span { color: var(--primary); font-weight: 600; }
.bp-line { flex: 1; height: 2px; background: var(--border); max-width: 80px; }
.bp-line.done { background: var(--success); }

.service-select-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1rem; }
.service-option { border: 2px solid var(--border); border-radius: var(--radius-md); padding: 1.2rem; cursor: pointer; transition: var(--transition); text-align: center; }
.service-option:hover { border-color: var(--primary); background: var(--primary-light); }
.service-option.selected { border-color: var(--primary); background: var(--primary-light); }
.service-option input[type=radio] { display: none; }
.service-option-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: .5rem; }
.service-option h4 { font-size: .9rem; font-weight: 600; }
.service-option .price { font-size: .85rem; color: var(--primary); font-weight: 600; margin-top: .3rem; }

.extras-check-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: .8rem; }
.extra-option { border: 1.5px solid var(--border); border-radius: var(--radius); padding: .9rem 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: .7rem; }
.extra-option:hover { border-color: var(--primary); }
.extra-option.selected { border-color: var(--primary); background: var(--primary-light); }
.extra-option input[type=checkbox] { display: none; }
.extra-option i { color: var(--primary); }

.booking-summary-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.summary-row:last-child { border-bottom: none; }
.summary-total { font-weight: 700; font-size: 1.1rem; }
.summary-label { color: var(--text-muted); }

/* ── SECTION CARD (DASHBOARD) ────────────────────────────────── */
.section-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.5rem; }
.section-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.section-card-header h3 { font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }

.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state i { display: block; margin-bottom: 1rem; opacity: .4; }
.empty-state h4 { font-size: 1.1rem; margin-bottom: .5rem; }
.empty-state p  { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.page-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.page-header h1 { font-size: 1.5rem; font-weight: 700; }
.page-subtitle { color: var(--text-muted); font-size: .9rem; margin-top: .2rem; }

/* ── ONBOARDING CHECKLIST WIDGET ────────────────────────────── */
.ob-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  margin-bottom: 1.5rem;
  position: relative;
}
.ob-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #22d3ee 50%, #4ade80 100%);
}
/* ── Header ── */
.ob-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem .85rem;
}
.ob-head-left {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  flex: 1;
  min-width: 0;
}
.ob-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ob-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: .22rem;
}
.ob-subtitle {
  font-size: .81rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.ob-dismiss {
  width: 28px; height: 28px;
  border: none; background: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
  transition: background .15s, color .15s;
  margin-top: -.05rem;
}
.ob-dismiss:hover { background: var(--bg); color: var(--text); }
/* ── Progress ── */
.ob-progress { padding: 0 1.5rem 1rem; }
.ob-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .45rem;
  font-size: .77rem;
}
.ob-progress-text { color: var(--text-muted); }
.ob-progress-text strong { color: var(--text); font-weight: 700; }
.ob-progress-pct { color: var(--primary); font-weight: 700; }
.ob-bar {
  height: 7px;
  background: var(--bg);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ob-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary) 0%, #22d3ee 100%);
  transition: width .7s cubic-bezier(.4,0,.2,1);
  min-width: 6px;
}
.ob-bar-fill.full {
  background: linear-gradient(90deg, #16a34a 0%, #4ade80 100%);
}
/* ── Items ── */
.ob-items { border-top: 1px solid var(--border); }
.ob-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .85rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  position: relative;
}
.ob-item:last-child { border-bottom: none; }
.ob-item.ob-done  { opacity: .7; }
.ob-item.ob-active {
  background: color-mix(in srgb, var(--primary) 5%, transparent);
}
[data-theme="dark"] .ob-item.ob-active { background: rgba(45,170,225,.08); }
/* Check circle */
.ob-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: .15rem;
  font-size: .72rem;
  transition: all .25s;
}
.ob-check.done    { background: #22c55e; color: #fff; }
.ob-check.active  { background: var(--primary); color: #fff; box-shadow: 0 0 0 4px rgba(45,170,225,.15); }
.ob-check.pending { background: var(--bg); border: 2px solid var(--border); }
/* Item body */
.ob-item-body { flex: 1; min-width: 0; }
.ob-item-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.ob-item.ob-done .ob-item-label {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
}
.ob-item-desc {
  font-size: .77rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: .2rem;
}
.ob-req { display:inline-flex;align-items:center;font-size:.67rem;font-weight:700;color:#dc2626;background:#fee2e2;border-radius:4px;padding:.05rem .35rem;margin-left:.35rem;vertical-align:middle; }
/* Item action */
.ob-item-action { flex-shrink: 0; align-self: center; }
.ob-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .38rem .9rem;
  border-radius: 8px;
  font-size: .79rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  line-height: 1.3;
}
.ob-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(45,170,225,.25);
}
.ob-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,170,225,.35);
  color: #fff;
}
.ob-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.ob-btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
/* ── Success State ── */
.ob-success {
  padding: 2.25rem 1.5rem;
  text-align: center;
}
.ob-success-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto .9rem;
  animation: obSuccessPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes obSuccessPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.ob-success-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.ob-success-sub   { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }
/* ── Mobile ── */
@media (max-width: 768px) {
  .ob-head { padding: 1.15rem 1.15rem .7rem; gap: .75rem; }
  .ob-progress { padding: 0 1.15rem .85rem; }
  .ob-item { padding: .75rem 1.15rem; gap: .65rem; }
  .ob-item-label { font-size: .85rem; }
  .ob-btn { padding: .32rem .72rem; font-size: .76rem; }
  .ob-success { padding: 1.75rem 1.15rem; }
}

/* ── STATS ROW ───────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.dash-stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: 1rem; }
.dsc-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.dsc-icon.blue   { background: #dbeafe; color: #1e40af; }
.dsc-icon.green  { background: #d1fae5; color: #065f46; }
.dsc-icon.orange { background: #ffedd5; color: #9a3412; }
.dsc-icon.purple { background: #ede9fe; color: #4c1d95; }
.dsc-icon.gold   { background: #fef3c7; color: #92400e; }
.dsc-number { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; }
.dsc-label  { font-size: .78rem; color: var(--text-muted); }

/* ── QUICK ACTIONS ───────────────────────────────────────────── */
.quick-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.qa-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.4rem 1rem; display: flex; flex-direction: column; align-items: center; gap: .7rem; text-align: center; color: var(--text-muted); transition: var(--transition); }
.qa-card:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.qa-card.qa-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.qa-card.qa-primary:hover { background: var(--primary-dark); }
.qa-card span { font-size: .82rem; font-weight: 500; }

/* ── ORDERS LIST ─────────────────────────────────────────────── */
.orders-list { display: flex; flex-direction: column; gap: .7rem; }
.order-item { display: flex; align-items: center; gap: 1rem; padding: .9rem 1rem; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); }
.order-status-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.status-pending     .order-status-dot, .order-status-dot.status-pending     { background: var(--warning); }
.status-accepted    .order-status-dot, .order-status-dot.status-accepted    { background: var(--info); }
.status-in_progress .order-status-dot, .order-status-dot.status-in_progress { background: var(--primary); }
.status-completed   .order-status-dot, .order-status-dot.status-completed   { background: var(--success); }
.status-cancelled   .order-status-dot, .order-status-dot.status-cancelled   { background: var(--danger); }
.order-body { flex: 1; min-width: 0; }
.order-service { font-size: .9rem; font-weight: 600; }
.order-meta { display: flex; flex-wrap: wrap; gap: .8rem; font-size: .78rem; color: var(--text-muted); margin-top: .2rem; }
.order-provider { font-size: .78rem; color: var(--primary); margin-top: .2rem; }
.order-price { font-size: .95rem; font-weight: 700; color: var(--primary); white-space: nowrap; }

/* ── DOC UPLOAD ──────────────────────────────────────────────── */
.doc-upload-card { margin-bottom: 1rem; }
.doc-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.doc-type-icon { width: 48px; height: 48px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.doc-type-info { flex: 1; }
.doc-type-info h3 { font-size: 1rem; font-weight: 600; }
.doc-type-info p  { font-size: .82rem; color: var(--text-muted); }
.file-drop-zone { border: 2px dashed var(--border); border-radius: var(--radius-md); padding: 1.8rem; text-align: center; cursor: pointer; transition: var(--transition); position: relative; }
.file-drop-zone:hover { border-color: var(--primary); background: var(--primary-light); }
.file-drop-zone p { font-size: .9rem; color: var(--text-muted); margin: .5rem 0 .3rem; }
.file-drop-zone span { font-size: .78rem; color: var(--text-light); }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.doc-approved-info { display: flex; align-items: center; gap: .7rem; font-size: .875rem; color: var(--success); padding: .8rem; background: #d4edda; border-radius: var(--radius); }
.doc-status-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.doc-status-item { display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; background: var(--bg); border-radius: var(--radius); }
.doc-status-item strong { display: block; font-size: .85rem; }
.doc-status-item span { font-size: .75rem; color: var(--text-muted); }

/* ── TABLE ───────────────────────────────────────────────────── */
.t360-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.t360-table thead th { background: var(--bg); padding: .8rem 1rem; text-align: left; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); border-bottom: 2px solid var(--border); white-space: nowrap; }
.t360-table tbody td { padding: .8rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.t360-table tbody tr:hover { background: var(--bg); }
.t360-table tbody tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: .3rem; margin-top: 1.5rem; }
.pagination a, .pagination span { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; border: 1px solid var(--border); color: var(--text-muted); transition: var(--transition); }
.pagination a:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.pagination span.current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: var(--bg-card); border-radius: var(--radius-lg); max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); transform: scale(.96); transition: var(--transition); }
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1.05rem; font-weight: 600; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 1.1rem; padding: .2rem .4rem; border-radius: 6px; transition: var(--transition); }
.modal-close:hover { background: var(--bg); color: var(--text); }
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; gap: .8rem; justify-content: flex-end; }

/* ── NOTIFICATION LIST ───────────────────────────────────────── */
.notification-list { display: flex; flex-direction: column; }
.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  position: relative;
}
.notification-item:last-child { border-bottom: none; }
.notification-item:hover { background: var(--bg); }
.notification-item.unread { background: var(--primary-light); }
.notification-item.unread::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary);
}
.notification-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.notification-item.unread .notification-icon { background: #fff; border-color: var(--primary); }
.notification-body { flex: 1; min-width: 0; }
.notification-title { font-size: .88rem; font-weight: 600; margin-bottom: .2rem; }
.notification-text  { font-size: .83rem; color: var(--text-muted); line-height: 1.5; }
.notification-time  { font-size: .75rem; color: var(--text-light); margin-top: .3rem; display: flex; align-items: center; gap: .3rem; }
.notification-action { flex-shrink: 0; align-self: center; }

/* ── TAB NAV ─────────────────────────────────────────────────── */
.tab-nav {
  display: flex;
  gap: .4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .35rem;
  width: fit-content;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); background: var(--bg); }
.tab-btn.active { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(45,170,225,.3); }
.tab-btn .nav-badge {
  background: var(--danger);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 99px;
  padding: .1rem .42rem;
  line-height: 1.4;
}
.tab-btn.active .nav-badge { background: rgba(255,255,255,.3); }

/* ── JOB CARDS (AVAILABLE) ───────────────────────────────────── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1rem;
}
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-2px); }
.job-card.accepted { opacity: .5; pointer-events: none; }
.job-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.1rem .7rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.job-service-badge {
  font-size: .78rem;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--primary);
  padding: .25rem .7rem;
  border-radius: 99px;
}
.job-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-head);
}
.job-card-body {
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.job-detail-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.job-detail-row i { width: 14px; flex-shrink: 0; margin-top: .18rem; font-size: .78rem; }
.job-detail-row strong { color: var(--text); }
.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1rem;
  border-top: 1px solid var(--border);
  gap: .5rem;
}
.job-earning {
  font-size: .84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.job-earning strong { color: var(--success); font-size: .95rem; }
.job-actions { display: flex; gap: .4rem; }

/* ── MY JOBS LIST ────────────────────────────────────────────── */
.my-jobs-list { display: flex; flex-direction: column; gap: .6rem; }
.my-job-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.my-job-item:hover { box-shadow: var(--shadow); }
.my-job-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.my-job-body { flex: 1; min-width: 0; }
.my-job-service { font-size: .9rem; font-weight: 600; margin-bottom: .2rem; }
.my-job-meta { display: flex; flex-wrap: wrap; gap: .6rem; font-size: .78rem; color: var(--text-muted); }
.my-job-meta i { color: var(--primary); }
.my-job-earning { font-size: .9rem; font-weight: 700; color: var(--success); white-space: nowrap; }
.my-job-actions { display: flex; gap: .4rem; align-items: center; flex-shrink: 0; }

/* Filter bar */
.jobs-filter-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .my-job-item { flex-wrap: wrap; }
}

/* ── PROFILE PAGE ────────────────────────────────────────────── */
.profile-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}
/* Hero sidebar */
.profile-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.profile-hero-banner {
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.profile-hero-body {
  padding: 0 1.4rem 1.4rem;
  text-align: center;
}
.profile-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-top: -44px;
  margin-bottom: .75rem;
}
.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-card);
  display: block;
  box-shadow: var(--shadow);
}
.profile-avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  cursor: pointer;
  color: #fff;
  font-size: .85rem;
}
.profile-avatar-wrap:hover .profile-avatar-overlay { opacity: 1; }
.profile-hero-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .35rem;
}
.profile-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.profile-hero-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}
.profile-hero-meta {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  text-align: left;
}
.profile-hero-meta-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  color: var(--text-muted);
  overflow: hidden;
}
.profile-hero-meta-item i {
  width: 16px;
  color: var(--primary);
  flex-shrink: 0;
  text-align: center;
}
.profile-hero-meta-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profile-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 1rem;
}
.profile-hero-stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: .65rem .5rem;
  text-align: center;
}
.profile-hero-stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
}
.profile-hero-stat-lbl {
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: .15rem;
}
/* Form section cards */
.profile-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.profile-section-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.profile-section-head-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.profile-section-head-icon.blue   { background: #dbeafe; color: #1e40af; }
.profile-section-head-icon.green  { background: #d1fae5; color: #065f46; }
.profile-section-head-icon.orange { background: #ffedd5; color: #9a3412; }
.profile-section-head-icon.purple { background: #ede9fe; color: #4c1d95; }
.profile-section-head h3 { font-size: .9rem; font-weight: 600; margin: 0; }
.profile-section-body { padding: 1.4rem; }
.profile-form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.profile-form-row.col-2 { grid-template-columns: 1fr 1fr; }
.profile-form-row.col-3 { grid-template-columns: 1fr 1fr 1fr; }
.profile-actions {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  padding-top: .5rem;
}
@media (max-width: 960px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-hero { position: static; }
  .profile-hero-banner { height: 60px; }
  .profile-hero-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .profile-form-row.col-2,
  .profile-form-row.col-3 { grid-template-columns: 1fr; }
  .profile-hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ── ERROR PAGE ──────────────────────────────────────────────── */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.error-container { text-align: center; max-width: 480px; padding: 2rem; }
.error-icon { margin-bottom: 1rem; }
.error-code  { font-size: 6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.error-title { font-size: 1.5rem; font-weight: 700; margin-bottom: .8rem; }
.error-msg   { color: var(--text-muted); margin-bottom: 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (public pages) ────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%); color: #fff; padding: 80px 0 60px; text-align: center; margin-bottom: 0; }
.page-hero h1 { font-size: 2.6rem; font-weight: 800; color: #fff; margin-bottom: .8rem; }
.page-hero p  { font-size: 1.1rem; color: rgba(255,255,255,.8); }

/* ── PRICING SECTION ─────────────────────────────────────────── */
.pricing-section { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1.2rem; margin-bottom: 1.5rem; }
.pricing-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem 1.2rem;
  text-align: center; transition: var(--transition); position: relative; cursor: pointer;
}
.pricing-card:hover, .pricing-card.popular { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.popular { border-color: var(--primary); background: linear-gradient(160deg,#f0f9ff,#fff); }
.pricing-popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: .2rem .9rem; border-radius: var(--radius-full); font-size: .72rem; font-weight: 700; white-space: nowrap; }
.pricing-room { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.pricing-recommend { font-size: .78rem; color: var(--text-muted); margin-bottom: .8rem; }
.pricing-price { font-size: 1.7rem; font-weight: 800; color: var(--primary); line-height: 1; }
.pricing-price sub { font-size: .7rem; vertical-align: middle; font-weight: 500; color: var(--text-muted); }
.pricing-includes { font-size: .78rem; color: var(--text-muted); margin-top: .5rem; }
.pricing-note { text-align: center; font-size: .85rem; color: var(--text-muted); margin-top: 1.5rem; padding: 1rem; background: var(--primary-light); border-radius: var(--radius); }

/* ── INCLUDED SERVICES — artık blob card (stiller home.php <style> bloğunda) ── */

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; cursor: pointer; font-size: .95rem; font-weight: 600;
  color: var(--text); gap: 1rem; user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--primary); font-size: .8rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 1.4rem 1.2rem; font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── CITIES ──────────────────────────────────────────────────── */
.cities-section { background: var(--primary-light); padding: 40px 0; }
.city-chips { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.city-chip { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.2rem; background: var(--bg-card); color: var(--text); border-radius: 50px; font-size: .85rem; font-weight: 600; border: 2px solid var(--border); transition: var(--transition); box-shadow: var(--shadow-sm); }
.city-chip.active { border-color: var(--primary); color: var(--primary); }
.city-chip.active i { color: var(--primary); }
.city-chip.soon { opacity: .62; border-style: dashed; font-weight: 500; color: var(--text-muted); }
.city-chip.soon em { font-style: normal; font-size: .7rem; background: var(--border); color: var(--text-muted); padding: .1rem .4rem; border-radius: 20px; margin-left: .15rem; }
.city-chip.soon i { color: #94a3b8; }
.city-chip:hover { transform: translateY(-2px); }

/* ── BOOKING LAYOUT ──────────────────────────────────────────── */
.booking-wrap { padding: 2rem 0; }
.booking-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.booking-main {}
.booking-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }

.booking-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; gap: 0; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.step-circle { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; border: 2px solid var(--border); background: var(--bg-card); color: var(--text-muted); transition: var(--transition); }
.step-item.active .step-circle { background: var(--primary); color: #fff; border-color: var(--primary); }
.step-item.done   .step-circle { background: var(--success); color: #fff; border-color: var(--success); }
.step-label { font-size: .72rem; color: var(--text-muted); white-space: nowrap; }
.step-item.active .step-label { color: var(--primary); font-weight: 600; }
.step-connector { flex: 1; height: 2px; background: var(--border); max-width: 80px; }

/* Service type card grid */
.service-type-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.service-category-section h4 { font-size: .85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.service-type-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 1rem; }
.service-type-card {
  border: 2px solid var(--border); border-radius: var(--radius-md);
  padding: 1.2rem 1rem; text-align: center; cursor: pointer;
  transition: var(--transition); background: var(--bg-card);
}
.service-type-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-type-card.selected { border-color: var(--primary); background: var(--primary-light); box-shadow: 0 0 0 3px rgba(45,170,225,.15); }
.stc-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: .5rem; }
.stc-name { font-size: .88rem; font-weight: 600; margin-bottom: .25rem; }
.stc-price { font-size: .78rem; color: var(--text-muted); }
.service-type-card.selected .stc-price { color: var(--primary); font-weight: 600; }

/* Counter */
.counter-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.counter-item { display: flex; flex-direction: column; gap: .5rem; }
.counter-item label { font-size: .85rem; font-weight: 500; }
.counter-control { display: flex; align-items: center; gap: .5rem; }
.counter-btn { width: 36px; height: 36px; border: 2px solid var(--border); background: var(--bg-card); color: var(--text); border-radius: var(--radius-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: var(--transition); }
.counter-btn:hover { border-color: var(--primary); color: var(--primary); }
.counter-input { width: 60px; text-align: center; padding: .45rem; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; background: var(--bg-card); color: var(--text); }
.counter-input:focus { outline: none; border-color: var(--primary); }

/* Extras in booking */
.extras-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: .8rem; }
.extra-item { border: 2px solid var(--border); border-radius: var(--radius-md); padding: .9rem; cursor: pointer; transition: var(--transition); text-align: center; }
.extra-item:hover { border-color: var(--primary); background: var(--primary-light); }
.extra-item:has(.extra-check:checked) { border-color: var(--primary); background: var(--primary-light); }
.extra-icon { font-size: 1.4rem; color: var(--primary); margin-bottom: .4rem; }
.extra-name { font-size: .82rem; font-weight: 600; margin-bottom: .2rem; }
.extra-price { font-size: .78rem; color: var(--primary); font-weight: 600; }
.extra-check { display: none; }

/* Price summary card */
.price-card { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.price-table { border-collapse: collapse; }
.price-table td { padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .price-total td { font-size: 1rem; font-weight: 700; padding-top: .8rem; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.about-text .lead { font-size: 1.05rem; font-weight: 500; color: var(--text-muted); margin-bottom: 1rem; }
.about-text p { font-size: .9rem; color: var(--text-muted); margin-bottom: .8rem; }
.rounded-img { border-radius: var(--radius-xl); width: 100%; object-fit: cover; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 1.5rem; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.8rem 1.5rem; text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 60px; height: 60px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; }
.value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.value-card p  { font-size: .85rem; color: var(--text-muted); }
.how-it-works { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem; align-items: center; }
.how-step { background: var(--bg-card); border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); }
.how-step-number { width: 48px; height: 48px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto .8rem; }
.how-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.how-step p  { font-size: .85rem; color: var(--text-muted); }
.how-connector { color: var(--primary); font-size: 1.5rem; text-align: center; }
.section.bg-light { background: var(--bg); }

/* ── MISC ────────────────────────────────────────────────────── */
.form-control { width: 100%; padding: .72rem 1rem; background: var(--bg-card); color: var(--text); border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .92rem; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,170,225,.12); }
.form-select { width: 100%; padding: .72rem 1rem; background: var(--bg-card); color: var(--text); border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .92rem; transition: var(--transition); cursor: pointer; }
.form-select:focus { outline: none; border-color: var(--primary); }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); }
.card-header { padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border); }
.card-header h3 { font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.card-body { padding: 1.4rem; }
.card-footer { padding: .9rem 1.4rem; border-top: 1px solid var(--border); }
.mb-3 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 1.5rem; } .mb-5 { margin-bottom: 2.5rem; }
.mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; }
.row { display: grid; gap: 1rem; }
.col-6 { grid-column: span 1; }
.row:has(.col-6) { grid-template-columns: 1fr 1fr; }
@media(max-width:540px) { .row:has(.col-6) { grid-template-columns: 1fr; } }

/* Hizmetler page list */
.services-list { display: flex; flex-direction: column; gap: 1rem; }

/* Service detail cards (hizmetler page) */
.service-detail-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; display: flex; align-items: center; gap: 1.2rem; transition: var(--transition); }
.service-detail-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.service-detail-icon { width: 56px; height: 56px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.service-detail-body { flex: 1; min-width: 0; }
.service-detail-body h3 { font-size: .95rem; font-weight: 600; margin-bottom: .25rem; }
.service-detail-body p  { font-size: .82rem; color: var(--text-muted); margin-bottom: .4rem; }
.service-pricing { font-size: .85rem; }
.service-base-price strong { color: var(--primary); font-size: 1.05rem; }
.service-detail-action { flex-shrink: 0; }

/* Extra showcase */
.extras-showcase { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 1rem; }
.extra-showcase-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.2rem; text-align: center; transition: var(--transition); }
.extra-showcase-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.extra-showcase-card i { font-size: 1.6rem; margin-bottom: .5rem; }
.extra-showcase-card h4 { font-size: .85rem; font-weight: 600; margin-bottom: .3rem; }
.extra-showcase-price { font-size: .85rem; color: var(--primary); font-weight: 600; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form-wrap, .contact-info-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* cta-section for public pages */
.section.cta-section { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%); text-align: center; }
.section.cta-section h2 { color: #fff; font-size: 2rem; margin-bottom: .8rem; }
.section.cta-section p  { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

/* Blog */
.blog-index-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.blog-sidebar-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.4rem; margin-bottom: 1.2rem; }
.blog-sidebar-card h3 { font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.recent-post { display: flex; gap: .7rem; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .82rem; }
.recent-post:last-child { border-bottom: none; }
.recent-post a { color: var(--text); font-weight: 500; }
.recent-post a:hover { color: var(--primary); }
.recent-post span { color: var(--text-muted); font-size: .75rem; display: block; margin-top: .15rem; }
.category-tag { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .8rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-full); font-size: .78rem; color: var(--text-muted); margin: .2rem; transition: var(--transition); }
.category-tag:hover, .category-tag.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; text-align: center; }
  .step-arrow { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-img-wrap { max-width: 480px; margin: 0 auto; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .quick-actions { grid-template-columns: repeat(2,1fr); }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr; }
  .how-connector { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-index-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-title { font-size: 2rem; }

  /* ── Mobilde backdrop-filter kapat: iOS/Safari'de backdrop-filter olan
     bir parent içindeki position:fixed child'lar viewport'a değil
     parent'a göre konumlanır — bu menünün sayfanın arkasında kalmasına yol açar */
  .navbar {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: var(--bg-card) !important;
  }
  [data-theme="dark"] .navbar {
    background: #111113 !important;
  }

  /* ── Mobil menü: body'e taşınacak, z-index çok yüksek tutulur */
  /* ── Mobil Menü: Sağ Side Drawer ── */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: min(300px, 88vw);
    z-index: 9500;
    background: var(--bg-card);
    padding: 0;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(110%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.18);
    visibility: hidden;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Drawer header */
  .nav-drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
  }
  .nav-drawer-close {
    width: 34px; height: 34px;
    border: none; background: var(--bg);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    transition: background .15s, color .15s;
    flex-shrink: 0;
  }
  .nav-drawer-close:hover { background: var(--primary-light); color: var(--primary); }

  /* Nav linkleri drawer içinde */
  .nav-links .nav-link {
    padding: .9rem 1.25rem;
    border-radius: 0;
    font-size: .95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    display: flex; align-items: center; gap: .65rem;
  }
  .nav-links .nav-link:hover  { background: var(--primary-light); color: var(--primary); }
  .nav-links .nav-link.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

  /* Backdrop */
  .nav-mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9400;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .nav-mobile-backdrop.open { display: block; }

  .nav-toggle { display: flex; }
  .nav-register-btn { display: none !important; }
  .nav-login-btn    { display: none !important; }
  .auth-wrapper { grid-template-columns: 1fr; }
  .auth-left { display: none !important; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-type-cards { grid-template-columns: repeat(2,1fr); }
  .page-hero h1 { font-size: 1.8rem; }
}
/* Mobile-only auth block */
.nav-mobile-auth { display: none; }
@media (max-width: 768px) {
  .nav-mobile-auth {
    display: flex !important;
    flex-direction: column;
    gap: .65rem;
    padding: 1.15rem 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
    flex-shrink: 0;
  }
}
/* Drawer header: sadece mobilde göster */
.nav-drawer-header { display: none; }

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .quick-actions { grid-template-columns: repeat(2,1fr); }
  .doc-status-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .service-type-cards { grid-template-columns: repeat(2,1fr); }
  .counter-row { gap: 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING WIZARD MODAL — v2 (Conversion-Optimised, 6-Step)
   ══════════════════════════════════════════════════════════════ */

/* ── OVERLAY & SHELL ─────────────────────────────────────────── */
.bwiz-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9000;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.bwiz-overlay.open { opacity: 1; visibility: visible; }

.bwiz {
  background: #fff; border-radius: 20px; width: 100%; max-width: 620px;
  height: min(88vh, 720px); max-height: 88vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  transform: translateY(28px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.bwiz-overlay.open .bwiz { transform: none; }

/* ── HEADER ──────────────────────────────────────────────────── */
.bwiz-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.1rem; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}
.bwiz-header-step {
  font-size: .72rem; font-weight: 600; color: var(--primary);
  background: #e8f4fd; padding: .2rem .65rem; border-radius: 20px;
}
.bwiz-btn-icon {
  width: 34px; height: 34px; border: none; background: #f5f5f5; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: .88rem; color: #555; transition: background .15s; flex-shrink: 0;
}
.bwiz-btn-icon:hover { background: #e8e8e8; }
.bwiz-btn-icon[data-hidden="1"] { opacity: 0; pointer-events: none; }

/* ── PROGRESS ────────────────────────────────────────────────── */
.bwiz-progress { height: 3px; background: #eee; flex-shrink: 0; }
.bwiz-progress-fill { height: 100%; background: var(--primary); transition: width .4s ease; width: 0; }

/* ── STEP TITLE AREA ─────────────────────────────────────────── */
.bwiz-step-header { padding: .95rem 1.4rem .25rem; flex-shrink: 0; }
.bwiz-step-header h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .18rem; }
.bwiz-step-header p  { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ── STEPS AREA ──────────────────────────────────────────────── */
.bwiz-steps-area { flex: 1; min-height: 0; overflow-y: auto; padding: 1rem 1.4rem 1.6rem; scroll-behavior: smooth; }
.bwiz-step { display: none; }
.bwiz-step.active { display: block; animation: wzFadeIn .22s ease; }
@keyframes wzFadeIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

/* ── STEP ERROR ──────────────────────────────────────────────── */
.wz-step-error {
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
  border-radius: 8px; padding: .55rem .9rem; font-size: .8rem; margin-bottom: .8rem;
  display: flex; align-items: center; gap: .5rem;
}

/* ══════════════════════════════════════════
   STEP 1: HİZMET + SÜRE
   ══════════════════════════════════════════ */
.bwiz-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-bottom: 1.2rem; }
.bwiz-svc-card {
  border: 2px solid #e5e7eb; border-radius: 14px; padding: .9rem .7rem;
  cursor: pointer; text-align: center; position: relative; transition: all .18s;
}
.bwiz-svc-card:hover { border-color: var(--primary); background: #f8fbff; }
.bwiz-svc-card.selected { border-color: var(--primary); background: #f0f8ff; }
.bwiz-svc-card .wz-popular {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: #f97316; color: #fff; font-size: .6rem; font-weight: 700;
  padding: .15rem .55rem; border-radius: 20px; white-space: nowrap;
}
.bwiz-svc-card i      { font-size: 1.9rem; color: var(--primary); margin-bottom: .35rem; display: block; }
.bwiz-svc-card strong { display: block; font-size: .82rem; font-weight: 600; line-height: 1.3; }

/* Hours selector */
.bwiz-hours-section {
  background: #f8fafc; border-radius: 14px; padding: 1rem 1.1rem; margin-bottom: 1rem;
}
.bwiz-hours-section h4 {
  font-size: .72rem; font-weight: 700; margin: 0 0 .7rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em;
}
.bwiz-h-slots { display: flex; gap: .35rem; }
.bwiz-h-slot {
  flex: 1; padding: .5rem .25rem; border: 2px solid #e5e7eb; border-radius: 10px;
  text-align: center; cursor: pointer; transition: all .15s; position: relative;
}
.bwiz-h-slot:hover  { border-color: var(--primary); }
.bwiz-h-slot.selected { border-color: var(--primary); background: var(--primary); color: #fff; }
.bwiz-h-slot .h-val { font-size: .88rem; font-weight: 700; display: block; }
.bwiz-h-slot .h-lbl { font-size: .62rem; display: block; }
.bwiz-h-slot .h-pop { font-size: .58rem; color: #f97316; font-weight: 700; display: block; margin-top: .1rem; }
.bwiz-h-slot.selected .h-pop { color: rgba(255,255,255,.75); }

/* Live price */
.bwiz-price-live {
  background: linear-gradient(135deg, var(--primary) 0%, #1a8fc7 100%);
  color: #fff; border-radius: 14px; padding: .85rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.bwiz-price-live-left small    { display: block; font-size: .68rem; opacity: .85; }
.bwiz-price-live-left strong   { display: block; font-size: .82rem; font-weight: 600; }
.bwiz-price-live-right         { font-size: 1.65rem; font-weight: 800; }

/* ══════════════════════════════════════════
   STEP 2: TARİH & SAAT
   ══════════════════════════════════════════ */
.bwiz-cal-wrap { background: #f8fafc; border-radius: 14px; padding: 1rem; margin-bottom: 1rem; }
.bwiz-cal-nav-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: .7rem;
}
.bwiz-cal-nav-row span { font-size: .88rem; font-weight: 600; }
.bwiz-cal-nav {
  width: 30px; height: 30px; border: 1.5px solid #e5e7eb; border-radius: 8px;
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .78rem;
}
.wz-cal-header { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 4px; }
.wz-cal-dayname { text-align: center; font-size: .62rem; font-weight: 600; color: #9ca3af; padding: .15rem 0; }
.wz-cal-body { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.wz-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .73rem; border-radius: 7px; cursor: pointer; transition: all .15s;
}
.wz-cal-day:hover:not(.wz-cal-day--disabled):not(.wz-cal-day--other) { background: #dbeafe; }
.wz-cal-day--other    { color: transparent; cursor: default; font-size: .62rem; background: transparent !important; }
.wz-cal-day--disabled { color: #e5e7eb; cursor: default; font-size: .68rem; }
.wz-cal-day--selected { background: var(--primary) !important; color: #fff; font-weight: 700; border-radius: 8px; }
.wz-cal-day--today    { border: 1.5px solid var(--primary); font-weight: 600; }
.bwiz-selected-date { font-size: .78rem; font-weight: 600; color: var(--primary); text-align: center; margin-top: .55rem; }

.bwiz-time-label { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.bwiz-time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
.bwiz-t-slot {
  padding: .6rem .25rem; border: 2px solid #e5e7eb; border-radius: 10px;
  text-align: center; font-size: .78rem; font-weight: 500; cursor: pointer;
  transition: all .15s; position: relative;
}
.bwiz-t-slot:hover  { border-color: var(--primary); }
.bwiz-t-slot.selected { border-color: var(--primary); background: var(--primary); color: #fff; font-weight: 700; }
.bwiz-t-slot.recommended::before {
  content: "★"; position: absolute; top: -7px; right: 4px;
  font-size: .55rem; color: #f97316;
}
.bwiz-t-slot.selected.recommended::before { color: rgba(255,215,0,.9); }

/* ── DATETIME 2-COLUMN GRID ──────────────────────────────────── */
.bwiz-dt-grid { display: flex; flex-direction: column; gap: .8rem; }
.bwiz-dt-times .bwiz-time-label { margin-top: 0; }
.bwiz-dt-times { display: flex; flex-direction: column; gap: .5rem; }

@media (min-width: 601px) {
  .bwiz-dt-grid { flex-direction: row; align-items: flex-start; gap: 1rem; }
  .bwiz-dt-grid > div:first-child { flex: 0 0 54%; }
  .bwiz-dt-times { flex: 1; min-width: 0; }
  .bwiz-cal-wrap { margin-bottom: 0; }
}

/* ── EXTRAS GRID ──────────────────────────────────────────────── */
.bwiz-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: .45rem;
}
.bwiz-extra-grid .bwiz-opt-btn { flex: none; }

/* ══════════════════════════════════════════
   STEP 3: DETAYLAR
   ══════════════════════════════════════════ */
.bwiz-detail-sec  { margin-bottom: 1.1rem; }
.bwiz-detail-lbl  { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.bwiz-opt-row { display: flex; gap: .45rem; }
.bwiz-opt-btn {
  flex: 1; padding: .7rem .3rem; border: 2px solid #e5e7eb; border-radius: 12px;
  text-align: center; cursor: pointer; transition: all .15s; background: #fff;
}
.bwiz-opt-btn:hover { border-color: var(--primary); }
.bwiz-opt-btn.selected { border-color: var(--primary); background: #f0f8ff; }
.bwiz-opt-btn i    { display: block; font-size: 1.3rem; margin-bottom: .25rem; color: #9ca3af; }
.bwiz-opt-btn.selected i { color: var(--primary); }
.bwiz-opt-btn span { font-size: .72rem; font-weight: 500; display: block; }

.bwiz-worker-row { display: flex; align-items: center; gap: .9rem; }
.bwiz-wk-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--primary);
  background: #fff; color: var(--primary); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.bwiz-wk-btn:hover { background: var(--primary); color: #fff; }
.bwiz-wk-val { font-size: 1.45rem; font-weight: 700; min-width: 40px; text-align: center; }

.bwiz-textarea {
  width: 100%; border: 2px solid #e5e7eb; border-radius: 10px; padding: .65rem .85rem;
  font-size: .85rem; font-family: inherit; resize: vertical; min-height: 70px;
  transition: border-color .15s; box-sizing: border-box;
}
.bwiz-textarea:focus { border-color: var(--primary); outline: none; }

/* ══════════════════════════════════════════
   STEP 4: ADRES + GİRİŞ
   ══════════════════════════════════════════ */
.bwiz-auth-section { background: #f8fafc; border-radius: 14px; padding: .9rem 1rem; margin-bottom: 1rem; }
.bwiz-auth-section h4 { font-size: .78rem; font-weight: 700; margin: 0 0 .7rem; }
.bwiz-input-wrap { margin-bottom: .65rem; }
.bwiz-input-wrap label { display: block; font-size: .72rem; font-weight: 600; color: var(--text-muted); margin-bottom: .28rem; }
.bwiz-input-field {
  width: 100%; border: 2px solid #e5e7eb; border-radius: 10px; padding: .65rem .85rem;
  font-size: .87rem; font-family: inherit; transition: border-color .15s; box-sizing: border-box;
}
.bwiz-input-field:focus { border-color: var(--primary); outline: none; }
.bwiz-input-2col { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }

/* Phone + OTP */
.bwiz-phone-row { display: flex; gap: .5rem; }
.bwiz-phone-row .bwiz-input-field { flex: 1; }
.bwiz-send-btn {
  padding: .65rem .9rem; background: var(--primary); color: #fff; border: none;
  border-radius: 10px; font-size: .8rem; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: background .15s; flex-shrink: 0;
}
.bwiz-send-btn:hover    { background: #1a8fc7; }
.bwiz-send-btn:disabled { opacity: .6; cursor: not-allowed; }

.bwiz-otp-section { margin-top: .8rem; animation: wzFadeIn .2s ease; }
.bwiz-otp-hint { font-size: .73rem; color: var(--text-muted); margin-bottom: .55rem; }
.bwiz-otp-digits { display: flex; gap: .38rem; margin-bottom: .7rem; }
.bwiz-otp-d {
  width: 44px; height: 52px; border: 2px solid #e5e7eb; border-radius: 10px;
  text-align: center; font-size: 1.3rem; font-weight: 700; font-family: inherit;
  transition: border-color .15s;
}
.bwiz-otp-d:focus { border-color: var(--primary); outline: none; }
.bwiz-verify-btn {
  width: 100%; padding: .7rem; background: #16a34a; color: #fff; border: none;
  border-radius: 10px; font-size: .88rem; font-weight: 600; cursor: pointer; transition: background .15s;
}
.bwiz-verify-btn:hover { background: #15803d; }

.bwiz-auth-ok {
  display: flex; align-items: center; gap: .5rem; background: #f0fdf4;
  border: 1.5px solid #86efac; border-radius: 10px; padding: .6rem .85rem;
  font-size: .8rem; color: #166534; margin-top: .65rem;
}

/* Auth divider + Google button */
.bwiz-auth-divider {
  display: flex; align-items: center; gap: .6rem;
  margin: .85rem 0 .65rem; color: #9ca3af; font-size: .75rem;
}
.bwiz-auth-divider::before,
.bwiz-auth-divider::after {
  content: ''; flex: 1; height: 1px; background: #e5e7eb;
}
.bwiz-google-btn {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  width: 100%; padding: .7rem 1rem; border: 1.5px solid #dadce0;
  border-radius: 10px; background: #fff; color: #3c4043;
  font-size: .85rem; font-weight: 500; text-decoration: none;
  cursor: pointer; transition: background .2s, box-shadow .2s;
}
.bwiz-google-btn:hover {
  background: #f8faff; box-shadow: 0 1px 6px rgba(60,64,67,.2);
}

/* Address cards */
.bwiz-addr-list { display: flex; flex-direction: column; gap: .45rem; margin-bottom: .7rem; }
.bwiz-addr-card {
  border: 2px solid #e5e7eb; border-radius: 12px; padding: .7rem .9rem;
  cursor: pointer; display: flex; align-items: flex-start; gap: .65rem; transition: all .15s;
}
.bwiz-addr-card:hover  { border-color: var(--primary); }
.bwiz-addr-card.selected { border-color: var(--primary); background: #f0f8ff; }
.bwiz-addr-radio {
  width: 17px; height: 17px; border-radius: 50%; border: 2px solid #d1d5db;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; transition: border-color .15s;
}
.bwiz-addr-card.selected .bwiz-addr-radio { border-color: var(--primary); }
.bwiz-addr-radio::after {
  content: ""; display: block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--primary); opacity: 0; transition: opacity .15s;
}
.bwiz-addr-card.selected .bwiz-addr-radio::after { opacity: 1; }
.bwiz-addr-body strong { display: block; font-size: .82rem; font-weight: 600; }
.bwiz-addr-body p { font-size: .73rem; color: var(--text-muted); margin: .1rem 0 0; }

.bwiz-new-addr-btn {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600;
  color: var(--primary); cursor: pointer; background: none; border: none; padding: 0; margin-bottom: .7rem;
}
.bwiz-save-addr-lbl {
  display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--text-muted);
  margin-top: .5rem; cursor: pointer;
}
.bwiz-save-addr-lbl input[type="checkbox"] { accent-color: var(--primary); width: 15px; height: 15px; }

/* ══════════════════════════════════════════
   STEP 5: PERİYOT
   ══════════════════════════════════════════ */
.bwiz-period-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.bwiz-period-card {
  border: 2px solid #e5e7eb; border-radius: 14px; padding: .75rem .9rem;
  cursor: pointer; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .2rem; transition: all .15s;
}
.bwiz-period-card:hover  { border-color: var(--primary); }
.bwiz-period-card.selected { border-color: var(--primary); background: #f0f8ff; }
.bwiz-period-card strong { display: block; font-size: .86rem; font-weight: 600; }
.bwiz-period-card small  { font-size: .72rem; color: var(--text-muted); }
.bwiz-period-badge { background: #dcfce7; color: #166534; font-size: .67rem; font-weight: 700; padding: .2rem .6rem; border-radius: 20px; margin-top: .15rem; }

/* Periyot alt seçenekleri */
.bwiz-period-opts-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .75rem; }
.bwiz-freq-btn, .bwiz-dur-btn {
  padding: .38rem .8rem; border: 2px solid #e5e7eb; border-radius: 8px;
  background: #fff; font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .15s;
  color: #374151;
}
.bwiz-freq-btn:hover, .bwiz-dur-btn:hover { border-color: var(--primary); color: var(--primary); }
.bwiz-freq-btn.active, .bwiz-dur-btn.active {
  border-color: var(--primary); background: var(--primary); color: #fff;
}

/* ══════════════════════════════════════════
   STEP 6: ÖDEME + ÖZET
   ══════════════════════════════════════════ */
.bwiz-order-summary { background: #f8fafc; border-radius: 14px; padding: .85rem 1rem; margin-bottom: .9rem; }
.bwiz-os-row { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: .38rem; }
.bwiz-os-row:last-child { margin-bottom: 0; }
.bwiz-os-divider { height: 1px; background: #e5e7eb; margin: .5rem 0; }
.bwiz-os-total { font-weight: 700; font-size: .92rem; color: var(--primary); }

.bwiz-coupon-row { display: flex; gap: .5rem; margin-bottom: .75rem; }
.bwiz-coupon-row input { flex: 1; }
.bwiz-coupon-row button {
  padding: .65rem .9rem; background: #f1f5f9; border: 2px solid #e5e7eb;
  border-radius: 10px; font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .15s;
}
.bwiz-coupon-row button:hover { border-color: var(--primary); color: var(--primary); }
.bwiz-coupon-applied { font-size: .73rem; color: #16a34a; font-weight: 600; margin-top: -.4rem; margin-bottom: .65rem; }

.bwiz-pay-lbl { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.bwiz-pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .9rem; }
.bwiz-pay-method {
  border: 2px solid #e5e7eb; border-radius: 12px; padding: .75rem;
  text-align: center; cursor: pointer; font-size: .82rem; font-weight: 500;
  transition: all .15s; display: flex; flex-direction: column; align-items: center; gap: .3rem;
}
.bwiz-pay-method:hover  { border-color: var(--primary); }
.bwiz-pay-method.selected { border-color: var(--primary); background: #f0f8ff; }
.bwiz-pay-method i { font-size: 1.35rem; color: #9ca3af; }
.bwiz-pay-method.selected i { color: var(--primary); }

.bwiz-card-icons { display: flex; gap: .5rem; margin-bottom: .7rem; align-items: center; }
.bwiz-card-icons i    { font-size: 1.55rem; color: #94a3b8; }
.bwiz-card-icons span { font-size: .68rem; color: #94a3b8; }

/* Bank transfer */
.bwiz-transfer-box {
  background: #f8fafc; border: 1.5px solid #e5e7eb;
  border-radius: 14px; padding: .95rem 1.1rem; animation: wzFadeIn .2s ease;
}
.bwiz-tr-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .45rem 0; border-bottom: 1px solid #f0f0f0;
}
.bwiz-tr-row:last-child { border-bottom: none; }
.bwiz-tr-label { font-size: .7rem; color: var(--text-muted); }
.bwiz-tr-value { font-size: .8rem; font-weight: 600; display: flex; align-items: center; gap: .4rem; }
.bwiz-copy-btn {
  background: none; border: 1.5px solid var(--primary); color: var(--primary);
  padding: .18rem .5rem; border-radius: 6px; font-size: .65rem; font-weight: 600;
  cursor: pointer; transition: all .15s; flex-shrink: 0;
}
.bwiz-copy-btn:hover { background: var(--primary); color: #fff; }

.bwiz-transfer-alert {
  background: #fffbeb; border: 1.5px solid #fcd34d; border-radius: 10px;
  padding: .6rem .85rem; font-size: .76rem; color: #92400e; margin-top: .7rem;
  display: flex; gap: .45rem; align-items: flex-start;
}

.bwiz-countdown-box {
  background: #fff7ed; border: 1.5px solid #fdba74; border-radius: 10px;
  padding: .6rem .9rem; display: flex; align-items: center; justify-content: space-between;
  margin-top: .6rem;
}
.bwiz-countdown-label { font-size: .71rem; color: #9a3412; }
.bwiz-countdown-time  { font-size: 1.1rem; font-weight: 800; color: #c2410c; font-variant-numeric: tabular-nums; }

.bwiz-paid-btn {
  width: 100%; margin-top: .7rem; padding: .75rem;
  background: #16a34a; color: #fff; border: none; border-radius: 12px;
  font-size: .88rem; font-weight: 700; cursor: pointer; transition: background .15s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.bwiz-paid-btn:hover { background: #15803d; }

/* ── STICKY FOOTER ───────────────────────────────────────────── */
.bwiz-footer {
  padding: .8rem 1.3rem; border-top: 1px solid #f0f0f0;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  flex-shrink: 0; background: #fff;
}
.bwiz-footer-price { display: flex; flex-direction: column; }
.bwiz-footer-label  { font-size: .65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.bwiz-footer-amount { font-size: 1.2rem; font-weight: 800; color: var(--primary); line-height: 1.15; }
#wizardNextBtn { min-width: 125px; justify-content: center; padding: .68rem 1.3rem; font-size: .9rem; }

/* ── DOTS ────────────────────────────────────────────────────── */
.bwiz-dots { display: flex; gap: .35rem; align-items: center; }
.wz-dot { width: 7px; height: 7px; border-radius: 50%; background: #d1d5db; transition: all .2s; }
.wz-dot--current { background: var(--primary); width: 18px; border-radius: 4px; }
.wz-dot--done    { background: var(--primary); opacity: .45; }

/* ── EXIT CONFIRM ────────────────────────────────────────────── */
.bwiz-exit-confirm {
  position: absolute; inset: 0; background: rgba(255,255,255,.96);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: .9rem; padding: 2rem 1.5rem; text-align: center;
  border-radius: 20px; z-index: 10;
}
.bwiz-exit-confirm.show { display: flex; }
.bwiz-exit-confirm h3 { font-size: 1.05rem; font-weight: 700; margin: .4rem 0 0; }
.bwiz-exit-confirm p  { font-size: .84rem; color: var(--text-muted); margin: 0; }
.bwiz-exit-btns { display: flex; gap: .7rem; width: 100%; max-width: 280px; }
.bwiz-exit-btns .btn { flex: 1; justify-content: center; }

/* ── LOADING ─────────────────────────────────────────────────── */
.bwiz-loading {
  position: absolute; inset: 0; background: rgba(255,255,255,.96);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .7rem; border-radius: 20px; z-index: 11; text-align: center;
}
.bwiz-loading.d-none { display: none; }
.bwiz-loading h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.bwiz-loading p  { font-size: .8rem; color: var(--text-muted); margin: 0; }
.bwiz-loading-dots { display: flex; gap: .4rem; justify-content: center; margin-top: .3rem; }
.bwiz-loading-dots span {
  width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
  animation: wzBounce 1s infinite;
}
.bwiz-loading-dots span:nth-child(2) { animation-delay: .15s; }
.bwiz-loading-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes wzBounce { 0%,80%,100% { transform: scale(0); } 40% { transform: scale(1); } }

/* ── SUCCESS ─────────────────────────────────────────────────── */
.bwiz-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1rem 1rem; }
.bwiz-success-icon {
  width: 70px; height: 70px; background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  animation: wzScaleIn .4s cubic-bezier(.34,1.56,.64,1);
}
.bwiz-success-icon i { font-size: 2.1rem; color: #16a34a; }
@keyframes wzScaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.bwiz-success h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 .3rem; }
.bwiz-success p  { font-size: .82rem; color: var(--text-muted); margin: 0 0 1rem; }
.bwiz-success-code {
  background: #f1f5f9; border-radius: 10px; padding: .6rem 1.5rem;
  font-family: monospace; font-size: 1.05rem; font-weight: 700;
  letter-spacing: 3px; margin-bottom: 1rem;
}
.bwiz-success-steps { background: #f8fafc; border-radius: 12px; padding: .85rem 1rem; width: 100%; text-align: left; margin-bottom: .5rem; }
.bwiz-success-transfer-note {
  background: #fffbeb; border: 1.5px solid #fde68a; border-radius: 12px;
  padding: .75rem 1rem; font-size: .8rem; color: #92400e; width: 100%;
  text-align: left; margin-bottom: .5rem;
}
.bwiz-success-contact { display: flex; flex-direction: column; gap: .4rem; margin: .6rem 0 .4rem; }
.bwiz-contact-item {
  display: flex; align-items: center; gap: .5rem; padding: .45rem .75rem;
  background: #fff; border: 1px solid #fde68a; border-radius: 8px;
  color: #92400e; text-decoration: none; font-weight: 600; font-size: .82rem;
}
.bwiz-contact-wa { background: #f0fdf4; border-color: #86efac; color: #166534; }
.bwiz-success-step { display: flex; align-items: center; gap: .6rem; font-size: .8rem; margin-bottom: .55rem; }
.bwiz-success-step:last-child { margin-bottom: 0; }
.bwiz-ss-num { width: 21px; height: 21px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .62rem; font-weight: 700; flex-shrink: 0; }

/* ── DRAG HANDLE (mobile indicator) ──────────────────────────── */
.bwiz-drag-handle {
  display: none;
  width: 40px; height: 4px;
  background: #d1d5db; border-radius: 4px;
  margin: .55rem auto .1rem; flex-shrink: 0;
}

/* ── DARK MODE ───────────────────────────────────────────────── */
[data-theme="dark"] .bwiz {
  background: #1c1c20;
  color: #e8eaed;
}
[data-theme="dark"] .bwiz-header {
  border-bottom-color: rgba(255,255,255,.07);
}
[data-theme="dark"] .bwiz-header-step {
  background: rgba(45,170,225,.12);
}
[data-theme="dark"] .bwiz-btn-icon {
  background: rgba(255,255,255,.07); color: #c8cdd6;
}
[data-theme="dark"] .bwiz-btn-icon:hover { background: rgba(255,255,255,.12); }
[data-theme="dark"] .bwiz-progress { background: rgba(255,255,255,.08); }
[data-theme="dark"] .bwiz-step-header h3 { color: #e8eaed; }
[data-theme="dark"] .bwiz-step-header p  { color: #9aa0ac; }
/* Service cards */
[data-theme="dark"] .bwiz-svc-card {
  border-color: rgba(255,255,255,.08); background: #242428; color: #e8eaed;
}
[data-theme="dark"] .bwiz-svc-card strong { color: #e8eaed; }
[data-theme="dark"] .bwiz-svc-card:hover  { background: #2a2a2f; border-color: var(--primary); }
[data-theme="dark"] .bwiz-svc-card.selected { background: rgba(45,170,225,.1); border-color: var(--primary); }
/* Hours */
[data-theme="dark"] .bwiz-hours-section { background: rgba(255,255,255,.03); }
[data-theme="dark"] .bwiz-hours-section h4 { color: #9aa0ac; }
[data-theme="dark"] .bwiz-h-slot {
  border-color: rgba(255,255,255,.08); background: #242428; color: #e8eaed;
}
[data-theme="dark"] .bwiz-h-slot .h-val  { color: #e8eaed; }
[data-theme="dark"] .bwiz-h-slot .h-lbl  { color: #9aa0ac; }
[data-theme="dark"] .bwiz-h-slot:hover   { border-color: var(--primary); background: #2a2a2f; }
[data-theme="dark"] .bwiz-h-slot.selected { background: var(--primary); border-color: var(--primary); }
[data-theme="dark"] .bwiz-h-slot.selected .h-val,
[data-theme="dark"] .bwiz-h-slot.selected .h-lbl,
[data-theme="dark"] .bwiz-h-slot.selected .h-pop { color: #fff; }
/* Footer */
[data-theme="dark"] .bwiz-footer {
  background: #171719; border-top-color: rgba(255,255,255,.07);
}
[data-theme="dark"] .bwiz-footer-label { color: #9aa0ac; }
/* Dots */
[data-theme="dark"] .wz-dot { background: rgba(255,255,255,.15); }
/* Steps general */
[data-theme="dark"] .bwiz-steps-area { color: #e8eaed; }
[data-theme="dark"] .bwiz-steps-area label,
[data-theme="dark"] .bwiz-steps-area h4,
[data-theme="dark"] .bwiz-steps-area p,
[data-theme="dark"] .bwiz-steps-area small { color: #9aa0ac; }
[data-theme="dark"] .bwiz-steps-area strong,
[data-theme="dark"] .bwiz-steps-area h3 { color: #e8eaed; }
/* Inputs */
[data-theme="dark"] .bwiz input,
[data-theme="dark"] .bwiz select,
[data-theme="dark"] .bwiz textarea {
  background: #242428; color: #e8eaed; border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .bwiz input::placeholder,
[data-theme="dark"] .bwiz textarea::placeholder { color: #5f6672; }
/* Calendar */
[data-theme="dark"] .bwiz-cal-wrap { background: #242428; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .bwiz-cal-nav  { color: #c8cdd6; }
[data-theme="dark"] #wzCalMonthYear { color: #e8eaed; }
[data-theme="dark"] .bwiz-cal-day  { color: #c8cdd6; }
[data-theme="dark"] .bwiz-cal-day:hover:not(.disabled):not(.today):not(.selected) { background: #2a2a2f; }
[data-theme="dark"] .bwiz-cal-day.other-month { color: #44464d; }
[data-theme="dark"] .bwiz-selected-date { color: #9aa0ac; }
/* Time slots */
[data-theme="dark"] .bwiz-time-slot {
  border-color: rgba(255,255,255,.08); background: #242428; color: #e8eaed;
}
[data-theme="dark"] .bwiz-time-slot:hover  { border-color: var(--primary); background: #2a2a2f; }
[data-theme="dark"] .bwiz-time-slot.selected { background: var(--primary); color: #fff; }
/* Option cards (pet, supply etc.) */
[data-theme="dark"] .wz-opt-card,
[data-theme="dark"] .bwiz-option-card {
  background: #242428; border-color: rgba(255,255,255,.08); color: #e8eaed;
}
[data-theme="dark"] .wz-opt-card:hover,
[data-theme="dark"] .bwiz-option-card:hover { border-color: var(--primary); }
[data-theme="dark"] .wz-opt-card.selected,
[data-theme="dark"] .bwiz-option-card.selected { background: rgba(45,170,225,.1); border-color: var(--primary); }
[data-theme="dark"] .wz-opt-card label,
[data-theme="dark"] .bwiz-option-card label { color: #e8eaed; }
/* Address cards */
[data-theme="dark"] .wz-addr-card {
  background: #242428; border-color: rgba(255,255,255,.08); color: #e8eaed;
}
[data-theme="dark"] .wz-addr-card.selected { background: rgba(45,170,225,.1); border-color: var(--primary); }
/* Period & extra cards */
[data-theme="dark"] .wz-period-card,
[data-theme="dark"] .wz-extra-card {
  background: #242428; border-color: rgba(255,255,255,.08); color: #e8eaed;
}
[data-theme="dark"] .wz-period-card.selected,
[data-theme="dark"] .wz-extra-card.selected { background: rgba(45,170,225,.1); border-color: var(--primary); }
[data-theme="dark"] .wz-period-card strong,
[data-theme="dark"] .wz-extra-card strong { color: #e8eaed; }
[data-theme="dark"] .wz-period-card small,
[data-theme="dark"] .wz-extra-card small { color: #9aa0ac; }
/* Summary boxes */
[data-theme="dark"] .wz-period-summary,
[data-theme="dark"] .bwiz-info-box {
  background: rgba(45,170,225,.07); border-color: rgba(45,170,225,.2); color: #c8cdd6;
}
/* Exit / loading overlays */
[data-theme="dark"] .bwiz-exit-confirm { background: rgba(17,17,19,.97); }
[data-theme="dark"] .bwiz-exit-confirm h3 { color: #e8eaed; }
[data-theme="dark"] .bwiz-loading { background: rgba(17,17,19,.97); color: #e8eaed; }

/* ── DARK MODE GLOBAL OVERRIDES ──────────────────────────────── */
/* Alerts */
[data-theme="dark"] .alert-success { background: rgba(39,174,96,.12);  color: #6ee7a0; border-color: rgba(39,174,96,.4); }
[data-theme="dark"] .alert-error,
[data-theme="dark"] .alert-danger  { background: rgba(231,76,60,.12);  color: #fca5a5; border-color: rgba(231,76,60,.4); }
[data-theme="dark"] .alert-warning { background: rgba(243,156,18,.12); color: #fcd34d; border-color: rgba(243,156,18,.4); }
[data-theme="dark"] .alert-info    { background: rgba(52,152,219,.12); color: #93c5fd; border-color: rgba(52,152,219,.4); }
/* Info box */
[data-theme="dark"] .info-box { background: rgba(45,170,225,.08); border-color: rgba(45,170,225,.2); color: #c8cdd6; }
/* Tables */
[data-theme="dark"] .t360-table thead th { background: #1c1c20; color: #9aa0ac; border-bottom-color: rgba(255,255,255,.07); }
[data-theme="dark"] .t360-table tbody td { border-bottom-color: rgba(255,255,255,.05); color: #e8eaed; }
[data-theme="dark"] .t360-table tbody tr:hover { background: rgba(255,255,255,.03); }
/* Auth right panel */
[data-theme="dark"] .auth-right { background: var(--bg); }
/* Status badges that have hardcoded backgrounds */
[data-theme="dark"] .badge-success { background: rgba(39,174,96,.2);  color: #6ee7a0; }
[data-theme="dark"] .badge-warning { background: rgba(243,156,18,.2); color: #fcd34d; }
[data-theme="dark"] .badge-danger  { background: rgba(231,76,60,.2);  color: #fca5a5; }
[data-theme="dark"] .badge-info    { background: rgba(52,152,219,.2); color: #93c5fd; }
/* Stat / summary cards with hardcoded white backgrounds */
[data-theme="dark"] .stat-box,
[data-theme="dark"] .summary-card { background: var(--bg-card); border-color: var(--border); }
/* Footer */
[data-theme="dark"] .footer { background: #0d0d0f; border-top: 1px solid rgba(255,255,255,.06); }
[data-theme="dark"] .footer h4 { color: #e8eaed; }
[data-theme="dark"] .footer p,
[data-theme="dark"] .footer-links ul li a { color: #9aa0ac; }
[data-theme="dark"] .footer-links ul li a:hover { color: var(--primary); }
/* Dropdown */
[data-theme="dark"] .user-dropdown { background: #1c1c20; border-color: rgba(255,255,255,.08); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
[data-theme="dark"] .user-dropdown a { color: #c8cdd6; }
[data-theme="dark"] .user-dropdown a:hover { background: rgba(255,255,255,.05); color: #e8eaed; }
[data-theme="dark"] .dropdown-divider { border-color: rgba(255,255,255,.07); }
/* Modal */
[data-theme="dark"] .modal { background: #1c1c20; }
[data-theme="dark"] .modal-header { border-bottom-color: rgba(255,255,255,.07); }
[data-theme="dark"] .modal-footer { border-top-color: rgba(255,255,255,.07); }
/* Scrollbar (webkit) */
[data-theme="dark"] ::-webkit-scrollbar { width: 6px; height: 6px; }
[data-theme="dark"] ::-webkit-scrollbar-track { background: #111113; }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: #2a2a30; border-radius: 3px; }
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover { background: #3a3a40; }

/* ── TABLET ──────────────────────────────────────────────────── */
@media (min-width: 601px) and (max-width: 768px) {
  .bwiz { max-width: 560px; height: min(88vh, 680px); }
  .bwiz-svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .bwiz-drag-handle { display: block; }
  .bwiz-overlay { padding: 0; align-items: flex-end; }
  .bwiz {
    height: 92vh; max-height: 92vh; min-height: 0;
    border-radius: 20px 20px 0 0; max-width: 100%; width: 100%;
  }
  .bwiz-header { padding: .75rem .9rem; }
  .bwiz-step-header { padding: .75rem 1rem .2rem; }
  .bwiz-steps-area { padding: .75rem 1rem 1.2rem; }
  .bwiz-footer { padding: .75rem 1rem; }
  .bwiz-svc-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .bwiz-otp-d { width: 38px; height: 46px; font-size: 1.2rem; }
  .bwiz-h-slot .h-lbl { display: none; }
  .bwiz-h-slots { flex-wrap: wrap; }
  .bwiz-h-slot { flex: 1 0 auto; min-width: 56px; }
  .bwiz-input-2col { grid-template-columns: 1fr; }
  .bwiz-opt-row { flex-wrap: wrap; }
  .bwiz-opt-btn { flex: 1 0 calc(33% - .5rem); min-width: 80px; }
  .bwiz-pay-methods { grid-template-columns: 1fr 1fr; }
  .bwiz-period-grid { grid-template-columns: 1fr 1fr; gap: .4rem; }
  .bwiz-freq-btn, .bwiz-dur-btn { padding: .32rem .65rem; font-size: .76rem; }
  .bwiz-worker-row { gap: .6rem; }
  .bwiz-wk-val { font-size: 1.25rem; }
}

/* ════════════════════════════════════════════════════════════
   BLOG — Hub (index) & Article (show) — v2
   ════════════════════════════════════════════════════════════ */

/* ── Reading progress bar ──────────────────────────────── */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  z-index: 9999; transition: width .1s linear;
}

/* ── Blog Hub Header ──────────────────────────────────── */
.blog-hub-header { background: var(--primary-light); padding: 2.5rem 0 1rem; border-bottom: 1px solid var(--border); }
.blog-hub-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.blog-hub-title { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin: 0 0 .3rem; }
.blog-hub-sub { color: var(--text-muted); margin: 0; font-size: .95rem; }
.blog-hub-cta-btn { white-space: nowrap; }

/* Category chips */
.blog-chips-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .5rem; }
.blog-chips { display: flex; gap: .5rem; min-width: max-content; }
.blog-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .38rem .9rem; border-radius: 99px; font-size: .8rem; font-weight: 600;
  border: 1.5px solid var(--border); background: #fff; color: var(--text-muted);
  text-decoration: none; transition: all .15s; white-space: nowrap;
}
.blog-chip span { background: var(--border); border-radius: 99px; padding: .05rem .45rem; font-size: .7rem; font-weight: 700; }
.blog-chip:hover, .blog-chip.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.blog-chip.active span { background: var(--primary); color: #fff; }

/* ── Hub Layout ───────────────────────────────────────── */
.blog-hub-section { padding: 2.5rem 0 4rem; }
.blog-hub-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }

/* ── Featured Post ────────────────────────────────────── */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-bottom: 2rem; background: #fff; }
.blog-featured-img { display: block; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-badge { position: absolute; top: .75rem; left: .75rem; background: var(--primary); color: #fff; padding: .3rem .75rem; border-radius: 99px; font-size: .72rem; font-weight: 700; display: flex; align-items: center; gap: .3rem; }
.blog-featured-body { padding: 2rem 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: 1.3rem; font-weight: 700; margin: .5rem 0 .75rem; line-height: 1.4; }
.blog-featured-body h2 a:hover { color: var(--primary); }
.blog-featured-lead { color: var(--text-muted); font-size: .88rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.blog-meta-row { display: flex; gap: 1rem; font-size: .77rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.blog-read-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 700; color: var(--primary); text-decoration: none; transition: gap .15s; }
.blog-read-link:hover { gap: .7rem; }

/* Category pill (shared) */
.blog-cat-pill { display: inline-block; padding: .2rem .7rem; background: var(--primary-light); color: var(--primary); border-radius: 99px; font-size: .72rem; font-weight: 700; text-decoration: none; }

/* ── Grid heading ─────────────────────────────────────── */
.blog-grid-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.blog-grid-heading h2 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.blog-grid-heading a { font-size: .82rem; color: var(--primary); }

/* ── Post Grid v2 ─────────────────────────────────────── */
.blog-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card-v2 { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.blog-card-v2:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-v2-img { display: block; aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--primary-light); }
.blog-card-v2-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card-v2:hover .blog-card-v2-img img { transform: scale(1.05); }
.blog-card-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary); opacity: .4; }
.blog-card-cat { position: absolute; bottom: .5rem; left: .5rem; background: var(--primary); color: #fff; padding: .18rem .6rem; border-radius: 99px; font-size: .68rem; font-weight: 700; }
.blog-card-v2-body { padding: .9rem 1rem 1rem; }
.blog-card-v2-body h3 { font-size: .9rem; font-weight: 700; line-height: 1.4; margin: 0 0 .4rem; }
.blog-card-v2-body h3 a:hover { color: var(--primary); }
.blog-card-v2-body p { font-size: .78rem; color: var(--text-muted); margin: 0 0 .75rem; line-height: 1.5; }
.blog-card-v2-foot { display: flex; gap: .75rem; font-size: .73rem; color: var(--text-muted); }
.blog-card-rt { color: var(--primary); }

/* ── CTA Strip ────────────────────────────────────────── */
.blog-cta-strip { background: var(--primary-light); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.1rem 1.25rem; margin: 1.5rem 0; }
.blog-cta-strip-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.blog-cta-strip-icon { font-size: 1.6rem; color: var(--primary); flex-shrink: 0; }
.blog-cta-strip-inner > div { flex: 1; min-width: 180px; }
.blog-cta-strip-inner strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.blog-cta-strip-inner span { font-size: .78rem; color: var(--text-muted); }

/* ── Pagination ───────────────────────────────────────── */
.blog-pagination { display: flex; justify-content: center; gap: .35rem; margin-top: 2rem; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid var(--border); background: #fff; font-size: .82rem; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: all .15s; padding: 0 .4rem; }
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-btn-nav { color: var(--text-muted); }

/* ── Empty state ──────────────────────────────────────── */
.blog-empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.blog-empty-state i { font-size: 3rem; color: var(--border); display: block; margin-bottom: 1rem; }
.blog-empty-state h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--text-dark); }

/* ── Sidebar v2 (shared blog & article) ──────────────── */
.blog-sidebar-v2 { position: sticky; top: calc(var(--nav-h, 70px) + 1rem); }
.blog-widget-v2 { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.2rem; margin-bottom: 1.25rem; }
.blog-widget-v2 h4 { font-size: .85rem; font-weight: 700; color: var(--text-dark); margin: 0 0 .9rem; display: flex; align-items: center; gap: .45rem; }
.blog-widget-v2 h4 i { color: var(--primary); }
.blog-widget-cats { list-style: none; padding: 0; margin: 0; }
.blog-widget-cats li + li { border-top: 1px solid var(--border); }
.blog-widget-cats a { display: flex; align-items: center; justify-content: space-between; padding: .45rem 0; font-size: .82rem; color: var(--text-muted); text-decoration: none; transition: color .15s; }
.blog-widget-cats a:hover, .blog-widget-cats a.active { color: var(--primary); }
.blog-widget-cats b { background: var(--primary-light); color: var(--primary); border-radius: 99px; padding: .1rem .5rem; font-size: .7rem; font-weight: 700; }
.blog-widget-recent { list-style: none; padding: 0; margin: 0; }
.blog-widget-recent li { padding: .5rem 0; border-bottom: 1px solid var(--border); }
.blog-widget-recent li:last-child { border: none; }
.blog-widget-recent a { font-size: .82rem; color: var(--text-dark); text-decoration: none; font-weight: 500; line-height: 1.4; display: block; margin-bottom: .15rem; }
.blog-widget-recent a:hover { color: var(--primary); }
.blog-widget-recent time { font-size: .72rem; color: var(--text-muted); }
.blog-widget-cta { background: linear-gradient(135deg, #1e3a5f 0%, #2DAAE1 100%); border-radius: var(--radius-md); overflow: hidden; position: relative; margin-bottom: 1.25rem; }
.blog-widget-cta-bg { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat; pointer-events: none; }
.blog-widget-cta-content { position: relative; padding: 1.5rem 1.25rem; text-align: center; color: #fff; }
.blog-widget-cta-emoji { font-size: 2rem; margin-bottom: .5rem; }
.blog-widget-cta-content h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 .4rem; }
.blog-widget-cta-content p { font-size: .8rem; color: rgba(255,255,255,.8); margin: 0 0 1rem; }
.btn-block { display: block; width: 100%; }
.blog-widget-trust { display: flex; justify-content: center; gap: 1rem; margin-top: .75rem; font-size: .72rem; color: rgba(255,255,255,.75); }
.blog-widget-trust i { margin-right: .25rem; }

/* ══ ARTICLE STYLES ══════════════════════════════════════ */

/* Layout */
.blog-article-wrap { padding-bottom: 4rem; }
.blog-article-hero { margin-bottom: 2.5rem; }
.blog-article-hero-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.blog-article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; padding-top: 2rem; }

/* Breadcrumb */
.blog-breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--text-muted); margin-bottom: 1.25rem; flex-wrap: wrap; }
.blog-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.blog-breadcrumb a:hover { color: var(--primary); }
.blog-breadcrumb i { font-size: .6rem; }

/* Article header */
.blog-article-header { margin-bottom: 1.5rem; }
.blog-article-title { font-size: 1.95rem; font-weight: 800; line-height: 1.3; color: var(--text-dark); margin: .6rem 0 .75rem; }
.blog-article-meta { display: flex; gap: 1.25rem; font-size: .8rem; color: var(--text-muted); flex-wrap: wrap; }

/* Lead */
.blog-article-lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; border-left: 3px solid var(--primary); padding-left: 1rem; margin-bottom: 1.75rem; }

/* Content typography */
.blog-article-content { font-size: .96rem; line-height: 1.8; color: #374151; margin-bottom: 2rem; }
.blog-article-content h2 { font-size: 1.35rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--text-dark); }
.blog-article-content h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--text-dark); }
.blog-article-content p { margin: 0 0 1.1rem; }
.blog-article-content ul, .blog-article-content ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.blog-article-content li { margin-bottom: .4rem; }
.blog-article-content a { color: var(--primary); text-decoration: underline; }
.blog-article-content blockquote { border-left: 4px solid var(--primary); padding: .75rem 1.25rem; background: var(--primary-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; color: var(--text-muted); font-style: italic; }
.blog-article-content img { max-width: 100%; border-radius: var(--radius-md); display: block; margin: 1.5rem auto; }
.blog-article-content code { background: #f1f5f9; padding: .15rem .4rem; border-radius: 4px; font-size: .88em; color: #e11d48; }
.blog-article-content pre { background: #1e293b; color: #e2e8f0; padding: 1rem 1.25rem; border-radius: var(--radius-md); overflow-x: auto; font-size: .84rem; line-height: 1.6; margin-bottom: 1.1rem; }
.blog-article-content pre code { background: none; color: inherit; padding: 0; }
.blog-article-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.1rem; font-size: .88rem; }
.blog-article-content th, .blog-article-content td { border: 1px solid var(--border); padding: .5rem .75rem; text-align: left; }
.blog-article-content th { background: var(--primary-light); font-weight: 600; }

/* In-article CTA */
.blog-article-cta-box { display: flex; align-items: center; gap: 1rem; background: var(--primary-light); border: 1px solid var(--primary); border-radius: var(--radius-md); padding: 1.1rem 1.25rem; margin: 2rem 0; flex-wrap: wrap; }
.blog-article-cta-icon { font-size: 1.75rem; color: var(--primary); flex-shrink: 0; }
.blog-article-cta-text { flex: 1; min-width: 160px; }
.blog-article-cta-text strong { display: block; font-size: .9rem; color: var(--text-dark); margin-bottom: .2rem; }
.blog-article-cta-text span { font-size: .8rem; color: var(--text-muted); }

/* Tags */
.blog-article-tags { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.blog-article-tags-label { font-size: .78rem; font-weight: 600; color: var(--text-muted); }
.blog-tag-pill { background: var(--primary-light); color: var(--primary); border-radius: 99px; padding: .25rem .7rem; font-size: .75rem; font-weight: 600; }

/* Share */
.blog-article-share { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.blog-share-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.blog-share-btns { display: flex; gap: .5rem; }
.blog-share-btn { width: 36px; height: 36px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: .85rem; cursor: pointer; text-decoration: none; transition: opacity .15s; }
.blog-share-btn:hover { opacity: .85; }
.blog-share-x    { background: #000; color: #fff; }
.blog-share-fb   { background: #1877f2; color: #fff; }
.blog-share-wa   { background: #25d366; color: #fff; }
.blog-share-copy { background: #e2e8f0; color: #475569; }

/* Back link */
.blog-article-back { margin-bottom: 2rem; }
.blog-article-back a { font-size: .82rem; color: var(--text-muted); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.blog-article-back a:hover { color: var(--primary); }

/* Article sidebar */
.blog-article-sidebar { position: sticky; top: calc(var(--nav-h, 70px) + 1rem); }

/* TOC */
.blog-toc { list-style: none; padding: 0; margin: 0; }
.blog-toc li { padding: .3rem 0; border-bottom: 1px solid #f1f5f9; }
.blog-toc li:last-child { border: none; }
.blog-toc a { font-size: .8rem; color: var(--text-muted); text-decoration: none; display: block; line-height: 1.4; }
.blog-toc a:hover, .blog-toc a.active { color: var(--primary); font-weight: 600; }
.blog-toc .toc-sub a { padding-left: .75rem; font-size: .76rem; }

/* Related posts section (bottom) */
.blog-related-section { background: var(--primary-light); padding: 3rem 0; margin-top: 2rem; }
.blog-related-title { font-size: 1.3rem; font-weight: 700; margin: 0 0 1.5rem; }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ── Inline Article TOC ───────────────────────────────── */
.article-toc {
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
  overflow: hidden;
}
.article-toc-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.1rem; background: none; border: none; cursor: pointer;
  text-align: left;
}
.article-toc-toggle:hover { background: rgba(45,170,225,.05); }
.article-toc-title {
  font-size: .88rem; font-weight: 700; color: var(--text-dark);
  display: flex; align-items: center; gap: .5rem;
}
.article-toc-title i { color: var(--primary); font-size: .85rem; }
.article-toc-chevron {
  font-size: .75rem; color: var(--text-muted);
  transition: transform .25s ease;
}
.article-toc-body { padding: 0 1.1rem .9rem; }
.article-toc-list {
  list-style: none; padding: 0; margin: 0;
  counter-reset: toc-counter;
}
.atoc-item {
  counter-increment: toc-counter;
  border-bottom: 1px solid var(--border);
  padding: .35rem 0;
}
.atoc-item:last-child { border-bottom: none; }
.atoc-item a {
  display: flex; align-items: baseline; gap: .5rem;
  font-size: .84rem; color: var(--text-muted); text-decoration: none;
  line-height: 1.4; transition: color .15s, padding-left .15s;
  padding: .1rem 0;
}
.atoc-item a::before {
  content: counter(toc-counter) ".";
  flex-shrink: 0; font-size: .75rem; font-weight: 700;
  color: var(--primary); min-width: 1.4rem;
}
.atoc-item a:hover { color: var(--primary); padding-left: .35rem; }
.atoc-item a.active { color: var(--primary); font-weight: 600; padding-left: .35rem; }

/* h3 indent */
.atoc-sub a { padding-left: 1.2rem; font-size: .8rem; }
.atoc-sub a::before { color: #94a3b8; font-size: .7rem; }

/* Heading anchor icon */
.blog-article-content h2, .blog-article-content h3 { position: relative; }
.toc-anchor-icon {
  opacity: 0; margin-left: .45rem; font-size: .7em;
  color: var(--primary); text-decoration: none; vertical-align: middle;
  transition: opacity .15s;
}
.blog-article-content h2:hover .toc-anchor-icon,
.blog-article-content h3:hover .toc-anchor-icon { opacity: 1; }

/* Flash animation when jumping to section */
@keyframes heading-flash {
  0%   { background: rgba(45,170,225,.15); }
  100% { background: transparent; }
}
.heading-flash { animation: heading-flash .8s ease forwards; border-radius: 4px; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-hub-layout { grid-template-columns: 1fr 240px; gap: 1.75rem; }
  .blog-article-layout { grid-template-columns: 1fr 240px; gap: 1.75rem; }
}

@media (max-width: 860px) {
  .blog-hub-layout { grid-template-columns: 1fr; }
  .blog-sidebar-v2 { position: static; }
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-article-sidebar { position: static; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { aspect-ratio: 16/7; }
  .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-article-title { font-size: 1.55rem; }
}

@media (max-width: 560px) {
  .blog-hub-title { font-size: 1.5rem; }
  .blog-grid-v2 { grid-template-columns: 1fr; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-article-title { font-size: 1.3rem; }
  .blog-article-cta-box { flex-direction: column; text-align: center; }
  .blog-share-label { display: none; }
  .article-toc { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
  .atoc-item a { font-size: .8rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HIZMET SEPETİ (CART)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Navbar cart button ── */
.cart-nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
  transition: background .15s, color .15s;
}
.cart-nav-btn:hover { background: var(--primary-light); color: var(--primary); }

.cart-nav-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  background: #ef4444;
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 .3rem;
  pointer-events: none;
  border: 1.5px solid var(--bg-card);
  animation: cartBadgePop .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes cartBadgePop { from { transform: scale(0); } to { transform: scale(1); } }

/* ── Overlay ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(2px);
}
.cart-overlay.show { opacity: 1; pointer-events: all; }

/* ── Drawer ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-card);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.2);
}
.cart-drawer.open { transform: translateX(0); }

/* ── Drawer Header ── */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1.5px solid var(--border);
  background: var(--bg-card);
  flex-shrink: 0;
}
.cart-drawer-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: .97rem;
  color: var(--text);
}
.cart-drawer-title i { color: var(--primary); font-size: 1.05rem; }
.cart-badge-pill {
  background: var(--primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  border-radius: 20px;
  padding: .1rem .45rem;
  min-width: 20px;
  text-align: center;
}
.cart-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--bg);
  cursor: pointer;
  color: var(--text-muted);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.cart-close-btn:hover { background: #fee2e2; color: #ef4444; }

/* ── Body ── */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: .5rem 0;
}
.cart-drawer-body::-webkit-scrollbar { width: 4px; }
.cart-drawer-body::-webkit-scrollbar-track { background: transparent; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* ── State screens (loading/empty) ── */
.cart-state {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  gap: .75rem;
}
.cart-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--border);
  margin: 0 auto .5rem;
}
.cart-state h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0; }
.cart-state p  { font-size: .83rem; margin: 0; line-height: 1.5; }

/* ── Cart item card ── */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.cart-item:hover { background: var(--bg); }
.cart-item:last-child { border-bottom: none; }

.cart-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: .88rem; color: var(--text); line-height: 1.3; }

.cart-item-chips { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .35rem; }
.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .7rem;
  padding: .12rem .45rem;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.cart-chip i { color: var(--primary); }
.cart-chip-extra { background: #f0fdf4; border-color: #86efac; color: #166534; }
.cart-chip-extra i { color: #22c55e; }

.cart-item-schedule {
  display: flex;
  gap: .4rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}
.cart-date-input,
.cart-time-select {
  font-size: .73rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: .25rem .45rem;
  background: var(--bg-card);
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  cursor: pointer;
}
.cart-date-input:focus, .cart-time-select:focus { border-color: var(--primary); }
.cart-time-select { max-width: 110px; }

.cart-item-note {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .35rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .4rem;
  flex-shrink: 0;
}
.cart-item-price { font-weight: 800; font-size: .95rem; color: var(--primary); }
.cart-remove-btn {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .12s;
}
.cart-remove-btn:hover { background: #fee2e2; color: #ef4444; }

/* ── Footer ── */
.cart-drawer-footer {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1.5px solid var(--border);
  background: var(--bg-card);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.cart-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-footer-label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.cart-footer-total { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.cart-footer-hint {
  font-size: .73rem;
  color: var(--text-muted);
  background: var(--bg);
  border-radius: 7px;
  padding: .45rem .7rem;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  line-height: 1.45;
}
.cart-footer-hint i { color: var(--primary); flex-shrink: 0; margin-top: .05rem; }
.cart-clear-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: .3rem;
  border-radius: 6px;
  transition: color .12s, background .12s;
  width: 100%;
}
.cart-clear-btn:hover { color: #ef4444; background: #fee2e2; }

/* ── Toast notification ── */
.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1e293b;
  color: #fff;
  padding: .65rem 1.2rem;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  z-index: 9999;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  opacity: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .45rem;
  pointer-events: none;
}
.cart-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cart-toast--success i { color: #4ade80; }
.cart-toast--error { background: #7f1d1d; }
.cart-toast--error i { color: #fca5a5; }

/* ── "Sepete Ekle" button on service rows ── */
.svc-add-cart-btn {
  flex-shrink: 0;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  padding: .4rem .85rem;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  white-space: nowrap;
  transition: all .15s;
}
.svc-add-cart-btn:hover { background: var(--primary); color: #fff; }
.svc-add-cart-btn.adding { opacity: .6; pointer-events: none; }

/* ── Dark mode ── */
[data-theme="dark"] .cart-drawer { background: #1e293b; border-left: 1px solid #334155; }
[data-theme="dark"] .cart-drawer-header { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .cart-drawer-footer { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .cart-item:hover { background: #0f172a; }
[data-theme="dark"] .cart-date-input,
[data-theme="dark"] .cart-time-select { background: #0f172a; border-color: #334155; color: #e2e8f0; }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .cart-item { padding: .75rem 1rem; }
  .cart-drawer-header, .cart-drawer-footer { padding-left: 1rem; padding-right: 1rem; }
}

/* Mobil sabit rezervasyon butonu için footer padding */
@media (max-width: 768px) {
  .footer { padding-bottom: 80px; }
  #mainContent { padding-bottom: 0; }
}
