@import url("../fonts/fonts.css");

/* ═══════════════════════════════════════════════════════════
   GOODEX — temel / reset
   (Next.js globals.css @layer base ile birebir)
═══════════════════════════════════════════════════════════ */
*,
a, body, button, div, html, input, li, ol, p, select, span,
table, td, textarea, th, tr, ul, h1, h2, h3, h4, h5, h6, figure, form, label {
  font-family: "Barlow Condensed", sans-serif;
  outline: none;
  margin: 0;
  padding: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

html { height: 100%; }

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #ffffff;
  color: #008da9;
  /* Next.js sürümündeki Tailwind varsayılanı ile aynı satır yüksekliği */
  line-height: 1.5;
}

a, a:active, a:focus, a:hover, a:visited { text-decoration: none; }
li, ol, ul { list-style: none; }
img { max-width: 100%; }
/* Tailwind preflight ile aynı davranış: satır içi görseller alt boşluk bırakmaz */
img, svg, video, canvas, picture { display: block; vertical-align: middle; }
button { font: inherit; }

/* Klavye erişilebilirliği — görünür odak halkası */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #006d84;
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: #ffffff;
  color: #008da9;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════════════════
   MASAÜSTÜ NAVBAR
═══════════════════════════════════════════════════════════ */
.desktop-nav {
  position: fixed;
  top: 12px;
  left: 32px;
  right: 32px;
  z-index: 53;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(0, 141, 169, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  display: none;
}
.desktop-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 141, 169, 0.14);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
}
.desktop-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 20px;
  height: 60px;
}
.desktop-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.desktop-nav__item { position: relative; }
.desktop-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: #008da9;
  transition: color 0.25s;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
}
.desktop-nav__link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #006d84;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.desktop-nav__link:hover { color: #006d84; }
.desktop-nav__link:hover::after { transform: scaleX(1); }

.desktop-nav__logo {
  display: block;
  flex-shrink: 0;
  padding: 0 24px;
}
.desktop-nav__logo img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}
.desktop-nav__right {
  display: flex;
  align-items: center;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(0, 141, 169, 0.12);
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: background 0.2s;
  color: #008da9;
}
.nav-social a:hover { background: rgba(0, 141, 169, 0.06); }
.nav-social svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════════════════════
   MOBİL ÜST BAR
═══════════════════════════════════════════════════════════ */
.mobile-topbar {
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  height: 56px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  border: 1px solid rgba(0, 141, 169, 0.09);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  z-index: 63;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 16px;
}
.mobile-topbar img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}
.burger {
  background: rgba(0, 141, 169, 0.06);
  border: none;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #008da9;
  border-radius: 1px;
}
.burger span:nth-child(2) {
  width: 14px;
  align-self: flex-end;
  margin-right: 3px;
}

/* ═══════════════════════════════════════════════════════════
   MOBİL TAM EKRAN MENÜ
═══════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #008da9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.mobile-menu__logo {
  position: absolute;
  top: 28px;
  left: 28px;
}
.mobile-menu__logo img {
  width: auto;
  height: 36px;
  object-fit: contain;
}
.mobile-menu__list { text-align: center; }
.mobile-menu__list li {
  margin-bottom: 4px;
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.is-open .mobile-menu__list li {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu__list li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu__list li:nth-child(2) { transition-delay: 0.11s; }
.mobile-menu__list li:nth-child(3) { transition-delay: 0.17s; }
.mobile-menu__list li:nth-child(4) { transition-delay: 0.23s; }
.mobile-menu__list li:nth-child(5) { transition-delay: 0.29s; }
.mobile-menu__list li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu__list a {
  display: inline-block;
  color: #ffffff;
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  opacity: 0.9;
}
.mobile-menu__social {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
}
.mobile-menu.is-open .mobile-menu__social {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
}
.mobile-menu__social svg { width: 22px; height: 22px; }

@media (min-width: 1200px) {
  .desktop-nav { display: block; }
  .mobile-topbar { display: none; }
}
@media (max-width: 1199px) {
  .desktop-nav { display: none; }
  .mobile-topbar { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   ANA SAYFA — ÜRÜN IZGARASI
═══════════════════════════════════════════════════════════ */
.page-home main { padding: 84px 32px 0; }

