/* ==================================================
   STYLE.CSS - DÜZENLENMİŞ SÜRÜM

   Mantık:
   - Admin ve veritabanı sabit.
   - İç sayfa CSS'leri sabit.
   - Yeni sektör tasarımlarında ağırlıklı olarak
     sadece "ANA SAYFA" bölümü değiştirilecek.
================================================== */

/* ==================================================
   01. ROOT / GENEL AYARLAR
================================================== */

* {
  box-sizing: border-box;
}

:root {
  --primary: #e31e24;
  --dark: #111827;
  --muted: #64748b;
  --border: #e5e7eb;
  --bg: #f8fafc;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--dark);
  background: #fff;
  letter-spacing: -0.01em;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow-container {
  width: min(860px, calc(100% - 40px));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 400;
}

/* ==================================================
   02. HEADER
================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 400;
}

.site-logo img {
  max-height: 44px;
}

.site-logo span {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.site-logo img {
  height: 48px;
  max-height: 48px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 400;
  color: #334155;
}

.header-action a {
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}

/* ==================================================
   03. FOOTER
================================================== */

.site-footer {
  position: relative;
  background: radial-gradient(circle at top left, rgba(8, 122, 85, 0.14), transparent 30%), linear-gradient(135deg, #061425 0%, #020617 100%);
  color: #fff;
  padding: 70px 0 0;
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.85fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
}

.footer-logo span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #087a55;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 400;
}

.footer-logo strong {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 22px;
  font-weight: 400;
}

.footer-whatsapp {
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #087a55;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 17px;
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 400;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a,
.footer-address {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-contact span,
.footer-address span {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: rgba(8, 122, 85, 0.18);
  color: #35d399;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.footer-contact strong,
.footer-address p {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  font-weight: 400;
}

.footer-bottom {
  margin-top: 54px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 400;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom a {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 48px 0 78px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==================================================
   04. ANA SAYFA - TEMİZLİK 1
================================================== */

.home-temizlik-1 {
  background: #fff;
  color: #071a3d;
}

.clean-hero {
  min-height: 720px;
  padding: 86px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.1) 72%),
    url("../images/theme/hero.png") center right / cover no-repeat;
  border-bottom: 1px solid #e5e7eb;
}

.clean-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 40px;
  align-items: center;
}

.clean-hero-content h1 {
  font-size: clamp(48px, 6vw, 55px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: #071a3d;
  margin: 0 0 20px;
  font-weight: 400;
}

.clean-hero-content h1 span,
.clean-hero-content h1 strong {
  color: #0f63d8;
}

.clean-hero-content p {
  color: #334155;
  font-size: 17px;
  line-height: 1.65;
  max-width: 590px;
  margin: 0;
  font-weight: 400;
}

.clean-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.clean-whatsapp-btn,
.clean-primary-btn,
.clean-white-btn {
  height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 400;
}

.clean-whatsapp-btn {
  background: #10b85c;
  color: #fff;
  box-shadow: 0 16px 36px rgba(16, 184, 92, 0.2);
}

.clean-primary-btn {
  background: #0f63d8;
  color: #fff;
  box-shadow: 0 16px 36px rgba(15, 99, 216, 0.2);
}

.clean-white-btn {
  background: #fff;
  color: #0f63d8;
}

.clean-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #334155;
  font-size: 14px;
  font-weight: 400;
}

.clean-hero-notes span {
  position: relative;
  padding-left: 18px;
}

.clean-hero-notes span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f63d8;
  font-weight: 400;
}

.clean-feature-strip {
  transform: translateY(50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.1);
}

.clean-feature-strip div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 15px;
  align-items: center;
}

.clean-feature-strip span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #0f63d8;
  border: 1px solid rgba(15, 99, 216, 0.2);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 400;
  grid-row: span 2;
}

.clean-feature-strip strong {
  color: #071a3d;
  font-size: 16px;
  font-weight: 400;
}

.clean-feature-strip p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}

.clean-services-section {
  padding: 86px 0 34px;
  background: #fff;
}

.clean-section-heading.center {
  text-align: center;
}

.clean-section-heading h2,
.clean-section-top h2 {
  color: #071a3d;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 0 0 26px;
  font-weight: 400;
}

.clean-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.clean-service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.clean-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 99, 216, 0.25);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.1);
}

.clean-service-image {
  display: block;
  height: 170px;
  overflow: hidden;
  background: #eef2f7;
}

.clean-service-image img,
.clean-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.clean-service-card:hover img,
.clean-blog-card:hover img {
  transform: scale(1.04);
}

.clean-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top right, rgba(15, 99, 216, 0.14), transparent 34%), linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.clean-image-placeholder span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  color: #0f63d8;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 400;
}

.clean-service-body {
  position: relative;
  padding: 32px 22px 22px;
}

