/* =========================================================
   BeyazEşya Servis — Premium Tema
   ========================================================= */
:root {
  --blue: #0b5cd6;
  --blue-dark: #0847a6;
  --blue-soft: #e8f1ff;
  --orange: #ff7a00;
  --orange-dark: #e86e00;
  --ink: #131c2e;
  --muted: #5c6b84;
  --line: #e4eaf5;
  --bg: #f6f9ff;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 92, 214, 0.12);
  --radius: 18px;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-head: "Poppins", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

section { padding: 90px 0; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  font-family: var(--font-body);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 92, 214, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); }

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { transform: translateY(-2px); background: #1fb959; }

.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { transform: translateY(-2px); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }

.btn--lg { padding: 16px 34px; font-size: 18px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--header {
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0;
  gap: 6px;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff3b30, #d20f0f);
  color: #fff;
  box-shadow: 0 4px 12px rgba(210, 15, 15, .3);
}
.btn--header:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(210, 15, 15, .45); }
.btn__icon { width: 12px; height: 12px; flex-shrink: 0; }

/* ---------- Bölüm başlıkları ---------- */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-head__tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-head h2 span { color: var(--blue); }
.section-head p { color: var(--muted); }

/* ---------- Üst bilgi çubuğu ---------- */
.topbar { background: var(--ink); color: #fff; padding: 8px 0; font-size: 14px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__left span::before { content: "✔ "; }
.topbar__right a { font-weight: 700; }
.topbar__phone:hover { color: var(--orange); }

/* ---------- Menü ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: nowrap; padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border-radius: 12px;
}
.brand__logo svg { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-head); font-size: 18px; font-weight: 700; white-space: nowrap; line-height: 1.15; }
.brand__name strong { color: var(--blue); font-weight: 800; }
.brand__name--sub { color: var(--ink); white-space: nowrap; letter-spacing: .5px; }
.brand__tag {
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; }
.nav a { font-weight: 600; color: var(--ink); position: relative; padding: 4px 0; white-space: nowrap; font-size: 15px; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--orange);
  transition: width .25s;
}
.nav a:hover::after { width: 100%; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 25px; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(11,92,214,.14), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(255,122,0,.1), transparent 60%),
    var(--bg);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }

.badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}
.hero__content h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__content h1 span {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { color: var(--muted); font-size: 18px; max-width: 520px; margin-bottom: 30px; }
.hero__districts {
  font-weight: 800;
  font-size: 17px;
  color: var(--blue);
  letter-spacing: .3px;
  margin: 0 0 22px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.hero__bullets li {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink);
  font-size: 15px;
}
.hero__bullets li::before {
  content: ""; width: 22px; height: 22px;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5cd6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__visual { position: relative; }
.hero__card--main {
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 380px;
  margin-left: auto;
}
.hero__card-img {
  background: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.hero__card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__card-body { padding: 22px 26px 0; }
.hero__card--main h3 {
  font-family: var(--font-head);
  font-size: 20px;
  margin: 0 0 6px;
}
.hero__card--main p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 20px;
}
.hero__card-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero__rating-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; flex-shrink: 0; }
.hero__rating-score { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--blue); flex-shrink: 0; }
.hero__rating-text { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.35; }
.hero__card--main h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }
.hero__card--main p { color: var(--muted); font-size: 15px; }

/* ---------- Sayaçlar ---------- */
.stats { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; padding: 44px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num { display: block; font-family: var(--font-head); font-size: 38px; font-weight: 800; }
.stat__label { opacity: .85; font-size: 14px; font-weight: 600; }

/* ---------- Hizmetler ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: block;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue); }
.service__icon { font-size: 42px; display: block; margin-bottom: 16px; }
.service h3 { font-family: var(--font-head); font-size: 19px; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.service__link { font-weight: 700; color: var(--blue); font-size: 14px; }

/* ---------- Hizmet Bölgeleri ---------- */
.areas { background: var(--white); }
.areas__group-title {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 18px;
  color: var(--ink);
}
.areas__group-title span { color: var(--blue); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 42px;
}
.areas__grid a {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  transition: .25s;
}
.areas__grid a:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow); background: #fff; }

.areas__seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}
.areas__seo-grid a {
  background: var(--blue-soft);
  border: 1px solid rgba(11, 92, 214, .25);
  color: var(--blue);
  border-radius: 12px;
  padding: 15px 12px;
  text-align: center;
  font-weight: 700;
  transition: .25s;
}
.areas__seo-grid a:hover { background: #fff; box-shadow: var(--shadow); }

@media (max-width: 860px) { .areas__grid, .areas__seo-grid { grid-template-columns: repeat(2, 1fr); } .brands__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .areas__grid, .areas__seo-grid { grid-template-columns: 1fr; } .brands__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Neden Biz ---------- */
.why { background: var(--bg); }
.why__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.why__text h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.why__text h2 span { color: var(--blue); }
.why__text > p { color: var(--muted); margin-bottom: 28px; }
.why__list { display: grid; gap: 16px; margin-bottom: 32px; }
.why__list li { display: flex; gap: 14px; align-items: flex-start; }
.why__icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--orange); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
}
.why__list strong { font-family: var(--font-head); }
.why__list div { color: var(--muted); font-size: 15px; }

.why__image { display: grid; gap: 20px; }
.why__card {
  background: linear-gradient(160deg, #fff, var(--blue-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.why__card h3 { font-family: var(--font-head); margin-bottom: 6px; }
.why__card p { color: var(--muted); font-size: 15px; }

/* ---------- Adımlar ---------- */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; font-size: 24px; font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-family: var(--font-head);
}
.step h3 { font-family: var(--font-head); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Markalar ---------- */
.brands { padding-top: 0; }
.brands__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 42px; }
.brands__service-grid { margin-bottom: 8px; }
.brands__grid span {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--muted);
  transition: .25s;
}
.brands__grid span:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow); }
.brands__note { text-align: center; color: var(--muted); margin-top: 26px; font-size: 15px; }