.showcase-grid {
  display: flex;
  gap: 10px;
}
.showcase-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}
.showcase-item {
  flex: 1 1 100%;
  min-width: 100%;
  max-width: 100%;
}
.showcase-box {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
  aspect-ratio: 16 / 7;
}
.showcase-box:hover { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.26); }
.showcase-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.28) 0%, transparent 46%);
  z-index: 5;
  pointer-events: none;
}
.showcase-box picture {
  position: absolute;
  inset: 0;
  display: block;
}
.showcase-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-box:hover img { transform: scale(1.07) rotate(2deg); }
.showcase-name {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 8px 12px 14px;
  font-size: clamp(12px, 4.5vw, 22px);
  line-height: 1.15;
  color: #fff;
  font-weight: 500;
  z-index: 10;
  max-width: 85%;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .showcase-grid { flex-direction: column; }
  .showcase-col { display: contents; }
  .showcase-item { flex: 0 0 auto; width: 100%; }
  .showcase-name { font-size: clamp(13px, 4vw, 18px); }
}

/* ═══════════════════════════════════════════════════════════
   İÇ SAYFA BANNER'I (About / Certificates / News / Contact / Ürün)
═══════════════════════════════════════════════════════════ */
.banner-wrap {
  padding-top: 84px;
  background: #008da9;
}
.banner-section {
  background: #008da9;
  position: relative;
}
.banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 48px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}
.breadcrumb .current {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.banner-title {
  color: #ffffff;
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.page-certificates .banner-title { font-size: clamp(40px, 6.4vw, 84px); }

.banner-logo {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08), 0 24px 64px rgba(0, 0, 0, 0.3);
}
/* Logo daire içinde tam ortalanır: <picture> genişliği belirler, <img> onu doldurur */
.banner-logo picture {
  width: 72%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.wave {
  display: block;
  width: 100%;
  height: 64px;
  margin-bottom: -2px;
}

@media (max-width: 900px) {
  .banner-logo { width: 160px; height: 160px; }
}
@media (max-width: 640px) {
  .banner-inner { padding: 40px 20px 52px; gap: 16px; }
  .banner-logo { width: 104px; height: 104px; border-width: 2px; }
}
@media (max-width: 400px) {
  .banner-logo { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   ORTAK — bölüm başlığı, gövde metni, içerik genişliği
═══════════════════════════════════════════════════════════ */
.section-heading { margin-bottom: 28px; }
.section-heading h2 {
  color: #008da9;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.section-heading span {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: #008da9;
  margin-top: 14px;
}
.body-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.body-text,
.body-text p {
  color: #3d4a4c;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  letter-spacing: 0.005em;
}

.page-about main,
.page-certificates main,
.page-contact main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 48px 80px;
}
.page-news main,
.page-news-item main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}
/* Ürün ızgarası daima tam genişlik kaplar (body flex kolon + auto margin
   birleşimi aksi halde içeriğe göre daraltır) */
.page-product main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}

/* ═══════════════════════════════════════════════════════════
   HAKKIMIZDA
═══════════════════════════════════════════════════════════ */
.about-intro { margin-bottom: 84px; }
.about-intro__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin-bottom: 40px;
}
.about-figure {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 141, 169, 0.18);
}
.about-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.about-block { margin-bottom: 84px; }

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.facility-card {
  padding: 28px 26px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 141, 169, 0.14);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 141, 169, 0.20);
}
.facility-card h3 {
  color: #008da9;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.facility-card p,
.facility-card .body-text p {
  font-size: 15px;
  line-height: 1.7;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 84px;
}
.vm-panel {
  padding: 36px 34px;
  border-radius: 20px;
  background: #f6fbfc;
  border: 1px solid rgba(0, 141, 169, 0.10);
}
.vm-panel__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.principle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 14px;
  background: #e6f4f7;
}
.principle__check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #008da9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.principle p {
  color: #00566a;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .facility-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-about main { padding: 40px 20px 60px; }
  .vm-panel { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════════════════════
   SERTİFİKALAR
═══════════════════════════════════════════════════════════ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.cert-card {
  background: #ffffff;
  border: 1px solid rgba(0, 141, 169, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 141, 169, 0.18);
}
.cert-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e6f4f7 0%, #d3ecf1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-image picture,
.cert-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  display: block;
}
.cert-image picture { padding: 0; }
.cert-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-placeholder svg { opacity: 0.4; }
.cert-body { padding: 20px 22px 24px; }
.cert-body h2 {
  color: #008da9;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}
.cert-body p {
  color: #3d4a4c;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .cert-grid { grid-template-columns: 1fr; }
  .page-certificates main { padding: 40px 20px 60px; }
}

/* ═══════════════════════════════════════════════════════════
   HABERLER
═══════════════════════════════════════════════════════════ */
.news-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.news-filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 141, 169, 0.22);
  background: transparent;
  color: #00566a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.news-filter-btn[data-active="true"] {
  border-color: #008da9;
  background: #008da9;
  color: #ffffff;
}
.news-filter-btn[data-active="false"]:hover {
  border-color: #008da9;
  color: #008da9;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
  align-items: start;
}
.news-card {
  background: #ffffff;
  border: 1px solid rgba(0, 141, 169, 0.12);
  border-radius: 16px;
  padding: 24px 26px 26px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 3px solid #008da9;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 141, 169, 0.18);
}
.news-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.news-badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.news-card time {
  color: #8a9a9d;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.news-card h2 {
  color: #008da9;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}
.news-card h2 a { color: inherit; }
.news-card h2 a:hover { color: #006d84; }
.news-card p {
  color: #3d4a4c;
  font-size: 15px;
  line-height: 1.7;
}
.news-card__more {
  display: inline-block;
  margin-top: 14px;
  color: #008da9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.news-card__more:hover { color: #006d84; }
.news-empty {
  color: #8a9a9d;
  font-size: 16px;
  text-align: center;
  padding: 40px 0;
}

/* Haber detay */
.news-article {
  max-width: 760px;
}
.news-article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.news-article__cover {
  border-radius: 18px;
  overflow: hidden;
  margin: 28px 0;
  box-shadow: 0 18px 40px rgba(0, 141, 169, 0.16);
}
.news-article__cover img { display: block; width: 100%; height: auto; }
.back-link {
  display: inline-block;
  margin-top: 36px;
  color: #008da9;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .page-news main,
  .page-news-item main { padding: 36px 20px 60px; }
}

/* ═══════════════════════════════════════════════════════════
   İLETİŞİM
═══════════════════════════════════════════════════════════ */
.channel-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 36px 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 141, 169, 0.14);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.channel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 141, 169, 0.20);
}
.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.channel-label {
  color: #7c9095;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.channel-value {
  color: #00566a;
  font-size: 18px;
  font-weight: 600;
}

