/* ==========================================================================
   Boya Badana Ustası — main.css
   İstanbul Anadolu Yakası Boyacı
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Değişkenler)
   -------------------------------------------------------------------------- */
:root {
  /* Renk paleti */
  --primary: #1B3A5C;        /* koyu lacivert */
  --primary-dark: #12293F;   /* daha koyu lacivert (hover) */
  --primary-light: #2A557F;
  --accent: #F0A500;         /* amber sarı */
  --accent-dark: #D18E00;    /* amber hover */
  --surface: #F7F5F2;        /* kırık beyaz zemin */
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --border: #E4E0DA;
  --success: #2E9E5B;

  /* Tipografi */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Boyutlar */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Gölgeler (minimal) */
  --shadow-sm: 0 1px 3px rgba(27, 58, 92, 0.08);
  --shadow-md: 0 4px 16px rgba(27, 58, 92, 0.10);
  --shadow-lg: 0 12px 32px rgba(27, 58, 92, 0.14);

  /* Konteyner */
  --container: 1180px;
  --gap: 1.5rem;

  /* Geçişler */
  --transition: 0.25s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Temel
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Tipografi
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

small { font-size: 0.875rem; }

.text-light { color: var(--text-light); }
.text-accent { color: var(--accent-dark); }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   4. Yardımcı Sınıflar & Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section--surface { background: var(--surface); }
.section--white { background: var(--white); }

.section__head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}

.section__subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   5. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.85rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

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

.btn--lg {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   6. Header / Nav
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), padding var(--transition);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--primary); }

.nav__logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nav__logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  line-height: 1;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.nav__link:hover { color: var(--primary); }
.nav__link.is-active { color: var(--primary); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav__actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  white-space: nowrap;
}
.nav__phone svg { width: 18px; height: 18px; }

/* Hamburger */
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.nav__mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.nav__mobile.is-open { transform: translateY(0); }

.nav__mobile ul { margin-bottom: 1.25rem; }
.nav__mobile li { border-bottom: 1px solid var(--border); }
.nav__mobile a {
  display: block;
  padding: 0.9rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}
.nav__mobile-actions { display: flex; flex-direction: column; gap: 0.75rem; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(240, 165, 0, 0.18), transparent 45%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

.hero__content h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 1.1rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero__badges span { display: flex; align-items: center; gap: 0.4rem; }
.hero__badges svg { width: 18px; height: 18px; color: var(--accent); }

.hero__media {
  position: relative;
  padding: 12px;
}
/* Dekoratif amber çerçeve arka planı */
.hero__media::before {
  content: "";
  position: absolute;
  top: 0; right: -14px; bottom: 24px; left: 24px;
  border: 2px solid rgba(240, 165, 0, 0.55);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  transition: transform 0.6s ease;
}
.hero__frame:hover .hero__img { transform: scale(1.04); }

/* Yüzen puan kartı (sol alt) */
.hero__rating {
  position: absolute;
  left: -6px;
  bottom: 6px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-lg);
}
.hero__rating-stars { color: var(--accent); font-size: 1rem; letter-spacing: 1px; }
.hero__rating-text strong { display: block; color: var(--primary); font-size: 1.1rem; line-height: 1.1; }
.hero__rating-text span { font-size: 0.78rem; color: var(--text-light); }

/* Yüzen deneyim rozeti (sağ üst) */
.hero__badge-float {
  position: absolute;
  top: -2px;
  right: -10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  box-shadow: var(--shadow-md);
}
.hero__badge-float svg { width: 26px; height: 26px; }
.hero__badge-float span { font-size: 0.8rem; line-height: 1.05; font-weight: 500; }
.hero__badge-float strong { font-family: var(--font-display); font-size: 1.15rem; }

/* --------------------------------------------------------------------------
   8. Güven Çubuğu
   -------------------------------------------------------------------------- */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 2rem 0;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(240, 165, 0, 0.14);
  border-radius: var(--radius);
  color: var(--accent-dark);
}
.trust__icon svg { width: 24px; height: 24px; }
.trust__text strong { display: block; font-size: 1rem; color: var(--primary); }
.trust__text small { color: var(--text-light); }

/* --------------------------------------------------------------------------
   9. Kartlar (Hizmet / Blog / Değer)
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.card-grid--3 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 30px; height: 30px; }

.card__title { margin-bottom: 0.5rem; }
.card__text { color: var(--text-light); margin-bottom: 1.25rem; flex-grow: 1; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary);
}
.card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card__link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   10. Süreç (Nasıl Çalışıyoruz)
   -------------------------------------------------------------------------- */
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}
.process__step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.process__num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
}
.process__step h3 { font-size: 1.2rem; }
.process__step p { color: var(--text-light); margin-bottom: 0; font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   11. Hizmet Bölgeleri (Pills)
   -------------------------------------------------------------------------- */
.regions {
  background: var(--primary);
  color: var(--white);
}
.regions h2 { color: var(--white); }
.regions .section__subtitle { color: rgba(255,255,255,0.8); }

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 860px;
  margin: 0 auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
}
.pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   12. Müşteri Yorumları
   -------------------------------------------------------------------------- */
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.review__stars { color: var(--accent); margin-bottom: 0.9rem; letter-spacing: 2px; font-size: 1.1rem; }
.review__text { color: var(--text); font-style: italic; margin-bottom: 1.25rem; }
.review__author { display: flex; align-items: center; gap: 0.75rem; }
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.review__name { font-weight: 600; color: var(--primary); line-height: 1.2; }
.review__loc { font-size: 0.85rem; color: var(--text-light); }