.clean-card-icon {
  position: absolute;
  top: -24px;
  left: 22px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #0f63d8;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 21px;
  font-weight: 400;
  box-shadow: 0 12px 30px rgba(15, 99, 216, 0.22);
}

.clean-service-body h3 {
  color: #071a3d;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
  font-weight: 400;
}

.clean-service-body p {
  color: #475569;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  min-height: 46px;
  font-weight: 400;
}

.clean-service-body a,
.clean-blog-body a,
.clean-section-top a {
  color: #0f63d8;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 400;
}

.clean-about-section {
  padding: 28px 0 34px;
  background: #fff;
}

.clean-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: center;
}

.clean-about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.clean-about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.clean-about-content span {
  display: inline-flex;
  color: #0f63d8;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.clean-about-content h2 {
  color: #071a3d;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
  font-weight: 400;
}

.clean-about-content p {
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 18px;
  font-weight: 400;
}

.clean-about-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.clean-about-content li {
  color: #334155;
  font-size: 15px;
  font-weight: 400;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
}

.clean-about-content li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0f63d8;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 400;
}

.clean-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.clean-stats-grid div {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.clean-stats-grid strong {
  display: block;
  color: #0f63d8;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.clean-stats-grid p {
  color: #475569;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}

.clean-why-section {
  padding: 38px 0 30px;
  background: #fff;
}

.clean-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.clean-why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.clean-why-card span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #071a3d;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.clean-why-card h3 {
  color: #071a3d;
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 400;
}

.clean-why-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

.clean-reference-section {
  padding: 26px 0 34px;
  background: #fff;
}

.clean-reference-box {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.04);
}

.clean-reference-intro h2 {
  color: #071a3d;
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 400;
}

.clean-reference-intro p {
  color: #64748b;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 0 18px;
}

.clean-reference-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  padding: 18px 0;
}

.clean-reference-stats div {
  text-align: center;
  border-right: 1px solid #eef2f7;
}

.clean-reference-stats div:last-child {
  border-right: 0;
}

.clean-reference-stats strong {
  color: #0f63d8;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.clean-reference-stats p {
  color: #475569;
  margin: 4px 0 0;
  font-size: 14px;
}

.clean-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.clean-logo-card {
  min-height: 80px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #334155;
  font-size: 13px;
  font-weight: 400;
}

.clean-logo-card img {
  max-height: 42px;
  object-fit: contain;
}

.clean-blog-section {
  padding: 34px 0;
  background: #fff;
}

.clean-section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.clean-blog-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
}

.clean-blog-image {
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
  background: #eef2f7;
}

.clean-blog-body h3 {
  color: #071a3d;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.035em;
  margin: 0 0 8px;
  font-weight: 400;
}

.clean-blog-body p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}

.clean-faq-section {
  padding: 28px 0 34px;
  background: #fff;
}

.clean-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.clean-faq-grid details {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  overflow: hidden;
}

.clean-faq-grid summary {
  min-height: 48px;
  cursor: pointer;
  color: #071a3d;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.clean-faq-grid summary::-webkit-details-marker {
  display: none;
}

.clean-faq-grid summary::after {
  content: "+";
  color: #071a3d;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.clean-faq-grid details[open] summary::after {
  content: "-";
}

.clean-faq-grid p {
  color: #64748b;
  line-height: 1.65;
  padding: 0 18px 16px;
  margin: 0;
}

.clean-final-cta {
  padding: 34px 0 30px;
  background: #fff;
}

.clean-final-box {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 34%), linear-gradient(135deg, #075bce, #06439e);
  color: #fff;
  border-radius: 12px;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  box-shadow: 0 22px 60px rgba(15, 99, 216, 0.25);
}

.clean-final-box h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 0 0 8px;
  font-weight: 400;
}

.clean-final-box p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 16px;
}

.clean-final-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo img {
  height: 199px;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ==================================================
   ANA SAYFA - TEMİZLİK 1 RESPONSIVE
================================================== */

@media (max-width: 1180px) {
  .clean-feature-strip,
  .clean-why-grid,
  .clean-reference-stats,
  .clean-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clean-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clean-about-grid {
    grid-template-columns: 1fr;
  }

  .clean-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clean-blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .clean-hero {
    min-height: auto;
    padding: 58px 0 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)),
      url("../images/theme/hero.png") center / cover no-repeat;
  }

  .clean-hero-grid,
  .clean-feature-strip,
  .clean-services-grid,
  .clean-why-grid,
  .clean-reference-stats,
  .clean-logo-grid,
  .clean-faq-grid,
  .clean-stats-grid {
    grid-template-columns: 1fr;
  }

  .clean-hero-content h1 {
    font-size: 42px;
  }

  .clean-hero-content p {
    font-size: 17px;
  }

  .clean-hero-actions,
  .clean-final-actions {
    width: 100%;
    flex-direction: column;
  }

  .clean-whatsapp-btn,
  .clean-primary-btn,
  .clean-white-btn {
    width: 100%;
  }

  .clean-feature-strip {
    transform: translateY(34px);
    padding: 24px;
  }

  .clean-services-section {
    padding-top: 72px;
  }

  .clean-about-image img {
    height: 240px;
  }

  .clean-section-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-blog-card {
    grid-template-columns: 1fr;
  }

  .clean-blog-image {
    height: 220px;
  }

  .clean-final-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