.contact-block { margin-bottom: 84px; }
.location-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: #f6fbfc;
  border: 1px solid rgba(0, 141, 169, 0.10);
}
.location-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e6f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-card h3 {
  color: #008da9;
  font-size: 19px;
  font-weight: 700;
  margin: 16px 0 10px;
}
.location-card p {
  color: #3d4a4c;
  font-size: 15px;
  line-height: 1.7;
}

/* İletişim formu (yönetim panelinden açılır) */
.contact-form {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 820px;
}
.contact-form .field-full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  color: #00566a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0, 141, 169, 0.22);
  border-radius: 12px;
  background: #ffffff;
  color: #00566a;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #008da9;
  box-shadow: 0 0 0 3px rgba(0, 141, 169, 0.12);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button {
  justify-self: start;
  padding: 14px 34px;
  border: none;
  border-radius: 999px;
  background: #008da9;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover { background: #006d84; transform: translateY(-2px); }
.form-hp { position: absolute; left: -9999px; opacity: 0; }
.form-note {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
}
.form-note--ok { background: #e6f4f7; color: #00566a; }
.form-note--err { background: #fdeee4; color: #b34700; }

@media (max-width: 900px) {
  .channel-grid,
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .page-contact main { padding: 40px 20px 60px; }
  .contact-form { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ÜRÜN DETAY
═══════════════════════════════════════════════════════════ */
.page-product .banner-section { min-height: 260px; }
.page-product .banner-inner {
  max-width: 1280px;
  padding: 52px 56px 64px;
  position: relative;
  z-index: 1;
}
.page-product .breadcrumb { margin-bottom: 22px; }
.page-product .banner-title { font-size: clamp(48px, 7vw, 96px); }
.banner-img {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08), 0 24px 64px rgba(0, 0, 0, 0.3);
}
.banner-img picture,
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-intro {
  max-width: 900px;
  margin-bottom: 40px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.product-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f3;
  aspect-ratio: 1920 / 1080;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card picture {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 64, 78, 0.28) 0%, transparent 42%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 141, 169, 0.30);
}
.product-card:hover img { transform: scale(1.06); }
.product-card:hover::after { opacity: 1; }

@media (max-width: 960px) {
  .page-product .banner-inner { padding: 36px 24px 48px; }
  .banner-img { width: 180px; height: 180px; }
  .page-product main { padding: 40px 24px 64px; }
}
@media (max-width: 640px) {
  .page-product .banner-inner {
    padding: 30px 20px 44px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .banner-img {
    display: block;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }
  .page-product main { padding: 32px 16px 56px; }
  .card-grid { grid-template-columns: 1fr; gap: 20px; }
  .page-product .banner-section { min-height: 0; }
}
@media (max-width: 400px) {
  .page-product .banner-inner { padding: 24px 16px 40px; }
  .banner-img { width: 96px; height: 96px; display: block; }
}

/* ═══════════════════════════════════════════════════════════
   SSS (AEO)
═══════════════════════════════════════════════════════════ */
.faq-block { margin-top: 84px; }
.faq-item {
  border: 1px solid rgba(0, 141, 169, 0.12);
  border-radius: 14px;
  background: #ffffff;
  padding: 22px 24px;
  margin-bottom: 14px;
}
.faq-item h3 {
  color: #008da9;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.faq-item p {
  color: #3d4a4c;
  font-size: 15px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   ALT BİLGİ
═══════════════════════════════════════════════════════════ */
.site-footer {
  padding: 40px 32px 32px;
}
.footer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 2px 24px rgba(0, 141, 169, 0.08), 0 0 0 1px rgba(0, 141, 169, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-left img {
  width: auto;
  height: 38px;
  object-fit: contain;
}
.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-info {
  color: #444;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-info:hover { color: #008da9; }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0, 141, 169, 0.06);
  border-radius: 9px;
  border: 1px solid rgba(0, 141, 169, 0.10);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  color: #008da9;
}
.footer-social a:hover {
  background: rgba(0, 141, 169, 0.12);
  border-color: rgba(0, 141, 169, 0.22);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; opacity: 0.65; }
.footer-copy {
  color: rgba(0, 141, 169, 0.4);
  font-size: 12px;
}

@media (max-width: 700px) {
  .site-footer {
    background: #f2f7f2;
    padding: 0;
    border-top: 1px solid rgba(0, 141, 169, 0.10);
  }
  .footer-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .footer-left,
  .footer-right,
  .footer-info-list { align-items: center; }
}
@media (max-width: 480px) {
  .footer-card { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   404
═══════════════════════════════════════════════════════════ */
.page-404 main {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  text-align: center;
}
.page-404 h1 {
  color: #008da9;
  font-size: clamp(64px, 14vw, 140px);
  font-weight: 700;
  line-height: 1;
}
.page-404 h2 {
  color: #00566a;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 600;
  margin: 12px 0 20px;
  text-transform: uppercase;
}
.page-404 .btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 34px;
  border-radius: 999px;
  background: #008da9;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.page-404 .btn:hover { background: #006d84; transform: translateY(-2px); }

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
