/* ============================================================
   AltınHalı — Luxury Carpet Cleaning | haliv1.list.menu
   Design: Black & Gold (dark default) / White & Gold (light)
   Fonts: Bodoni Moda (headings) + Jost (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400;1,6..96,700&family=Cinzel:wght@400;600;700&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #080808;
  --surface: #0F0F0F;
  --surface2: #161616;
  --surface3: #1E1E1E;
  --gold: #C9A84C;
  --gold2: #E8C96B;
  --gold-dark: #A07A2E;
  --text: #F5F0E8;
  --text2: #B8A898;
  --text3: #7A6A5A;
  --border: rgba(201,168,76,.15);
  --border2: rgba(201,168,76,.30);
  --radius: 4px;
  --navbar-h: 72px;
  --shadow: 0 4px 24px rgba(0,0,0,.6);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.25);
  --navbar-bg: rgba(8,8,8,.92);
  --hero-overlay: linear-gradient(160deg, rgba(8,8,8,.85) 0%, rgba(8,8,8,.60) 50%, rgba(201,168,76,.12) 100%);
  --footer-bg: #050505;
  --wizard-header-bg: linear-gradient(135deg, #0F0F0F 0%, #1A1400 100%);
}

[data-theme="light"] {
  --bg: #FAF9F6;
  --surface: #FFFFFF;
  --surface2: #F5F0E8;
  --surface3: #EDE8DC;
  --gold: #B8962E;
  --gold2: #C9A84C;
  --gold-dark: #8A7020;
  --text: #1A1410;
  --text2: #5A4A3A;
  --text3: #9A8A7A;
  --border: rgba(184,150,46,.20);
  --border2: rgba(184,150,46,.40);
  --navbar-bg: rgba(250,249,246,.95);
  --hero-overlay: linear-gradient(160deg, rgba(250,249,246,.75) 0%, rgba(250,249,246,.50) 50%, rgba(184,150,46,.08) 100%);
  --footer-bg: #F5F0E8;
  --wizard-header-bg: linear-gradient(135deg, #FAF9F6 0%, #F5F0E0 100%);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--surface2);
}
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--surface2); }
html::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}

::selection { background: var(--gold); color: #080808; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
button { cursor: pointer; font-family: 'Jost', sans-serif; }
ul { list-style: none; }

/* ── Typography Helpers ── */
.font-bodoni { font-family: 'Bodoni Moda', serif; }
.text-gold { color: var(--gold); }
.text-gold2 { color: var(--gold2); }

/* ── Gold Decorative Elements ── */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
  border: none;
}
.gold-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  border: none;
}

/* ── Section Base ── */
.section { padding: 88px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--text);
  line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text2);
  max-width: 560px; margin: 0 auto 56px;
}

