/* ============================================================
   ESKIAT — Professional Design System
   ============================================================ */

/* ====== TOKENS ====== */
:root {
  /* Brand */
  --brand:        #d4570a;
  --brand-hover:  #b84808;
  --brand-soft:   #fdf0e8;
  --brand-muted:  #f5cba8;

  /* Neutral (warm zinc) */
  --ink-900: #18181b;
  --ink-800: #27272a;
  --ink-700: #3f3f46;
  --ink-500: #71717a;
  --ink-400: #a1a1aa;
  --ink-200: #e4e4e7;
  --ink-100: #f4f4f5;
  --ink-50:  #fafafa;

  /* Surface */
  --surface:       #ffffff;
  --surface-raised:#ffffff;
  --surface-inset: #f7f7f8;
  --bg:            #f5f5f6;

  /* Shadows — layered for real depth */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 4px 8px rgba(0,0,0,.06);
  --shadow-md: 0 2px 4px rgba(0,0,0,.04), 0 8px 20px rgba(0,0,0,.08), 0 24px 48px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 6px rgba(0,0,0,.04), 0 12px 32px rgba(0,0,0,.10), 0 40px 80px rgba(0,0,0,.08);
  --shadow-brand: 0 4px 12px rgba(212,87,10,.25), 0 12px 32px rgba(212,87,10,.15);

  /* Borders */
  --border:       rgba(0,0,0,.08);
  --border-light: rgba(0,0,0,.05);

  /* Radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ====== TYPOGRAPHY ====== */
h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; }
h2 { font-size: clamp(26px, 3vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; }
h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
h1 em { font-style: normal; color: var(--brand); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14.5px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s ease;
  border: 1.5px solid transparent;
  letter-spacing: .1px;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,87,10,.35), 0 16px 40px rgba(212,87,10,.18);
}

.btn--outline-orange {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand-muted);
}
.btn--outline-orange:hover { background: var(--brand-soft); border-color: var(--brand); }

.btn--nav {
  background: var(--brand);
  color: #fff;
  padding: 9px 20px;
  font-size: 14px;
  border-radius: var(--r-sm);
  box-shadow: none;
}
.btn--nav:hover { background: var(--brand-hover); transform: none; box-shadow: none; }

.btn--ghost {
  background: transparent;
  color: var(--ink-700);
  border-color: var(--ink-200);
}
.btn--ghost:hover { background: var(--ink-100); }

.btn--full { width: 100%; }
.btn--lg { padding: 15px 32px; font-size: 15.5px; }

/* ====== NAV ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.06); }

.nav__inner { display: flex; align-items: center; height: 64px; gap: 8px; }

.logo {
  font-size: 21px;
  font-weight: 900;
  color: var(--ink-900);
  text-decoration: none;
  letter-spacing: -0.8px;
}
.logo span { color: var(--brand); }
.logo--footer { color: #fff; }
.logo--footer span { color: var(--brand-muted); }

.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__links a {
  text-decoration: none;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .15s;
}
.nav__links a:not(.btn):hover { color: var(--ink-900); background: var(--ink-100); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  border-radius: 8px;
}
.nav__burger:hover { background: var(--ink-100); }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink-800); border-radius: 2px; transition: all .25s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--surface);
  z-index: 199;
  padding: 28px 24px;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  text-decoration: none;
  color: var(--ink-800);
  font-weight: 600;
  font-size: 17px;
  padding: 14px 12px;
  border-radius: 10px;
  border-bottom: 1px solid var(--ink-100);
}
.nav__mobile-menu a:hover { background: var(--ink-50); }
.nav__mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ====== HERO ====== */
.hero {
  background: var(--ink-900);
  background-image:
    radial-gradient(ellipse 60% 60% at 15% 110%, rgba(212,87,10,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%,  rgba(212,87,10,.07) 0%, transparent 50%);
  color: #fff;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: 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.018'%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");
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__text { max-width: 680px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: .3px;
}
.badge__dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.5); } }

.hero__text h1 { margin-bottom: 18px; }
.hero__text p {
  font-size: 17.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.stat span   { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500; margin-top: 2px; display: block; }
.stat__divider { width: 1px; height: 32px; background: rgba(255,255,255,.1); }

/* ====== TEKLIF WIDGET ====== */
.teklif-widget {
  width: 100%;
  max-width: 880px;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 28px 28px 24px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 8px 16px rgba(0,0,0,.2),
    0 32px 64px rgba(0,0,0,.3),
    0 64px 120px rgba(0,0,0,.15);
}

.widget-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.widget-select {
  width: 100%;
  padding: 11px 36px 11px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-family: inherit;
  font-weight: 500;
  color: var(--ink-800);
  background: var(--ink-50);
  cursor: pointer;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.widget-select:focus {
  border-color: var(--brand);
  background-color: var(--surface);
  box-shadow: 0 0 0 3px rgba(212,87,10,.10);
}
.widget-select:hover:not(:focus) { border-color: var(--ink-400); background-color: var(--surface); }

.widget-zaman {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.widget-zaman__label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-400);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.widget-gun-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.gun-pill {
  padding: 6px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink-600, var(--ink-700));
  background: var(--surface);
  cursor: pointer;
  transition: all .15s;
  letter-spacing: .1px;
}
.gun-pill:hover {
  border-color: var(--brand-muted);
  color: var(--brand);
  background: var(--brand-soft);
}
.gun-pill--active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212,87,10,.3);
}

