/* AYG Koltuk Yıkama Eskişehir */

:root {
  --bg: #f3f6f9;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  /* Temizlik / güven hissi: profesyonel mavi tonları */
  --brand: #2563eb;
  --brand-light: #38bdf8;
  --brand-dark: #1e40af;
  --accent: #f59e0b;
  --line: #e2e8f0;
  --shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
  --radius: 16px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1 1 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 400px) {
  .brand-logo {
    max-height: 52px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    gap: 0.35rem;
    padding: 0.55rem 0.55rem 0.55rem 0.4rem;
  }

  /* Ara + ikonlu WhatsApp için alan */
  .brand {
    max-width: calc(100% - 9.5rem);
  }

  .brand-logo {
    max-height: 38px;
    max-width: min(100%, 52vw);
  }

  .nav-actions {
    gap: 0.3rem;
    flex-shrink: 0;
    margin-left: 0;
  }

  .site-header .nav-actions .btn:not(.btn--icon-only) {
    padding: 0.42rem 0.55rem;
    font-size: 0.76rem;
    gap: 0.25rem;
    border-width: 1.5px;
    white-space: nowrap;
  }

  .site-header .nav-actions .btn:not(.btn--icon-only) .icon {
    width: 1em;
    height: 1em;
  }

  .site-header .nav-actions .btn--wa.btn--icon-only {
    padding: 0.4rem 0.5rem;
  }

  .site-header .nav-actions .btn--wa.btn--icon-only .icon {
    width: 1.2em;
    height: 1.2em;
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
}

.btn--ghost:hover {
  background: rgba(37, 99, 235, 0.08);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn--primary:hover {
  background: var(--brand-dark);
  color: #fff;
}

.btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn--wa:hover {
  background: #1fb855;
  color: #fff;
}

.btn--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: none;
}

.btn--ig:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn .icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* Header: sadece WhatsApp ikonu (yazı yok) */
.site-header .nav-actions .btn--wa.btn--icon-only {
  padding: 0.55rem 0.6rem;
}

.site-header .nav-actions .btn--wa.btn--icon-only .icon {
  width: 1.25em;
  height: 1.25em;
}

/* Hero */
.hero-wrap {
  background: linear-gradient(165deg, #eff6ff 0%, var(--bg) 45%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.08fr;
    gap: 3rem;
    align-items: start;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  background: rgba(59, 130, 246, 0.18);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 38ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-figure--carousel {
  overflow: visible;
}

.hero-figure--carousel > .hero-carousel {
  border-radius: inherit;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hero-carousel__viewport {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  outline: none;
}

.hero-carousel__viewport:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Track kutusu kalkar: slaytlar doğrudan viewport flex çocuğu → %100 = kaydırma alanı genişliği (mobil taşma düzelir) */
.hero-carousel__track {
  display: contents;
}

.hero-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-carousel__slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .hero {
    padding: 1.7rem 1rem 2.2rem;
  }

  .hero-carousel__slide img {
    aspect-ratio: 16 / 9;
    max-height: 245px;
  }

  .hero-caption {
    font-size: 0.78rem;
    padding: 0.55rem 0.75rem 0.65rem;
  }
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.2s, transform 0.15s;
}

.hero-carousel__arrow:hover {
  background: #fff;
}

.hero-carousel__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-carousel__arrow--prev {
  left: 0.5rem;
}

.hero-carousel__arrow--next {
  right: 0.5rem;
}

@media (max-width: 480px) {
  .hero-carousel__arrow {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.25rem;
  }

  .hero-carousel__arrow--prev {
    left: 0.35rem;
  }

  .hero-carousel__arrow--next {
    right: 0.35rem;
  }
}

.hero-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0 0.15rem;
  flex-wrap: wrap;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-carousel__dot:hover {
  background: #cbd5e1;
}

.hero-carousel__dot.is-active,
.hero-carousel__dot[aria-selected="true"] {
  background: var(--brand);
  transform: scale(1.15);
}

.hero-caption {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.65rem 1rem 0.85rem;
  margin: 0;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.mini-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.65rem;
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.mini-stat span {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Sections */
section {
  padding: 3.25rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 3.2vw, 1.95rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 65ch;
}

.section-sub--tight {
  margin-bottom: 1rem;
}

.section-sub--after-cards {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.section-sub--flush {
  margin-bottom: 0;
}

.cta-band .hero-cta {
  justify-content: center;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.alt-bg {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tint-bg {
  background: linear-gradient(180deg, #f0f9ff 0%, var(--bg) 100%);
}

/* Media split */
.media-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 850px) {
  .media-split {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
  }

  .media-split--reverse .media-split__fig {
    order: 2;
  }

  .media-split--reverse .media-split__body {
    order: 1;
  }
}

.media-split__fig {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-split__fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rich-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.rich-list li {
  margin-bottom: 0.7rem;
  padding-left: 0.2rem;
}

.rich-list li::marker {
  color: var(--brand);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pill {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: rgba(59, 130, 246, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cards--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cards--secondary {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .cards--secondary {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow);
}

.card__img {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__img img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.35rem 1.25rem 1.45rem;
}

.card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.45rem;
}

.card__badge--primary {
  background: var(--brand);
  color: #fff;
}

.card__badge--soft {
  background: rgba(100, 116, 139, 0.15);
  color: var(--muted);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

/* Results */
.results-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 980px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.result-card h3 {
  margin: 0;
  padding: 1rem 1rem 0.85rem;
  font-size: 1rem;
  line-height: 1.35;
}

.result-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.result-shot {
  margin: 0;
  position: relative;
  border-top: 1px solid var(--line);
}

.result-shot--single {
  /* Tek fotoğraflı kartlarda üst ayırıcı çizgi kullanmayalım */
  border-top: none;
}

.result-shot + .result-shot {
  border-left: 1px solid var(--line);
}

.result-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.result-shot figcaption {
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
}

@media (max-width: 520px) {
  .result-card h3 {
    font-size: 0.95rem;
  }
}

/* FAQ */
.faq {
  max-width: 760px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  padding: 0 1rem;
}

details[open] {
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 0;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--brand);
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Local */
.local-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .local-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.local-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px dashed var(--line);
}

.local-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.local-box p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

/* Instagram */
.instagram-section {
  background: linear-gradient(180deg, #eff6ff 0%, var(--surface) 40%, var(--bg) 100%);
}

.ig-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.ig-intro-text {
  max-width: 52ch;
}

.ig-widget-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.ig-widget-wrap iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.ig-widget-placeholder {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.ig-widget-placeholder strong {
  color: var(--text);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 1.5rem;
}

@media (min-width: 500px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .ig-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }
}

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ig-tile a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.ig-tile a:hover img {
  transform: scale(1.06);
}

.ig-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.5rem;
}

.ig-tile a:hover .ig-tile__overlay {
  opacity: 1;
}

.ig-tile__overlay span {
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.ig-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 2.75rem 1.25rem;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.cta-band p {
  margin: 0 0 1.35rem;
  opacity: 0.95;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn--ghost {
  border-color: #fff;
  color: #fff;
}

.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cta-band .btn--wa {
  background: #fff;
  color: #1d4ed8;
  box-shadow: none;
}

.cta-band .btn--wa:hover {
  background: #eff6ff;
  color: var(--brand-dark);
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 2.25rem 1.25rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.site-footer strong {
  color: #e2e8f0;
}

.site-footer a {
  color: #93c5fd;
}

.footer-note {
  font-size: 0.8rem;
  opacity: 0.88;
  margin-top: 1rem;
}

/* Sticky bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
}

.sticky-cta .btn {
  flex: 1;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

body {
  padding-bottom: 5rem;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}