/* ─────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--navbar-h);
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 clamp(16px, 3vw, 32px); gap: 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; gap: 40px;
}
.nav-brand-text {
  display: flex; flex-direction: column;
  gap: 2px; line-height: 1; white-space: nowrap;
}
.nav-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--gold); letter-spacing: .1em;
}
.nav-brand-sub {
  font-family: 'Trajan Pro', 'Trajan', 'Cinzel', serif;
  font-size: .58rem; font-weight: 400;
  color: var(--text2); letter-spacing: .22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  position: relative; font-size: .9rem; font-weight: 500;
  color: var(--text2); padding: 6px 12px;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

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

.nav-phone-btn {
  display: flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--gold); color: var(--gold);
  background: transparent; border-radius: var(--radius);
  padding: 7px 16px; font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; transition: background .25s, color .25s;
  white-space: nowrap;
}
.nav-phone-btn:hover { background: var(--gold); color: #080808; }
.nav-phone-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-wa-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1.5px solid #25D366; color: #25D366;
  background: transparent; border-radius: var(--radius);
  transition: background .25s, color .25s; flex-shrink: 0;
}
.nav-wa-btn:hover { background: #25D366; color: #fff; }
.nav-wa-btn svg { width: 15px; height: 15px; }

.theme-toggle {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold); background: transparent;
  color: var(--gold); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--gold); color: #080808; }
.theme-toggle svg { width: 15px; height: 15px; }

.nav-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1.5px solid var(--border2); background: transparent;
  color: var(--text); border-radius: var(--radius);
  flex-direction: column; gap: 4px; padding: 7px;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--text); transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: var(--navbar-h); left: 0; right: 0; z-index: 850;
  background: var(--surface);
  border-bottom: 1px solid var(--border2);
  box-shadow: var(--shadow);
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 24px;
}
.mobile-nav.open { max-height: 420px; padding: 16px 24px 24px; }
.mobile-nav-inner { padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-inner a {
  padding: 12px 0; font-size: 1rem; font-weight: 500;
  color: var(--text2); border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav-inner a:hover { color: var(--gold); }
.mobile-nav-inner a:last-child { border-bottom: none; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--navbar-h) clamp(20px, 5vw, 80px) 40px;
  gap: 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--hero-overlay);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 48px; min-height: calc(100vh - var(--navbar-h));
  padding-top: 80px; padding-bottom: 80px;
}
.hero-content { max-width: 620px; flex: 1; min-width: 0; position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border2);
  border-radius: 100px; padding: 6px 16px;
  font-size: .72rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
  background: rgba(201,168,76,.06);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow svg { width: 12px; height: 12px; flex-shrink: 0; }

.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; color: var(--text);
  line-height: 1.05; margin-bottom: 22px;
}
.hero-title-gold {
  color: var(--gold); font-style: italic;
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem; color: var(--text2);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #080808;
  border: 1.5px solid var(--gold); border-radius: var(--radius);
  padding: 13px 28px; font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover {
  background: var(--gold2); border-color: var(--gold2);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); border-radius: var(--radius);
  padding: 13px 28px; font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; transition: background .25s, color .25s, transform .2s;
}
.btn-secondary:hover { background: rgba(201,168,76,.10); transform: translateY(-2px); }

.hero-float-badges {
  display: flex; flex-direction: column; gap: 12px;
  flex-shrink: 0;
}
.hero-trust-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(8,8,8,.65);
  border: 1px solid var(--border2);
  border-radius: 6px; padding: 12px 16px;
  backdrop-filter: blur(12px);
  min-width: 200px;
}
[data-theme="light"] .hero-trust-badge { background: rgba(255,255,255,.75); }
.hero-trust-badge svg {
  width: 22px; height: 22px;
  color: var(--gold); flex-shrink: 0;
}
.hero-trust-badge-num {
  display: block; font-size: .82rem; font-weight: 600; color: var(--text);
}
.hero-trust-badge-label { font-size: .72rem; color: var(--text3); }

/* Hero Brand Overlay — large text on image, no box */
.hero-brand-overlay {
  flex-shrink: 0;
  text-align: right;
  position: relative; z-index: 1;
  max-width: 420px;
}
.hero-brand-overlay-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; color: var(--gold);
  text-shadow: 0 2px 28px rgba(0,0,0,.95), 0 0 70px rgba(0,0,0,.7);
  line-height: 1.1; margin-bottom: 14px;
  letter-spacing: .06em;
}
.hero-brand-overlay-sub {
  font-family: 'Trajan Pro', 'Trajan', 'Cinzel', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.9);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item { padding: 8px; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Trajan Pro', 'Trajan', 'Cinzel', serif;
  font-size: .68rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text3);
}
.stat-divider {
  width: 1px; background: var(--border2);
  align-self: stretch;
}

/* ─────────────────────────────────────────────────────────
   PRICE WIZARD SECTION
───────────────────────────────────────────────────────── */
.wizard-section {
  background: var(--bg);
  padding: 88px clamp(16px, 4vw, 24px);
}
.wizard-section .container { text-align: center; }
.wizard-wrap {
  max-width: 920px; margin: 0 auto; width: 100%; overflow: hidden;
}
.wizard-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: left;
}

/* Wizard Header */
.wizard-header {
  background: var(--wizard-header-bg);
  border-bottom: 1px solid var(--border2);
  min-height: 68px; padding: 0 28px;
  display: flex; align-items: center; gap: 0;
}
.wizard-steps { display: flex; align-items: center; gap: 0; width: 100%; }
.wstep {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; flex-shrink: 0;
}
.wstep-num {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Bodoni Moda', serif; font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .3s, color .3s;
}
.wstep.active .wstep-num { background: var(--gold); color: #080808; border-color: var(--gold); }
.wstep.done .wstep-num { background: rgba(201,168,76,.25); color: var(--gold); }
.wstep-label {
  font-family: 'Jost', sans-serif;
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text3); transition: color .3s;
}
.wstep.active .wstep-label { color: var(--gold); }
.wstep.done .wstep-label { color: var(--text2); }
.wstep-divider {
  flex: 1; height: 1px; min-width: 16px; max-width: 60px;
  background: var(--border2); margin: 0 8px;
}