/* ==================================================
   05. ORTAK RESPONSIVE / GENEL KIRILIMLAR
================================================== */

@media (max-width: 980px) {
  .site-nav,
  .header-action {
    display: none;
  }

  .hero-grid,
  .card-grid.three,
  .reference-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 60px 0;
  }

  .section-block {
    padding: 60px 0;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==================================================
   06. HİZMET LİSTELEME
================================================== */

.services-hero {
  padding: 46px 0 34px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-hero .container {
  position: relative;
}

.services-hero-content {
  max-width: 100%;
  min-height: 250px;
  padding: 42px 46px;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.1), transparent 32%), linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.services-hero-content::after {
  content: "";
  position: absolute;
  right: 44px;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(8, 122, 85, 0.06);
  transform: translateY(-50%);
  pointer-events: none;
}

.services-hero-content .eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(8, 122, 85, 0.08);
  color: #087a55;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.services-hero-content h1 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 16px;
  color: #071a3d;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 400;
}

.services-hero-content p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 760px) {
  .services-hero {
    padding: 28px 0 24px;
  }

  .services-hero-content {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .services-hero-content::after {
    display: none;
  }

  .services-hero-content h1 {
    font-size: 40px;
  }

  .services-hero-content p {
    font-size: 16px;
  }
}

.services-list-section {
  padding: 26px 0 80px;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-list-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.service-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 30, 36, 0.28);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.service-card-image {
  display: block;
  height: 178px;
  overflow: hidden;
  background: #e2e8f0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.service-list-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top right, rgba(227, 30, 36, 0.16), transparent 34%), linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.service-image-placeholder span {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 400;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.service-card-body {
  padding: 18px;
}

.service-card-body h2 {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin: 0 0 9px;
}

.service-card-body p {
  color: #64748b;
  line-height: 1.55;
  font-size: 14px;
  margin: 0 0 16px;
  min-height: 44px;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111827;
  font-size: 13px;
  font-weight: 400;
}

.service-detail-link span {
  color: var(--primary);
}

.whatsapp-service-cta {
  margin-top: 22px;
  background: radial-gradient(circle at left, rgba(255, 255, 255, 0.24), transparent 28%), linear-gradient(135deg, #059669, #047857);
  color: #fff;
  border-radius: 22px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  box-shadow: 0 22px 60px rgba(5, 150, 105, 0.24);
}

.whatsapp-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-icon span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #059669;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.whatsapp-service-cta h2 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin: 0 0 5px;
}

.whatsapp-service-cta p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  line-height: 1.5;
}

.whatsapp-service-cta a {
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: #fff;
  color: #047857;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.empty-public-state {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 44px 24px;
  text-align: center;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.empty-public-state strong {
  display: block;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.empty-public-state p {
  color: #64748b;
  margin: 0;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-service-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whatsapp-icon {
    margin: 0 auto;
  }

  .whatsapp-service-cta a {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding: 42px 0 24px;
  }

  .services-list-section {
    padding-bottom: 56px;
  }

  .service-card-image {
    height: 210px;
  }
}

/* ==================================================
   07. HİZMET DETAY
================================================== */

.service-detail-page {
  padding: 54px 0 80px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.04), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.detail-breadcrumb {
  margin-bottom: 28px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: start;
}

.service-detail-heading {
  position: relative;
  margin-bottom: 28px;
  padding: 42px 46px;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.1), transparent 32%), linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.service-detail-heading::after {
  content: "";
  position: absolute;
  right: 44px;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(8, 122, 85, 0.06);
  transform: translateY(-50%);
  pointer-events: none;
}

.service-detail-heading h1 {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 0 16px;
  color: #071a3d;
  font-size: clamp(44px, 6vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 400;
}

.service-detail-heading p {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 760px) {
  .service-detail-heading {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .service-detail-heading::after {
    display: none;
  }

  .service-detail-heading h1 {
    font-size: 40px;
  }

  .service-detail-heading p {
    font-size: 16px;
  }
}

.service-detail-image {
  border-radius: 24px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  margin-bottom: 34px;
}

.service-detail-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-detail-placeholder {
  height: 360px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top right, rgba(227, 30, 36, 0.14), transparent 34%), linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.service-detail-placeholder span {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 400;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.service-detail-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px;
  color: #334155;
  font-size: 16px;
  line-height: 1.85;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.service-detail-content p {
  margin-top: 0;
}

.service-detail-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 98px;
}

.info-panel,
.other-services-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.info-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #edf2f7;
}

.info-item:last-of-type {
  margin-bottom: 0;
}

.info-item > span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid #dbe3ee;
  color: #0f2a56;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.info-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: #0f172a;
}

.info-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 4px;
}