.widget-btn {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-size: 15.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .1px;
  box-shadow: var(--shadow-brand);
}
.widget-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,87,10,.4), 0 16px 40px rgba(212,87,10,.2);
}
.widget-btn:active { transform: translateY(0); }

.widget-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
  flex-wrap: wrap;
}
.widget-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: .1px;
}
.widget-trust-item svg { color: var(--brand); flex-shrink: 0; }

/* ====== TRUST BAR ====== */
.trust-bar { background: var(--ink-800); padding: 13px 0; }
.trust-bar__inner {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-bar__inner span {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  padding: 4px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  letter-spacing: .2px;
}
.trust-bar__inner span:last-child { border-right: none; }

/* ====== SECTION HEADER ====== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 12px; color: var(--ink-900); }
.section-header p { font-size: 16.5px; color: var(--ink-500); max-width: 480px; margin: 0 auto; line-height: 1.7; }

.section-tag {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand);
  padding: 4px 13px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid var(--brand-muted);
}
.section-tag--light {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.15);
}

/* ====== HİZMETLER ====== */
.hizmetler { background: var(--surface); }

.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hizmet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.hizmet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.hizmet-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-sm);
}
.hizmet-card--featured:hover {
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-md);
}

.hizmet-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--brand);
  color: #fff;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
  letter-spacing: .3px;
}