/* Wizard Body */
.wizard-body { padding: 36px 32px 28px; overflow-x: hidden; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.step-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.step-desc { font-size: .9rem; color: var(--text2); margin-bottom: 28px; }

/* Step 1 – Carpet Cards */
.carpet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 8px;
}
.carpet-card {
  position: relative;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 20px 14px 16px;
  cursor: pointer; text-align: center;
  transition: border-color .25s, transform .2s, background .25s;
}
.carpet-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.carpet-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}
.carpet-icon {
  width: 36px; height: 36px; border-radius: 6px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #080808;
}
.carpet-icon svg { width: 16px; height: 16px; color: #080808; }
.carpet-name {
  font-family: 'Bodoni Moda', serif;
  font-size: .9375rem; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.carpet-price {
  font-size: .8rem; color: var(--text3);
}
.carpet-price-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--gold); color: #080808;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .5px; padding: 2px 7px;
  border-radius: 100px;
}

/* Step 2 – Area Slider */
.area-display { text-align: center; margin-bottom: 28px; }
.area-num {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(3rem, 14vw, 5.5rem); font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.area-unit { font-size: 1rem; color: var(--text2); }

.range-wrap { position: relative; margin-bottom: 24px; }
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--surface3);
  border-radius: 2px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1.5px var(--gold), var(--shadow-gold);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--bg);
  cursor: pointer;
}
.range-labels {
  display: flex; justify-content: space-between;
  font-size: .75rem; color: var(--text3); margin-top: 8px;
}

.quick-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.quick-size-btn {
  border: 1px solid var(--border); background: var(--surface2);
  color: var(--text2); border-radius: var(--radius);
  padding: 7px 14px; font-size: .82rem; font-weight: 500;
  transition: border-color .2s, color .2s, background .2s;
}
.quick-size-btn:hover { border-color: var(--gold); color: var(--gold); }
.quick-size-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }

/* Step 3 – Extras */
.extras-grid { display: grid; gap: 10px; }
.extra-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 6px; padding: 16px;
  cursor: pointer; transition: border-color .25s, background .25s;
}
.extra-card:hover { border-color: var(--border2); }
.extra-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}
.extra-icon {
  width: 34px; height: 34px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(160,122,46,.3), rgba(201,168,76,.2));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.extra-icon svg { width: 15px; height: 15px; }
.extra-info { flex: 1; min-width: 0; }
.extra-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.extra-desc { font-size: .78rem; color: var(--text3); }
.extra-price { font-size: .9rem; font-weight: 600; color: var(--gold); }
.extra-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--border2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.extra-card.selected .extra-check {
  background: var(--gold); border-color: var(--gold); color: #080808;
}

/* Step 4 – Summary */
.summary-title {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text2); margin-bottom: 14px;
}
.summary-title svg { width: 16px; height: 16px; flex-shrink: 0; }
.summary-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .88rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row-label { color: var(--text2); }
.summary-row-value { font-weight: 600; color: var(--text); }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 4px;
}
.summary-total-label {
  font-family: 'Bodoni Moda', serif; font-size: 1rem; color: var(--text2);
}
.summary-total-value {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
}
.summary-cta-row {
  display: flex; gap: 12px; margin-top: 20px;
}
.btn-call {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--gold); color: #080808;
  border: none; border-radius: var(--radius);
  padding: 9px 16px; font-size: .82rem; font-weight: 700;
  transition: background .25s, transform .2s;
}
.btn-call:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-call svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-whatsapp {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: #25D366; color: #fff;
  border: none; border-radius: var(--radius);
  padding: 9px 16px; font-size: .82rem; font-weight: 700;
  transition: background .25s, transform .2s;
}
.btn-whatsapp:hover { background: #20bf5c; transform: translateY(-1px); }
.btn-whatsapp svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Wizard Footer */
.wizard-footer {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.wz-price-wrap { display: flex; flex-direction: column; }
.wz-price-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); }
.wz-price-val {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
  line-height: 1.1;
}
.wz-nav { display: flex; gap: 10px; }
.wz-btn-back {
  background: transparent; color: var(--text2);
  border: 1px solid var(--border2); border-radius: var(--radius);
  padding: 10px 20px; font-size: .85rem; font-weight: 500;
  transition: border-color .2s, color .2s;
}
.wz-btn-back:hover { border-color: var(--gold); color: var(--gold); }
.wz-btn-next {
  background: var(--gold); color: #080808;
  border: none; border-radius: var(--radius);
  padding: 10px 24px; font-size: .85rem; font-weight: 700;
  letter-spacing: .04em;
  transition: background .25s, transform .2s;
}
.wz-btn-next:hover { background: var(--gold2); transform: translateY(-1px); }