.trust-box {
  margin-top: 22px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
}

.trust-box span {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #fff;
  color: #0f2a56;
  display: grid;
  place-items: center;
  font-weight: 400;
  margin-bottom: 12px;
}

.trust-box p {
  color: #334155;
  line-height: 1.65;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.other-services-box h3 {
  margin: 0 0 14px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.other-services-box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #edf2f7;
  color: #334155;
  font-size: 14px;
  font-weight: 400;
}

.other-services-box a:last-child {
  border-bottom: 0;
}

.other-services-box a span {
  color: var(--primary);
}

.service-detail-cta {
  margin-top: 42px;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.cta-whatsapp-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: #ecfdf5;
  display: grid;
  place-items: center;
}

.cta-whatsapp-icon span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.service-detail-cta h2 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.service-detail-cta p {
  color: #64748b;
  margin: 0;
}

.service-detail-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-dark,
.cta-light {
  height: 48px;
  padding: 0 20px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.cta-dark {
  background: #0f2a56;
  color: #fff;
}

.cta-light {
  background: #fff;
  color: #0f2a56;
  border: 1px solid #cbd5e1;
}

@media (max-width: 980px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-sidebar {
    position: static;
  }

  .service-detail-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-whatsapp-icon {
    margin: 0 auto;
  }

  .service-detail-cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .service-detail-page {
    padding: 40px 0 60px;
  }

  .service-detail-image img,
  .service-detail-placeholder {
    height: 260px;
  }

  .service-detail-content,
  .info-panel,
  .other-services-box {
    padding: 22px;
  }

  .service-detail-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-dark,
  .cta-light {
    width: 100%;
  }
}

/* ==================================================
   08. ÜRÜN LİSTELEME
================================================== */

.products-hero {
  padding: 58px 0 28px;
  background: radial-gradient(circle at top right, rgba(15, 42, 86, 0.06), transparent 32%), linear-gradient(180deg, #ffffff, #f8fafc);
}

.products-hero-content {
  max-width: 760px;
}

.products-hero-content h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  margin: 0 0 16px;
  color: #071a3d;
}

.products-hero-content p {
  color: #334155;
  font-size: 18px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

.products-list-section {
  padding: 28px 0 84px;
  background: #f8fafc;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-list-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 42, 86, 0.22);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.product-card-image {
  display: block;
  height: 188px;
  overflow: hidden;
  background: #e2e8f0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.product-list-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top right, rgba(15, 42, 86, 0.13), transparent 34%), linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.product-image-placeholder span {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  color: #0f2a56;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 400;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.product-card-body {
  padding: 19px;
}

.product-card-body h2 {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0 0 9px;
  color: #071a3d;
}

.product-price {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 400;
}

.product-card-body p {
  color: #64748b;
  line-height: 1.58;
  font-size: 14px;
  margin: 0 0 17px;
  min-height: 44px;
}

.product-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0f2a56;
  font-size: 14px;
  font-weight: 400;
}

.product-detail-link span {
  color: var(--primary);
}

.product-whatsapp-cta {
  margin-top: 24px;
  background: radial-gradient(circle at left, rgba(255, 255, 255, 0.13), transparent 28%), linear-gradient(135deg, #071a3d, #031126);
  color: #fff;
  border-radius: 22px;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  box-shadow: 0 24px 70px rgba(7, 26, 61, 0.24);
}

.product-whatsapp-icon {
  width: 74px;
  height: 74px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.09);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-whatsapp-icon span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.product-whatsapp-cta h2 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 0 0 6px;
}

.product-whatsapp-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.55;
}

.product-whatsapp-cta a {
  height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  background: #fff;
  color: #071a3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-whatsapp-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-whatsapp-icon {
    margin: 0 auto;
  }

  .product-whatsapp-cta a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-hero {
    padding: 42px 0 24px;
  }

  .products-list-section {
    padding-bottom: 60px;
  }

  .product-card-image {
    height: 220px;
  }
}

/* ==================================================
   09. ÜRÜN DETAY
================================================== */