.hizmet-card__img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 28px;
}
.hizmet-card__img--1 { background: linear-gradient(135deg, #fef3e8 0%, #fde6c8 100%); }
.hizmet-card__img--2 { background: linear-gradient(135deg, #c4520a 0%, #d4570a 100%); }
.hizmet-card__img--3 { background: linear-gradient(135deg, #f4f4f5 0%, #e4e4e7 100%); }
.hizmet-card__img--4 { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }

.hizmet-card__initial {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-hover);
  letter-spacing: -1px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 1px 3px rgba(0,0,0,.1);
}
.hizmet-card__initial--light { background: rgba(255,255,255,.18); color: rgba(255,255,255,.95); }

.hizmet-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.hizmet-card__body h3 { font-size: 19px; color: var(--ink-900); }
.hizmet-card__body p  { font-size: 14px; color: var(--ink-500); line-height: 1.65; }

.hizmet-list { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hizmet-list li {
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
  padding-left: 16px;
  position: relative;
}
.hizmet-list li::before { content: '—'; position: absolute; left: 0; color: var(--brand); font-weight: 700; font-size: 11px; top: 1px; }

/* ====== NASIL ÇALIŞIR ====== */
.nasil { background: var(--ink-50); position: relative; }
.nasil::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.steps-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  width: 228px;
  transition: all .22s ease;
  box-shadow: var(--shadow-xs);
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.step-card__num {
  font-size: 52px;
  font-weight: 900;
  color: var(--ink-100);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -2px;
}
.step-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--ink-900); }
.step-card p  { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }

.steps-arrow { color: var(--ink-200); width: 52px; flex-shrink: 0; margin-top: 72px; }
.steps-arrow svg { width: 100%; }

.nasil__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ====== NEDEN BİZ ====== */
.neden { background: var(--ink-900); color: #fff; }
.neden .section-header h2 { color: #fff; }
.neden .section-header p  { color: rgba(255,255,255,.5); }

.neden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.neden-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all .2s ease;
}
.neden-card:hover {
  background: rgba(212,87,10,.06);
  border-color: rgba(212,87,10,.2);
  transform: translateY(-2px);
}
.neden-card__bar { width: 28px; height: 3px; background: var(--brand); border-radius: 2px; margin-bottom: 18px; }
.neden-card h3 { font-size: 15.5px; margin-bottom: 8px; color: #fff; font-weight: 700; }
.neden-card p  { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.65; }

/* Counters */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.counter {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,.03);
}
.counter__num {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.counter span { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ====== YORUMLAR ====== */
.yorumlar { background: var(--surface); }

.yorum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.yorum-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .2s ease;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yorum-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.yorum-card--highlight {
  background: var(--brand-soft);
  border-color: var(--brand-muted);
}

.yorum-stars { color: var(--brand); font-size: 15px; letter-spacing: 2px; }
.yorum-card > p { font-size: 14.5px; color: var(--ink-700); line-height: 1.75; font-style: italic; flex: 1; }

.yorum-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.yorum-avatar {
  width: 40px; height: 40px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1.5px solid var(--brand-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.yorum-author strong { display: block; font-size: 14px; color: var(--ink-900); }
.yorum-author span   { font-size: 12px; color: var(--ink-400); }

/* ====== TEKLİF BÖLÜMÜ ====== */
.teklif { background: var(--ink-50); }

.teklif__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 72px;
  align-items: start;
}

.teklif__left h2 { margin-bottom: 14px; }
.teklif__left p  { font-size: 16px; color: var(--ink-500); margin-bottom: 36px; line-height: 1.7; }

.teklif-info-list { display: flex; flex-direction: column; gap: 18px; }
.teklif-info-item { display: flex; gap: 14px; align-items: flex-start; }
.teklif-info-bullet {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.teklif-info-item strong { display: block; font-size: 14.5px; margin-bottom: 3px; color: var(--ink-900); }
.teklif-info-item p { font-size: 13px; color: var(--ink-500); margin: 0; line-height: 1.6; }

.teklif__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.teklif__form h3 { font-size: 20px; color: var(--ink-900); margin-bottom: 2px; }

/* ====== SHARED FORM ELEMENTS ====== */
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label { font-size: 12.5px; font-weight: 700; color: var(--ink-500); text-transform: uppercase; letter-spacing: .5px; }

.form__group input,
.form__group select,
.form__group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--ink-50);
  transition: border-color .15s, box-shadow .15s, background .15s;
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(212,87,10,.10);
}
.form__group textarea { resize: vertical; min-height: 90px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__trust { font-size: 11.5px; color: var(--ink-400); text-align: center; letter-spacing: .1px; }

/* ====== DAY PICKER (teklif formu) ====== */
.day-picker { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }

.day-btn {
  flex: 1;
  min-width: 68px;
  padding: 9px 6px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-sm);
  background: var(--surface);
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  font-family: inherit;
  box-shadow: var(--shadow-xs);
}
.day-btn:hover { border-color: var(--brand-muted); background: var(--brand-soft); }
.day-btn.active { border-color: var(--brand); background: var(--brand-soft); box-shadow: 0 0 0 3px rgba(212,87,10,.10); }

.day-btn__label {
  display: block; font-size: 9.5px; font-weight: 700;
  color: var(--ink-400); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px;
}
.day-btn.active .day-btn__label { color: var(--brand); }
.day-btn__day { display: block; font-size: 13px; font-weight: 700; color: var(--ink-900); margin-bottom: 2px; }
.day-btn.active .day-btn__day { color: var(--brand-hover); }
.day-btn__date { display: block; font-size: 10.5px; color: var(--ink-400); font-weight: 500; }

/* ====== BLOG ÖNİZLEME ====== */
.blog-preview { background: var(--ink-50); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .22s ease;
  box-shadow: var(--shadow-xs);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }

.blog-card__cat {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: fit-content;
  border: 1px solid var(--brand-muted);
}
.blog-card h3 { font-size: 16px; line-height: 1.4; }
.blog-card h3 a { color: var(--ink-900); text-decoration: none; }
.blog-card h3 a:hover { color: var(--brand); }
.blog-card p { font-size: 13.5px; color: var(--ink-500); line-height: 1.65; flex: 1; }

.blog-more { color: var(--brand); font-size: 13px; font-weight: 700; text-decoration: none; margin-top: 4px; letter-spacing: .1px; }
.blog-more:hover { text-decoration: underline; }

/* ====== İLETİŞİM ====== */
.iletisim { background: var(--ink-900); }

.iletisim__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.iletisim__info h2 { color: #fff; margin-bottom: 14px; }
.iletisim__info p  { color: rgba(255,255,255,.55); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }

.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  transition: all .18s ease;
}
a.contact-item:hover { background: rgba(212,87,10,.08); border-color: rgba(212,87,10,.25); transform: translateX(4px); }

.contact-item__icon {
  min-width: 48px; height: 40px; padding: 0 10px;
  background: var(--brand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800; color: #fff;
  flex-shrink: 0; letter-spacing: .3px;
}
.contact-item strong { display: block; color: rgba(255,255,255,.9); font-size: 13.5px; margin-bottom: 2px; }
.contact-item span   { color: rgba(255,255,255,.45); font-size: 12.5px; }

.map-placeholder {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.map-placeholder__icon {
  width: 68px; height: 68px;
  background: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff;
  margin: 0 auto 20px;
  letter-spacing: .5px;
  box-shadow: var(--shadow-brand);
}
.map-placeholder strong { font-size: 26px; font-weight: 800; display: block; margin-bottom: 8px; }
.map-placeholder p { color: rgba(255,255,255,.5); margin-bottom: 28px; font-size: 14px; }

/* ====== FOOTER ====== */
.footer { background: #111113; }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 24px 48px;
  max-width: 1140px;
  margin: 0 auto;
}

.footer__brand p { color: rgba(255,255,255,.35); font-size: 13.5px; line-height: 1.7; margin: 12px 0 20px; }
.footer__social  { display: flex; gap: 8px; flex-wrap: wrap; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all .18s;
}
.social-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links h4 { color: rgba(255,255,255,.9); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.footer__links a  { color: rgba(255,255,255,.35); text-decoration: none; font-size: 13.5px; transition: color .15s; }
.footer__links a:hover { color: rgba(255,255,255,.75); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 24px; }
.footer__bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 12.5px; color: rgba(255,255,255,.22);
}

/* ====== WhatsApp Float ====== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.4), 0 8px 24px rgba(37,211,102,.2);
  z-index: 999;
  transition: all .22s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.5), 0 12px 32px rgba(37,211,102,.25); }


/* ======================================================
   ANIMATED DESIGN — Scroll Reveal + Hero + Micro
   ====================================================== */

/* --- Hero: page-load keyframes --- */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroZoomBg {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,87,10,0); }
  50%     { box-shadow: 0 0 0 10px rgba(212,87,10,.18); }
}
@keyframes floatWA {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}
@keyframes waEntrance {
  from { opacity:0; transform: scale(.5) translateY(24px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
@keyframes countUp {
  from { opacity:0; transform: scale(.8); }
  to   { opacity:1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* --- Hero element animations (triggered on load) --- */
.hero-anim-badge  { animation: heroSlideDown .6s cubic-bezier(.4,0,.2,1) .1s both; }
.hero-anim-title  { animation: heroSlideUp   .75s cubic-bezier(.4,0,.2,1) .2s both; }
.hero-anim-sub    { animation: heroSlideUp   .7s  cubic-bezier(.4,0,.2,1) .38s both; }
.hero-anim-cta    { animation: heroSlideUp   .7s  cubic-bezier(.4,0,.2,1) .52s both; }
.hero-anim-form   { animation: heroFadeIn    .9s  ease .65s both; }
.hero-anim-bg     { animation: heroZoomBg   1.4s  cubic-bezier(.4,0,.2,1) both; }

/* --- CTA glow pulse --- */
.btn-glow-pulse { animation: glowPulse 2.6s ease-in-out infinite; }

/* --- WhatsApp floating button --- */
.wa-float {
  animation: waEntrance .7s cubic-bezier(.34,1.56,.64,1) 1.2s both,
             floatWA 3.2s ease-in-out 2.2s infinite;
}

/* --- AOS overrides: smoother easing --- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* --- Stat counter animate-in --- */
.stat-anim { animation: countUp .5s cubic-bezier(.4,0,.2,1) both; }

/* --- Card hover: lift + glow on dark cards --- */
.hover-lift {
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease !important;
}
.hover-lift:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,.14) !important;
}

/* --- Gradient shimmer on hero overlay --- */
.hero-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.04) 50%, transparent 60%);
  background-size: 800px 100%;
  animation: shimmer 4s linear infinite;
  pointer-events: none;
}

/* ====== Back to Top ====== */
.back-to-top {
  position: fixed;
  bottom: 84px; right: 24px;
  width: 40px; height: 40px;
  background: var(--surface);
  color: var(--ink-700);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: all .22s;
  z-index: 998;
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--ink-100); transform: translateY(-2px); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .teklif__inner    { grid-template-columns: 1fr; }
  .iletisim__inner  { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr 1fr; }
  .neden-grid       { grid-template-columns: repeat(2, 1fr); }
  .widget-row       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section          { padding: 64px 0; }
  .hizmet-grid      { grid-template-columns: 1fr; }
  .yorum-grid       { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .counters         { grid-template-columns: repeat(2, 1fr); }
  .counter          { padding: 24px 16px; }
  .steps-wrap       { flex-direction: column; align-items: center; }
  .steps-arrow      { transform: rotate(90deg); margin: 0; width: 40px; }
  .neden-grid       { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar__inner span { border-right: none; padding: 3px 12px; }
}

@media (max-width: 640px) {
  .nav__links  { display: none; }
  .nav__burger { display: flex; }
  .form__row   { grid-template-columns: 1fr; }
  .counter__num { font-size: 36px; }
  h1 { font-size: 30px; }
  .widget-row { grid-template-columns: 1fr 1fr; }
  .widget-trust { gap: 14px; }
  .teklif-widget { padding: 20px 16px; border-radius: var(--r-lg); }
  .trust-bar { display: none; }
}