/* ─────────────────────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────────────────────── */
.services-section {
  background: var(--surface);
  padding: 88px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 32px 24px;
  transition: border-color .3s, box-shadow .3s, transform .25s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.service-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: #080808;
}
.service-icon svg { width: 20px; height: 20px; }
.service-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.service-desc { font-size: .88rem; color: var(--text2); line-height: 1.65; }

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────── */
.testimonials-section { padding: 88px 0; background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px; padding: 28px 24px;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); flex-shrink: 0; }
.star { color: var(--gold); font-size: 1rem; }
.testimonial-text {
  font-size: .9rem; color: var(--text2);
  line-height: 1.7; margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
/* Legacy aliases */
.author-avatar,
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bodoni Moda', serif;
  font-size: .85rem; font-weight: 700; color: #080808;
  flex-shrink: 0; letter-spacing: .04em;
}
.author-name,
.testimonial-name { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.author-detail,
.testimonial-loc { font-size: .78rem; color: var(--text3); }

/* ─────────────────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────────────────── */
.about-section { padding: 88px 0; background: var(--surface); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-image-wrap {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border2);
}
.about-image-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(8,8,8,.85); border: 1px solid var(--border2);
  border-radius: 6px; padding: 12px 16px;
  backdrop-filter: blur(8px);
}
[data-theme="light"] .about-image-badge { background: rgba(255,255,255,.9); }
.about-image-badge strong {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem; color: var(--gold); display: block;
}
.about-image-badge span { font-size: .75rem; color: var(--text2); }
.about-content .section-title { margin-bottom: 20px; }
.about-text { font-size: .95rem; color: var(--text2); line-height: 1.8; margin-bottom: 28px; }
.about-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px; margin-bottom: 8px;
  padding: 16px 20px;
  background: rgba(201,168,76,.04);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.about-list-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--text2); line-height: 1.5;
}
.about-list-item::before {
  content: '◆'; color: var(--gold); font-size: .5rem;
  margin-top: 5px; flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────────────────── */
.contact-section { padding: 88px 0; background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}
.contact-info-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--text);
  margin-bottom: 28px;
}
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #080808;
}
.contact-item-icon--wa { background: #25D366; color: #fff; }
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: .75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { font-size: .92rem; color: var(--text); font-weight: 500; }
.contact-map {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border2);
  height: 380px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto 48px;
  padding: 0 clamp(24px, 4vw, 48px);
  text-align: left;
}
.footer-social { align-items: flex-start; }
.footer-list { align-items: flex-start; }
.footer-contact-list { align-items: flex-start; }
.footer-contact-list li { justify-content: flex-start; }
.footer-brand-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand-desc { font-size: .88rem; color: var(--text3); line-height: 1.7; }
.footer-col-title {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text2); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .88rem; color: var(--text3); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { font-size: .85rem; color: var(--text3); display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px clamp(24px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 6px;
}
.footer-bottom-text { font-size: .78rem; color: var(--text3); }
.footer-badge-text { font-size: .78rem; color: var(--text3); }
.footer-legal-links {
  display: flex; flex-wrap: wrap; gap: 2px 6px;
  justify-content: center; font-size: .72rem;
}
.footer-legal-links a { color: var(--text3); text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-links .sep { color: var(--border2); }

/* ── Legal pages (yasal.php) ── */
.legal-tabs-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px, 4vw, 40px);
}
.legal-tabs-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
}
.legal-tab {
  display: inline-block; padding: 13px 18px;
  font-size: .8rem; font-weight: 500; letter-spacing: .02em;
  color: var(--text2); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.legal-tab:hover { color: var(--text); }
.legal-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.legal-section { padding: 56px 0 88px; }
.legal-body {
  max-width: 900px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.legal-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 600; letter-spacing: .04em;
  color: var(--text); margin: 2rem 0 .75rem;
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p {
  font-size: .92rem; color: var(--text2);
  line-height: 1.9; margin-bottom: .9rem;
}
.legal-body strong { color: var(--text); }
.legal-body em { color: var(--text3); font-style: italic; }
@media (max-width: 640px) {
  .legal-tab { padding: 11px 12px; font-size: .76rem; }
  .legal-section { padding: 36px 0 60px; }
}

/* ─────────────────────────────────────────────────────────
   FLOAT BUTTONS (mobile only)
───────────────────────────────────────────────────────── */
.float-btns {
  display: none;
  position: fixed; bottom: 20px; right: 16px; z-index: 800;
  flex-direction: column; gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: none; box-shadow: 0 4px 16px rgba(0,0,0,.4);
  transition: transform .2s, box-shadow .2s;
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn:hover { transform: scale(1.08); }
.float-wa { background: #25D366; color: #fff; }
.float-phone { background: var(--gold); color: #080808; }

/* ─────────────────────────────────────────────────────────
   TOAST
───────────────────────────────────────────────────────── */
.toast-wrap {
  position: fixed; top: 88px; right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--gold);
  border-radius: 6px; padding: 14px 18px;
  box-shadow: var(--shadow);
  font-size: .88rem; color: var(--text);
  min-width: 240px; max-width: 320px;
  animation: toastIn .35s ease forwards;
  pointer-events: auto;
}
.toast.hide { animation: toastOut .35s ease forwards; }

/* ─────────────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes goldShimmer {
  0%   { background-position: 200%; }
  100% { background-position: -200%; }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes toastOut {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateX(20px); }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.shimmer-text {
  background: linear-gradient(90deg, var(--gold2), var(--gold), var(--gold-dark), var(--gold), var(--gold2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

/* ─────────────────────────────────────────────────────────
   SCROLL CARPET — halı rulosu scroll göstergesi
   Aşağı kaydırma → rulo sarılır  |  Yukarı → rulo açılır
───────────────────────────────────────────────────────── */
.scroll-carpet {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 700;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 36px;
}
.scroll-carpet.visible { opacity: 1; }

/* Sarılmış rulo kısmı — daire şeklinde, yukarıda */
.sc-roll {
  width: 36px;
  height: 0;
  border-radius: 50%;
  overflow: hidden;
  background: url('https://i.hizliresim.com/5wjz66u.png') center / cover no-repeat;
  box-shadow:
    inset -5px 0 12px rgba(0,0,0,.55),
    inset  4px 0  8px rgba(255,255,255,.06),
    inset  0 -4px 8px rgba(0,0,0,.3),
    0 3px 14px rgba(0,0,0,.45);
  flex-shrink: 0;
}

/* Düz halı kısmı — aşağı sarkar, üstten kısalır */
.sc-flat {
  width: 36px;
  height: 100px;
  overflow: hidden;
  background: url('https://i.hizliresim.com/5wjz66u.png') bottom center / 36px 100px no-repeat;
  box-shadow: 3px 0 6px rgba(0,0,0,.22), -3px 0 6px rgba(0,0,0,.22);
  flex-shrink: 0;
}

@media (max-width: 900px) { .scroll-carpet { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .scroll-carpet { display: none; }
}

/* ─────────────────────────────────────────────────────────
   EXTENDED STYLES — fills gaps between CSS & PHP templates
───────────────────────────────────────────────────────── */

/* ── Section utilities ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--border2); border-radius: 100px;
  padding: 5px 14px; background: rgba(201,168,76,.06);
  margin-bottom: 14px;
}

/* ── Navbar extras ── */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; color: inherit;
}
.nav-logo-img {
  height: 44px; width: auto;
  object-fit: contain; flex-shrink: 0;
  display: block;
}
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #080808; flex-shrink: 0;
}
.nav-logo-icon svg { width: 16px; height: 16px; }
.icon-sun, .icon-moon { width: 18px; height: 18px; display: block; }
.icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }
.mobile-nav-link {
  display: block; padding: 12px 0; font-size: 1rem; font-weight: 500;
  color: var(--text2); border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav-link:hover, .mobile-nav-link:last-of-type { color: var(--gold); }
.mobile-nav-phone {
  color: var(--gold) !important; font-weight: 600; border-bottom: none !important;
}

/* ── Hero ── */
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: var(--hero-overlay);
}
.hero-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #080808;
  border: 1.5px solid var(--gold); border-radius: var(--radius);
  padding: 13px 28px; font-size: .9rem; font-weight: 700;
  letter-spacing: .04em; cursor: pointer; font-family: 'Jost', sans-serif;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.hero-cta-primary:hover {
  background: var(--gold2); border-color: var(--gold2);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.hero-cta-primary svg, .hero-cta-secondary svg { width: 15px; height: 15px; }
.hero-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); border-radius: var(--radius);
  padding: 13px 28px; font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; font-family: 'Jost', sans-serif;
  transition: background .25s, color .25s, transform .2s;
}
.hero-cta-secondary:hover { background: rgba(201,168,76,.10); transform: translateY(-2px); }

/* ── Stats strip ── */
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}