.product-detail-page {
  padding: 52px 0 84px;
  background: radial-gradient(circle at top right, rgba(7, 26, 61, 0.045), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: start;
  margin-bottom: 42px;
}

.product-main-image {
  border-radius: 24px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid #e5e7eb;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.product-main-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.product-detail-placeholder {
  height: 560px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top right, rgba(15, 42, 86, 0.13), transparent 34%), linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.product-detail-placeholder span {
  width: 94px;
  height: 94px;
  border-radius: 30px;
  background: #fff;
  color: #0f2a56;
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 400;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.product-detail-info {
  padding-top: 8px;
}

.product-badge {
  display: inline-flex;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  align-items: center;
  background: #eef2ff;
  color: #0f2a56;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 18px;
}

.product-detail-info h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  color: #071a3d;
  margin: 0 0 16px;
}

.product-detail-price {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  color: #071a3d;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.product-detail-summary {
  color: #334155;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 560px;
}

.product-feature-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.product-feature-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
}

.product-feature-list span {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #0f2a56;
  font-size: 13px;
  font-weight: 400;
}

.product-feature-list p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  font-weight: 400;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 28px;
}

.product-action-dark,
.product-action-light {
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
}

.product-action-dark {
  background: #071a3d;
  color: #fff;
  box-shadow: 0 18px 42px rgba(7, 26, 61, 0.2);
}

.product-action-light {
  background: #fff;
  color: #071a3d;
  border: 1px solid #cbd5e1;
}

.product-mini-notes {
  border-top: 1px solid #e5e7eb;
  padding-top: 22px;
  display: grid;
  gap: 14px;
}

.product-mini-notes div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
}

.product-mini-notes span {
  color: #071a3d;
  font-weight: 400;
}

.product-mini-notes p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 400;
}

.product-description-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
  margin-bottom: 42px;
}

.product-description-tabs {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 28px;
}

.product-description-tabs strong {
  display: inline-flex;
  padding-bottom: 16px;
  border-bottom: 2px solid #071a3d;
  color: #071a3d;
  font-size: 16px;
  font-weight: 400;
}

.product-description-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 38px;
}

.product-description-content {
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.product-description-content p {
  margin-top: 0;
}

.product-trust-panel {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.product-trust-panel div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
}

.product-trust-panel span {
  color: #071a3d;
  font-weight: 400;
}

.product-trust-panel p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  font-weight: 400;
}

.related-products-section {
  margin-bottom: 28px;
}

.related-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.related-heading h2 {
  font-size: 30px;
  letter-spacing: -0.045em;
  color: #071a3d;
  margin: 0;
}

.related-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #071a3d;
  font-size: 14px;
  font-weight: 400;
}

.related-heading a span {
  color: var(--primary);
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.related-product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.related-product-image {
  display: block;
  height: 220px;
  background: #eef2f7;
  overflow: hidden;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product-card > div {
  padding: 18px;
}

.related-product-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: -0.035em;
  color: #071a3d;
}

.related-product-card strong {
  color: #071a3d;
  font-size: 18px;
  font-weight: 400;
}

.product-detail-whatsapp-cta {
  background: radial-gradient(circle at left, rgba(255, 255, 255, 0.13), transparent 28%), linear-gradient(135deg, #071a3d, #031126);
  color: #fff;
  border-radius: 22px;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  box-shadow: 0 24px 70px rgba(7, 26, 61, 0.24);
}

.product-detail-whatsapp-icon {
  width: 74px;
  height: 74px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.09);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-detail-whatsapp-icon span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.product-detail-whatsapp-cta h2 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 0 0 6px;
}

.product-detail-whatsapp-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.55;
}

.product-detail-whatsapp-cta a {
  height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  background: #fff;
  color: #071a3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .product-detail-hero,
  .product-description-grid {
    grid-template-columns: 1fr;
  }

  .product-main-image img,
  .product-detail-placeholder {
    height: 460px;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .product-detail-actions {
    grid-template-columns: 1fr;
  }

  .product-detail-whatsapp-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-detail-whatsapp-icon {
    margin: 0 auto;
  }

  .product-detail-whatsapp-cta a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .product-detail-page {
    padding: 40px 0 60px;
  }

  .product-main-image img,
  .product-detail-placeholder {
    height: 300px;
  }

  .product-description-box {
    padding: 24px;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
  10. BLOG LİSTELEME - BAŞLIK ALANI
================================================== */

.blog-page-hero {
  padding: 46px 0 34px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.blog-page-hero .breadcrumb {
  margin-bottom: 22px;
}

.blog-page-heading {
  position: relative;
  max-width: 100%;
  min-height: 250px;
  padding: 42px 46px;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.1), transparent 32%), linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  text-align: left;
  margin: 0;
}

.blog-page-heading::after {
  content: "";
  position: absolute;
  right: 44px;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(8, 122, 85, 0.06);
  transform: translateY(-50%);
  pointer-events: none;
}

.blog-page-heading .eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(8, 122, 85, 0.08);
  color: #087a55;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.blog-page-heading h1 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 16px;
  color: #071a3d;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 400;
}

.blog-page-heading p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}