/* ---------- Yorumlar ---------- */
.testimonials { background: var(--bg); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow);
}
.testimonial__stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial p { color: var(--ink); font-size: 15px; margin-bottom: 16px; }
.testimonial__name { color: var(--muted); font-weight: 600; font-size: 14px; }

/* ---------- S.S.S ---------- */
.faq__wrap { max-width: 760px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 24px; color: var(--blue); font-weight: 800; }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--muted); padding-top: 12px; font-size: 15px; }

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(255,255,255,.12), transparent 70%),
    linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  text-align: center;
}
.cta__inner { display: grid; gap: 14px; justify-items: center; }
.cta h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 38px); font-weight: 800; }
.cta p { font-size: 17px; opacity: .92; }
.cta__actions { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- İletişim ---------- */
.contact { background: var(--bg); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact__info h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 36px); font-weight: 800; margin-bottom: 14px; }
.contact__info h2 span { color: var(--blue); }
.contact__info > p { color: var(--muted); margin-bottom: 28px; }
.contact__list { display: grid; gap: 16px; margin-bottom: 28px; }
.contact__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.contact__list span { font-size: 22px; }
.contact__list a:hover { color: var(--blue); }

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.contact__form h3 { font-family: var(--font-head); margin-bottom: 4px; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--ink);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
.contact__form-note { text-align: center; color: var(--muted); font-size: 13px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.brand--footer .brand__text strong { color: var(--orange); }
.brand--footer .brand__name--sub { color: #fff; }
.brand--footer .brand__tag { color: rgba(255, 255, 255, .55); }
.brand--footer .brand__logo { background: var(--orange); }
.footer__brand p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer__links, .footer__contact { display: grid; gap: 10px; align-content: start; }
.footer h4 { font-family: var(--font-head); margin-bottom: 10px; color: #fff; }
.footer a { color: rgba(255,255,255,.75); font-size: 14px; }
.footer a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.6); }

/* ---------- Yüzen ara butonu ---------- */
.float-call {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(255, 122, 0, .45);
  z-index: 99;
  animation: pulse 2s infinite;
}
.float-call svg { width: 26px; height: 26px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 0, .45); }
  70% { box-shadow: 0 0 0 18px rgba(255, 122, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); }
}

/* ---------- Yukarı çık butonu ---------- */
.back-top {
  position: fixed;
  right: 22px; bottom: 94px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 22px rgba(11, 92, 214, .4);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.back-top svg { width: 22px; height: 22px; }
.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(11, 92, 214, .5); }

/* ---------- Görünüm animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Duyarlı tasarım ---------- */
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0; right: -280px;
    width: 280px; height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 90px 30px 30px;
    box-shadow: -20px 0 40px rgba(19,28,46,.15);
    transition: right .3s ease;
    z-index: 101;
  }
  .nav.open { right: 0; }
  .nav a { font-size: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .burger { display: block; z-index: 102; }
  .btn--header { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  section { padding: 60px 0; }
  .hero__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; margin-top: 20px; }
  .hero__card--main { margin-inline: auto; }
  .testimonials__grid, .steps__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero__bullets { grid-template-columns: 1fr; }
  .services__grid, .brands__grid { grid-template-columns: 1fr; }
  .brands__grid span { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .cta__actions { flex-direction: column; }
}