/* ── Wizard extras ── */
.step-sub { font-size: .9rem; color: var(--text2); margin-bottom: 24px; line-height: 1.6; }
.area-price-preview { font-size: .85rem; color: var(--text3); margin-top: 6px; }
.slider-wrap { position: relative; margin-bottom: 24px; }
.slider-labels { display: flex; justify-content: space-between; font-size: .75rem; color: var(--text3); margin-top: 8px; }
.wz-price-preview { display: flex; flex-direction: column; }
.wz-btn-prev {
  background: transparent; color: var(--text2);
  border: 1px solid var(--border2); border-radius: var(--radius);
  padding: 10px 20px; font-size: .85rem; font-weight: 500;
  cursor: pointer; font-family: 'Jost', sans-serif;
  transition: border-color .2s, color .2s;
}
.wz-btn-prev:hover { border-color: var(--gold); color: var(--gold); }
.carpet-selected-check {
  position: absolute; top: 8px; left: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: #080808;
  display: none; align-items: center; justify-content: center;
}
.carpet-card.selected .carpet-selected-check { display: flex; }
.carpet-selected-check svg { width: 12px; height: 12px; }
.carpet-desc { font-size: .78rem; color: var(--text3); margin-top: 2px; }
.extra-checkbox {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.extra-card.selected .extra-checkbox { background: var(--gold); border-color: var(--gold); color: #080808; }
.extra-checkbox svg { width: 12px; height: 12px; }
.extra-price-unit { font-size: .72rem; color: var(--text3); }

/* ── About page ── */
.about-eyebrow {
  display: block; font-size: .72rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.about-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--text); margin-bottom: 20px; line-height: 1.15;
}
.about-content p + p { margin-top: 14px; }
.about-text-col { }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.about-actions .btn-call,
.about-actions .btn-whatsapp {
  padding: 9px 20px; font-size: .82rem; font-weight: 600; flex: none;
}
.about-img-wrap { position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--border2); }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/3; background: var(--surface2);
  display: flex; align-items: center; justify-content: center; color: var(--text3);
}
.about-img-corner { position: absolute; width: 24px; height: 24px; border-color: var(--gold); border-style: solid; }
.about-img-corner--tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.about-img-corner--br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }
.about-stats-section { background: var(--bg); padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.about-stat-card {
  padding: 24px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 8px;
  transition: border-color .3s;
}
.about-stat-card:hover { border-color: var(--gold); }
.about-stat-num {
  font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1.1; margin-bottom: 6px;
}
.about-stat-label {
  font-family: 'Trajan Pro', 'Trajan', 'Cinzel', serif;
  font-size: .68rem; font-weight: 400; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text3);
}