.blog-filter-row {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.blog-filter-row span {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 760px) {
  .blog-page-hero {
    padding: 28px 0 24px;
  }

  .blog-page-heading {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .blog-page-heading::after {
    display: none;
  }

  .blog-page-heading h1 {
    font-size: 40px;
  }

  .blog-page-heading p {
    font-size: 16px;
  }

  .blog-filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .blog-filter-row span {
    flex: 0 0 auto;
  }
}
.blog-filter-row span.active {
  background: #087a55;
  border-color: #087a55;
  color: #fff;
}

.blog-list-section {
  padding: 28px 0 82px;
  background: #f8fafc;
}

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

.blog-list-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.blog-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 26, 61, 0.2);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.blog-card-image {
  height: 220px;
  display: block;
  overflow: hidden;
  background: #e2e8f0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.blog-list-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top right, rgba(7, 26, 61, 0.12), transparent 34%), linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.blog-image-placeholder span {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  color: #071a3d;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 400;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.blog-card-body {
  padding: 20px;
}

.blog-category-label {
  height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #071a3d;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 12px;
}

.blog-card-body h2 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
  color: #071a3d;
}

.blog-card-body p {
  color: #64748b;
  line-height: 1.6;
  font-size: 14px;
  margin: 0 0 18px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #eef2f7;
  padding-top: 14px;
}

.blog-card-footer small {
  color: #64748b;
  font-size: 12px;
  font-weight: 400;
}

.blog-card-footer a {
  color: #071a3d;
  font-size: 13px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.blog-card-footer a span {
  color: var(--primary);
}

.blog-newsletter-cta {
  margin-top: 26px;
  background: radial-gradient(circle at left, rgba(255, 255, 255, 0.42), transparent 26%), linear-gradient(135deg, #eef5ff, #e8eef7);
  border: 1px solid #dbe3ee;
  border-radius: 22px;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.newsletter-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  color: #071a3d;
  font-size: 32px;
}

.blog-newsletter-cta h2 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 0 0 6px;
  color: #071a3d;
}

.blog-newsletter-cta p {
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

.blog-newsletter-cta a {
  height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  background: #071a3d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-newsletter-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-icon {
    margin: 0 auto;
  }

  .blog-newsletter-cta a {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-page-hero {
    padding: 42px 0 24px;
  }

  .blog-list-section {
    padding-bottom: 60px;
  }

  .blog-card-image {
    height: 220px;
  }

  .blog-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==================================================
   11. BLOG DETAY
================================================== */

.blog-detail-page {
  padding: 52px 0 84px;
  background: radial-gradient(circle at top right, rgba(7, 26, 61, 0.04), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
  align-items: start;
}

.blog-detail-main {
  min-width: 0;
}

.blog-detail-image {
  border-radius: 24px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
}

.blog-detail-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.blog-detail-placeholder {
  height: 430px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top right, rgba(7, 26, 61, 0.13), transparent 34%), linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.blog-detail-placeholder span {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: #fff;
  color: #071a3d;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 400;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #64748b;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 14px;
}

.blog-detail-heading {
  margin-bottom: 24px;
}

.blog-detail-heading h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: #071a3d;
  margin: 0 0 14px;
}

.blog-detail-heading p {
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0;
}

.blog-detail-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 34px;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.blog-detail-content p {
  margin-top: 0;
}

.blog-detail-content strong,
.blog-detail-content b {
  color: #071a3d;
}

.blog-detail-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 98px;
}

.blog-side-card,
.blog-contact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.blog-side-card h2,
.blog-contact-card h2 {
  font-size: 21px;
  letter-spacing: -0.04em;
  color: #071a3d;
  margin: 0 0 18px;
}

.popular-post-list {
  display: grid;
  gap: 16px;
}

.popular-post-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 13px;
  align-items: center;
}

.popular-post-item img,
.popular-post-item > span {
  width: 82px;
  height: 72px;
  border-radius: 14px;
}

.popular-post-item img {
  object-fit: cover;
}

.popular-post-item > span {
  background: #eef2f7;
  color: #071a3d;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 400;
}

.popular-post-item strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #071a3d;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  margin-bottom: 6px;
}

.popular-post-item small {
  color: #64748b;
  font-size: 12px;
  font-weight: 400;
}

.blog-contact-card {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%), linear-gradient(135deg, #071a3d, #031126);
  color: #fff;
}

.blog-contact-card > span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 24px;
  margin-bottom: 18px;
}

.blog-contact-card h2 {
  color: #fff;
  margin-bottom: 10px;
}

.blog-contact-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0 0 20px;
}

.blog-contact-card a {
  height: 48px;
  border-radius: 14px;
  background: #fff;
  color: #071a3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 400;
}