/* --------------------------------------------------------------------------
   13. CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--accent);
  color: var(--primary-dark);
  text-align: center;
}
.cta-banner__inner { padding: 3rem 0; }
.cta-banner h2 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.cta-banner p { color: var(--primary-dark); opacity: 0.85; margin-bottom: 1.5rem; }
.cta-banner__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}
.cta-banner__phone:hover { color: var(--primary); }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.footer__logo svg { width: 30px; height: 30px; }
.footer p { font-size: 0.92rem; margin-bottom: 0.85rem; }
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}
.footer__phone:hover { color: var(--accent); }

.footer__col h4 { color: var(--white); font-family: var(--font-body); font-size: 1rem; margin-bottom: 1rem; }
.footer__col ul li { margin-bottom: 0.55rem; }
.footer__col ul a { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.footer__col ul a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   15. Page Hero (iç sayfalar)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--accent); }

/* --------------------------------------------------------------------------
   16. İstatistik (Sayılarla Biz)
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.stat {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__label { color: var(--text-light); font-size: 0.92rem; }

/* --------------------------------------------------------------------------
   17. Hizmet Detay Bölümleri
   -------------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }

.service-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-block__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

.feature-list { margin: 1.25rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.feature-list svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--success);
  margin-top: 2px;
}

.price-note {
  background: rgba(240, 165, 0, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  color: var(--text);
  margin: 1.25rem 0;
}

/* --------------------------------------------------------------------------
   18. İletişim
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-card__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.5rem 0 1.25rem;
}
.contact-card__phone:hover { color: var(--accent-dark); }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 22px; height: 22px; color: var(--accent-dark); flex-shrink: 0; margin-top: 2px; }
.info-row strong { display: block; color: var(--primary); }
.info-row span { color: var(--text-light); font-size: 0.95rem; }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__group label { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }

/* --------------------------------------------------------------------------
   19. Blog
   -------------------------------------------------------------------------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card__date { font-size: 0.8rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card__title { font-size: 1.25rem; margin-bottom: 0.6rem; }
.blog-card__title a { color: var(--primary); }
.blog-card__excerpt { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.1rem; flex-grow: 1; }

/* Blog article */
.article {
  background: var(--white);
}
.article__wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.article__tag {
  background: rgba(240, 165, 0, 0.14);
  color: var(--accent-dark);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.8rem;
}
.article__body { font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.article__body h2 { margin-top: 2.25rem; }
.article__body h3 { margin-top: 1.75rem; color: var(--primary-light); }
.article__body p { margin-bottom: 1.2rem; }
.article__body ul { margin: 0 0 1.2rem 1.25rem; list-style: disc; }
.article__body ul li { margin-bottom: 0.5rem; padding-left: 0.25rem; }
.article__body strong { color: var(--primary); }
.article__body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--surface);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light);
}

.article__cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}
.article__cta h3 { color: var(--white); }
.article__cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.article__cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.ask-box {
  background: var(--surface);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.ask-box p { margin-bottom: 1rem; font-weight: 500; color: var(--primary); }

/* --------------------------------------------------------------------------
   20. WhatsApp Floating Button
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.08); color: var(--white); }
.wa-float svg { width: 32px; height: 32px; }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------------------------------------------------------------------------
   21. İçerik metin blokları (genel)
   -------------------------------------------------------------------------- */
.prose { max-width: 720px; }
.prose p { color: var(--text); margin-bottom: 1.2rem; }
.lead { font-size: 1.15rem; color: var(--text-light); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.brand-tag {
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   22. SSS (FAQ) — yerel ilçe sayfaları
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.faq__item h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.faq__item h3::before {
  content: "S";
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}
.faq__item p { color: var(--text-light); margin-bottom: 0; padding-left: 2rem; }

/* Yerel içerik prose bloğu (metin ağırlıklı bölümler) */
.local-content { max-width: 820px; margin: 0 auto; }
.local-content h2 { margin-top: 2.25rem; }
.local-content p { color: var(--text); margin-bottom: 1.1rem; }
.local-content ul { margin: 0 0 1.1rem 1.25rem; list-style: disc; color: var(--text); }
.local-content ul li { margin-bottom: 0.4rem; }

/* "Neden Biz" 4'lü grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.why-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.why-item svg { width: 28px; height: 28px; color: var(--accent-dark); flex-shrink: 0; }
.why-item strong { display: block; color: var(--primary); margin-bottom: 0.25rem; font-size: 1.05rem; }
.why-item span { color: var(--text-light); font-size: 0.95rem; }
@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Fiyat/süre bilgi kutusu */
.info-box {
  background: rgba(27, 58, 92, 0.05);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  max-width: 820px;
}
.info-box strong { color: var(--primary); }