/* ── Inner page hero ── */
.page-hero { background: var(--surface); border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero-eyebrow {
  display: block; font-size: .72rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--text); margin-bottom: 12px; line-height: 1.1;
}
.page-hero-sub { font-size: 1rem; color: var(--text2); line-height: 1.7; }

/* about-content rich text */
.about-content { font-size: .95rem; color: var(--text2); line-height: 1.8; }
.about-content p { margin-bottom: 14px; }
.about-content p:last-child { margin-bottom: 0; }

/* contact info items spacing */
.contact-items { list-style: none; }
.contact-item-details { display: flex; flex-direction: column; gap: 2px; }

/* ── Contact page extras ── */
.contact-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 12px;
}
.contact-sub { font-size: .95rem; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.contact-info-col { }
.contact-action-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.contact-call-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #080808;
  border: none; border-radius: var(--radius); font-family: 'Jost', sans-serif;
  padding: 9px 18px; font-size: .82rem; font-weight: 700;
  transition: background .25s, transform .2s; cursor: pointer;
}
.contact-call-btn:hover { background: var(--gold2); transform: translateY(-1px); }
.contact-wa-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff;
  border: none; border-radius: var(--radius); font-family: 'Jost', sans-serif;
  padding: 9px 18px; font-size: .82rem; font-weight: 700;
  transition: background .25s, transform .2s; cursor: pointer;
}
.contact-wa-btn:hover { background: #20bf5c; transform: translateY(-1px); }
.contact-call-btn svg, .contact-wa-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.map-col { }
.map-wrap { border-radius: 8px; overflow: hidden; border: 1px solid var(--border2); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-address {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .88rem; color: var(--text3); margin-top: 14px; line-height: 1.5;
}

/* ── Footer extras ── */
.footer-tagline { font-size: .88rem; color: var(--text3); line-height: 1.7; margin-bottom: 16px; }
.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-list a { font-size: .88rem; color: var(--text3); transition: color .2s; }
.footer-list a:hover { color: var(--gold); }
.footer-social { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.footer-social-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text3); transition: color .2s;
}
.footer-social-link:hover { color: var(--gold); }
.footer-accent { color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
═══════════════════════════════════════════════════════════ */

/* ── 1024px: Tablet ── */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .about-stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-grid        { gap: 40px; }
  .hero-title        { font-size: clamp(2.6rem, 5vw, 5rem); }
}

/* ── 900px: Mobile nav breakpoint ── */
@media (max-width: 900px) {
  /* Navbar */
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .float-btns    { display: flex; }

  /* Hero — içeriği ortala */
  .hero-float-badges  { display: none; }
  .hero-brand-overlay { display: none; }
  .hero               { gap: 0; justify-content: center; }
  .hero-content       { text-align: center; max-width: 100%; }
  .hero-eyebrow       { margin-left: auto; margin-right: auto; }
  .hero-cta-row       { justify-content: center; }
  .hero-subtitle      { margin-left: auto; margin-right: auto; }

  /* Stats */
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Layout */
  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── 768px: Small tablet / large mobile ── */
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom     { gap: 4px; }
  .about-stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .map-wrap, .contact-map { height: 260px; }

  /* Section padding azaltma */
  .services-section     { padding: 60px 0; }
  .testimonials-section { padding: 60px 0; }
  .about-section        { padding: 60px 0; }
  .contact-section      { padding: 60px 0; }
  .stats-strip          { padding: 32px 0; }
  .wizard-section       { padding: 60px clamp(16px, 4vw, 24px); }

  /* Typography */
  .section-title    { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .section-subtitle { font-size: .95rem; margin-bottom: 36px; }
  .section-header   { margin-bottom: 32px; }

  /* Touch targets */
  .btn-call, .btn-whatsapp               { min-height: 44px; }
  .contact-call-btn, .contact-wa-btn     { min-height: 44px; }
  .hero-cta-primary, .hero-cta-secondary { min-height: 48px; }

  /* Hero */
  .hero       { min-height: 85vh; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }

  /* Footer logo */
  .footer-logo-img { height: 40px; }
}

/* ── 640px: Mobile ── */
@media (max-width: 640px) {
  /* Hero */
  .hero          { min-height: auto; padding: calc(var(--navbar-h) + 20px) 20px 56px; }
  .hero-title    { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .hero-subtitle { font-size: .9rem; max-width: 100%; }
  .hero-eyebrow  { font-size: .65rem; padding: 5px 12px; letter-spacing: 2px; }
  .hero-cta-row  { gap: 10px; }

  /* Wizard */
  .wizard-body    { padding: 20px 16px; }
  .wizard-footer  { padding: 16px; }
  .wizard-section { padding: 56px 16px; }
  .carpet-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wstep-label    { display: none; }
  .wstep-divider  { min-width: 12px; max-width: 28px; margin: 0 4px; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-section, .testimonials-section,
  .about-section, .contact-section { padding: 52px 0; }
  .about-stats-section { padding: 40px 0; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px; }
  .stat-divider { display: none; }
  .stat-num     { font-size: 2rem; }

  /* Layout helpers */
  .container     { padding: 0 16px; }
  .section-inner { padding: 0 16px; }
  .section-header { margin-bottom: 28px; }
  .section-subtitle { margin-bottom: 28px; }

  /* Page hero (Hakkımızda, İletişim) */
  .page-hero-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .page-hero-inner { padding: 0 16px; }
}

/* ── 520px: Small mobile ── */
@media (max-width: 520px) {
  /* Butonlar tam genişlik dikey */
  .summary-cta-row { flex-direction: column; }
  .btn-call, .btn-whatsapp { flex: none; width: 100%; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-primary, .hero-cta-secondary { width: 100%; justify-content: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .contact-action-btns { flex-direction: column; }
  .contact-call-btn, .contact-wa-btn { justify-content: center; width: 100%; }
  .about-actions { flex-direction: column; }
  .about-actions .btn-call, .about-actions .btn-whatsapp { justify-content: center; width: 100%; }

  /* Grid'ler */
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner   { grid-template-columns: 1fr 1fr; }
}

/* ── 480px: Küçük telefon ── */
@media (max-width: 480px) {
  /* Navbar küçültme */
  .nav-logo-img     { height: 36px; }
  .nav-brand-name   { font-size: .92rem; letter-spacing: .07em; }
  .nav-brand-sub    { font-size: .52rem; letter-spacing: .14em; }
  .navbar           { gap: 8px; padding: 0 12px; }
  .nav-wa-btn       { width: 30px; height: 30px; }
  .nav-wa-btn svg   { width: 13px; height: 13px; }
  .theme-toggle     { width: 30px; height: 30px; }
  .theme-toggle svg { width: 14px; height: 14px; }
  .nav-phone-btn    { display: none; }

  /* Hero */
  .hero       { padding: calc(var(--navbar-h) + 12px) 14px 48px; }
  .hero-title { font-size: clamp(1.7rem, 8.5vw, 2.4rem); line-height: 1.15; }

  /* Wizard */
  .extra-card     { padding: 12px; gap: 10px; }
  .extra-icon     { width: 30px; height: 30px; }
  .extra-icon svg { width: 13px; height: 13px; }
  .wizard-section { padding: 44px 12px; }
  .wizard-header  { padding: 0 10px; min-height: 54px; }
  .wizard-body    { padding: 14px 12px; }
  .wizard-footer  { flex-direction: column; align-items: stretch; gap: 10px; padding: 14px 12px; }
  .wz-price-wrap, .wz-price-preview { text-align: center; }
  .wz-nav         { width: 100%; gap: 8px; }
  .wz-btn-back, .wz-btn-next, .wz-btn-prev { flex: 1; justify-content: center; min-height: 44px; }
  .wz-price-val   { font-size: 1.6rem; }
  .wstep-divider  { min-width: 6px; max-width: 18px; margin: 0 2px; }

  /* Cards */
  .carpet-card     { padding: 12px 8px 10px; }
  .carpet-icon     { width: 30px; height: 30px; }
  .carpet-icon svg { width: 13px; height: 13px; }
  .service-icon    { width: 38px; height: 38px; }
  .service-icon svg { width: 16px; height: 16px; }

  /* About stats */
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-stat-card  { padding: 16px 10px; }
  .about-stat-num   { font-size: 1.7rem; }

  /* Page hero */
  .page-hero-title { font-size: 1.6rem; }

  /* Sections */
  .services-section, .testimonials-section,
  .about-section, .contact-section { padding: 44px 0; }

  /* Footer logo */
  .footer-logo-img { height: 34px; }
  .footer-logo-group { gap: 9px; }
}

/* ── 360px: Çok küçük telefon ── */
@media (max-width: 360px) {
  /* Navbar */
  .nav-brand-sub  { display: none; }
  .nav-logo-img   { height: 30px; }
  .nav-brand-name { font-size: .82rem; }
  .navbar         { padding: 0 10px; gap: 6px; }

  /* Hero */
  .hero       { padding-left: 12px; padding-right: 12px; }
  .hero-title { font-size: clamp(1.55rem, 9vw, 2rem); }

  /* Wizard */
  .area-num            { font-size: 2.8rem; }
  .carpet-grid         { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .wizard-body         { padding: 10px; }
  .wizard-section      { padding: 36px 10px; }
  .summary-total-value { font-size: 1.7rem; }
  .wstep-num           { width: 26px; height: 26px; font-size: .75rem; }

  /* Stats */
  .stat-num         { font-size: 1.8rem; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Footer logo */
  .footer-logo-img { height: 28px; }
  .footer-logo-group { gap: 8px; }
}

/* ─────────────────────────────────────────────────────────
   MISSING CLASS ALIASES
───────────────────────────────────────────────────────── */
/* nav-link = individual anchor inside .nav-links nav */
.nav-link {
  position: relative; font-size: .9rem; font-weight: 500;
  color: var(--text2); padding: 6px 12px;
  transition: color .25s;
  text-decoration: none;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

/* .range-slider = same as input[type="range"] */
.range-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--border2); border-radius: 2px;
  outline: none; cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.range-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: none;
}

/* .wz-btn = base class for wizard nav buttons */
.wz-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; cursor: pointer; font-family: 'Jost', sans-serif;
  font-size: .85rem; font-weight: 600; border-radius: var(--radius);
  padding: 10px 22px; transition: background .25s, border-color .2s, color .2s, transform .2s;
}

/* .footer-brand = wrapper for brand name + desc in footer */
.footer-brand {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold);
  margin-bottom: 12px;
}
.footer-logo-group {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; text-decoration: none;
}
.footer-logo-group .nav-brand-name {
  font-size: 1.25rem; letter-spacing: .12em;
}
.footer-logo-group .nav-brand-sub {
  font-size: .62rem; letter-spacing: .24em;
}
.footer-logo-img {
  height: 48px; width: auto; object-fit: contain;
  flex-shrink: 0; display: block;
}