.blog-related-section {
  margin-top: 34px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.blog-related-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.blog-related-image {
  height: 150px;
  display: block;
  overflow: hidden;
  background: #eef2f7;
}

.blog-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related-card > div {
  padding: 16px;
}

.blog-related-card h3 {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: #071a3d;
  margin: 0 0 10px;
}

.blog-related-card small {
  color: #64748b;
  font-size: 12px;
  font-weight: 400;
}

.blog-detail-whatsapp-cta {
  margin-top: 34px;
  background: radial-gradient(circle at left, rgba(255, 255, 255, 0.13), transparent 28%), linear-gradient(135deg, #071a3d, #031126);
  color: #fff;
  border-radius: 22px;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  box-shadow: 0 24px 70px rgba(7, 26, 61, 0.24);
}

.blog-detail-whatsapp-icon {
  width: 74px;
  height: 74px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.09);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-detail-whatsapp-icon span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.blog-detail-whatsapp-cta h2 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin: 0 0 6px;
}

.blog-detail-whatsapp-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.55;
}

.blog-detail-whatsapp-cta a {
  height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  background: #fff;
  color: #071a3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .blog-detail-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }

  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .blog-detail-whatsapp-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blog-detail-whatsapp-icon {
    margin: 0 auto;
  }

  .blog-detail-whatsapp-cta a {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .blog-detail-page {
    padding: 40px 0 60px;
  }

  .blog-detail-image img,
  .blog-detail-placeholder {
    height: 260px;
  }

  .blog-detail-content,
  .blog-side-card,
  .blog-contact-card {
    padding: 22px;
  }

  .popular-post-item {
    grid-template-columns: 76px 1fr;
  }

  .popular-post-item img,
  .popular-post-item > span {
    width: 76px;
    height: 66px;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   12. STATİK SAYFA / HAKKIMIZDA - BAŞLIK ALANI
================================================== */

.static-page-hero {
  padding: 46px 0 34px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.static-page-hero .breadcrumb {
  margin-bottom: 22px;
}

.static-page-heading {
  position: relative;
  max-width: 100%;
  min-height: 250px;
  padding: 42px 46px;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.1), transparent 32%), linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.static-page-heading::after {
  content: "";
  position: absolute;
  right: 44px;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(8, 122, 85, 0.06);
  transform: translateY(-50%);
  pointer-events: none;
}

.static-page-heading .eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(8, 122, 85, 0.08);
  color: #087a55;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.static-page-heading h1 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 16px;
  color: #071a3d;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 400;
}

.static-page-heading p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}

.static-page-section {
  padding: 30px 0 84px;
  background: #f8fafc;
}

.static-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.static-page-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 36px;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.static-page-content p {
  margin-top: 0;
}

.static-page-content strong,
.static-page-content b {
  color: #071a3d;
}

.static-page-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 98px;
}

.static-contact-card,
.static-info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.static-contact-card {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%), linear-gradient(135deg, #071a3d, #031126);
  color: #fff;
}

.static-contact-card > span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 24px;
  margin-bottom: 18px;
}

.static-contact-card h2,
.static-info-card h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}

.static-contact-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0 0 20px;
}

.static-contact-card a {
  height: 48px;
  border-radius: 14px;
  background: #fff;
  color: #071a3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 400;
}

.static-info-card h3 {
  color: #071a3d;
  margin-bottom: 18px;
}

.static-info-card div {
  padding: 15px 0;
  border-bottom: 1px solid #eef2f7;
}

.static-info-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.static-info-card strong {
  display: block;
  color: #071a3d;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
}

.static-info-card a,
.static-info-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 980px) {
  .static-page-grid {
    grid-template-columns: 1fr;
  }

  .static-page-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .static-page-hero {
    padding: 42px 0 24px;
  }

  .static-page-section {
    padding-bottom: 60px;
  }

  .static-page-content,
  .static-contact-card,
  .static-info-card {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .static-page-hero {
    padding: 28px 0 24px;
  }

  .static-page-heading {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .static-page-heading::after {
    display: none;
  }

  .static-page-heading h1 {
    font-size: 40px;
  }

  .static-page-heading p {
    font-size: 16px;
  }
}

/* ==================================================
   13. İLETİŞİM
================================================== */

.simple-contact-hero {
  padding: 56px 0 34px;
  background: radial-gradient(circle at top right, rgba(7, 26, 61, 0.05), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.simple-contact-heading {
  max-width: 760px;
}

.simple-contact-heading h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: #071a3d;
  margin: 0 0 16px;
}

.simple-contact-heading p {
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

.simple-contact-section {
  padding: 30px 0 84px;
  background: #f8fafc;
}

.simple-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.simple-contact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 24px;
  min-height: 178px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.simple-contact-card > span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eef2ff;
  color: #071a3d;
  display: grid;
  place-items: center;
  font-weight: 400;
  margin-bottom: 16px;
}

.simple-contact-card h2 {
  color: #071a3d;
  font-size: 20px;
  letter-spacing: -0.04em;
  margin: 0 0 9px;
}

.simple-contact-card a,
.simple-contact-card p {
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.simple-contact-card a:hover {
  color: #071a3d;
}

.simple-map-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.simple-map-wrap iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

.map-empty-state {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 24px;
  background: radial-gradient(circle at top right, rgba(7, 26, 61, 0.06), transparent 34%), linear-gradient(135deg, #ffffff, #f8fafc);
}

.map-empty-state span {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: #eef2ff;
  color: #071a3d;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.map-empty-state strong {
  display: block;
  color: #071a3d;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.map-empty-state p {
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  max-width: 420px;
}

.direction-box {
  margin-top: 24px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%), linear-gradient(135deg, #071a3d, #031126);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(7, 26, 61, 0.22);
}

.direction-box h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.055em;
  margin: 0 0 8px;
}

.direction-box p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}

.direction-box a {
  height: 52px;
  padding: 0 22px;
  border-radius: 15px;
  background: #fff;
  color: #071a3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .simple-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .direction-box {
    grid-template-columns: 1fr;
  }

  .direction-box a {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .simple-contact-hero {
    padding: 42px 0 26px;
  }

  .simple-contact-section {
    padding: 26px 0 60px;
  }

  .simple-contact-grid {
    grid-template-columns: 1fr;
  }

  .simple-contact-card,
  .direction-box {
    padding: 24px;
  }

  .simple-map-wrap iframe {
    height: 340px;
  }

  .map-empty-state {
    min-height: 300px;
  }
}

.direction-box a.disabled-direction {
  opacity: 0.65;
  pointer-events: none;
}

/* ===============================
   MOBILE BOTTOM NAV
================================ */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 82px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-bottom-nav-two {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-bottom-item {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 16px;
    color: #334155;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    background: #f8fafc;
    transition: all 0.2s ease;
  }

  .mobile-bottom-item strong {
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
  }

  .mobile-bottom-icon {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #0057b8;
    background: rgba(0, 87, 184, 0.09);
    font-size: 15px;
    line-height: 1;
  }

  .mobile-bottom-item.active {
    color: #0057b8;
    background: rgba(0, 87, 184, 0.09);
  }

  .mobile-bottom-item.active .mobile-bottom-icon {
    color: #ffffff;
    background: #0057b8;
  }

  .mobile-bottom-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #008f5a 0%, #006f46 100%);
  }

  .mobile-bottom-primary .mobile-bottom-icon {
    color: #008f5a;
    background: #ffffff;
  }

  .mobile-bottom-item:active {
    transform: scale(0.97);
  }
}

/* ==================================================
   İLETİŞİM - BAŞLIK ALANI
================================================== */

.contact-page-hero,
.simple-contact-hero {
  padding: 46px 0 34px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.08), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-page-hero .breadcrumb {
  margin-bottom: 22px;
}

.simple-contact-heading {
  position: relative;
  max-width: 100%;
  min-height: 250px;
  padding: 42px 46px;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  background: radial-gradient(circle at top right, rgba(8, 122, 85, 0.1), transparent 32%), linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.simple-contact-heading::after {
  content: "";
  position: absolute;
  right: 44px;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(8, 122, 85, 0.06);
  transform: translateY(-50%);
  pointer-events: none;
}

.simple-contact-heading .eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(8, 122, 85, 0.08);
  color: #087a55;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.simple-contact-heading h1 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 0 16px;
  color: #071a3d;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 400;
}

.simple-contact-heading p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 760px) {
  .contact-page-hero,
  .simple-contact-hero {
    padding: 28px 0 24px;
  }

  .simple-contact-heading {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .simple-contact-heading::after {
    display: none;
  }

  .simple-contact-heading h1 {
    font-size: 40px;
  }

  .simple-contact-heading p {
    font-size: 16px;
  }
}

/* Standart sistem tipografi ve mobil alt menü */
h1,h2{font-weight:600}
h3,h4,h5,h6,strong{font-weight:400}
.mobile-menu-button{display:none}
.mobile-bottom-nav{display:none}
@media(max-width:820px){
  body{padding-bottom:72px}
  .mobile-bottom-nav{position:fixed;left:0;right:0;bottom:0;z-index:9999;display:grid;grid-template-columns:repeat(3,1fr);background:#fff;border-top:1px solid #e5e7eb;box-shadow:0 -8px 24px rgba(15,23,42,.08);padding:7px 8px calc(7px + env(safe-area-inset-bottom))}
  .mobile-bottom-item{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;min-height:54px;font-size:11px;color:#334155;text-align:center}
  .mobile-bottom-icon{font-size:18px;line-height:1}
  .mobile-bottom-item strong{font-weight:400}
  .mobile-menu-button{display:block;border:0;background:transparent;font-size:22px;margin-left:auto}
  .site-nav{display:none}
  .site-nav.open{display:flex;position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;padding:18px 20px;border-top:1px solid #e5e7eb}
  .header-action{display:none}
}
