/* ==========================================================================
   HAS VAKUM — Kurumsal Web Sitesi
   Statik site stilleri (BEM) — WordPress tema dönüşümüne hazır
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --cyan: #4FC2EF;
  --blue: #2E82EA;
  --blue-d: #2671CC;
  --dark: #1E2633;
  --ink: #1D1D1B;
  --muted: #5B6573;
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA;
  --line: #E8EDF2;

  --cyan-soft: #EAF6FD;
  --text-on-dark: #C7D0DB;
  --text-on-dark-dim: #8E99A8;
  --topbar-text: #B9C2CE;
  --whatsapp: #25D366;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --container: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(30, 38, 51, 0.06);
  --shadow-card-hover: 0 12px 28px rgba(30, 38, 51, 0.12);
  --transition: 0.15s ease;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }

p { margin: 0; }

input::placeholder,
textarea::placeholder { color: #9AA6B5; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: #FFF;
  padding: 10px 18px;
  z-index: 999;
  font-family: var(--font-head);
  font-size: 14px;
}

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

/* --------------------------------------------------------------------------
   3. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary { background: var(--cyan); color: #FFF; }
.btn--primary:hover { background: var(--blue); }
.btn--primary:active { background: var(--blue-d); }

.btn--outline {
  background: transparent;
  color: #FFF;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn--outline:hover { border-color: #FFF; background: rgba(255, 255, 255, 0.08); }

.btn--white {
  background: #FFF;
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(20, 40, 70, 0.25);
}
.btn--white:hover { background: var(--dark); color: #FFF; }

.btn--lg { font-size: 16px; padding: 16px 32px; }

/* --------------------------------------------------------------------------
   4. Üst bant
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--dark);
  color: var(--topbar-text);
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar__contact { display: flex; gap: 24px; align-items: center; }

.topbar__sep { color: #46505F; }

.topbar__lang {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.topbar__lang-link { cursor: pointer; transition: color var(--transition); }
.topbar__lang-link:hover { color: #FFF; }
.topbar__lang-link--active { color: var(--cyan); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.25s ease;
}

.header--scrolled {
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(30, 38, 51, 0.1);
}

.header__inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.25s ease;
}

.header--scrolled .header__inner { height: 88px; }

.header__logo img {
  height: 80px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}

.header--scrolled .header__logo img { height: 66px; }

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav__link:hover { color: var(--blue); }
.nav__link--active { color: var(--blue); font-weight: 700; }

.nav .btn { font-size: 14px; padding: 12px 24px; }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü (drawer) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -16px 0 40px rgba(30, 38, 51, 0.18);
}

.mobile-menu--open { transform: translateX(0); }

.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mobile-menu__head img { height: 40px; width: auto; }

.mobile-menu__close {
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu__nav { display: flex; flex-direction: column; }

.mobile-menu__link {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__link--active { color: var(--blue); }

.mobile-menu .btn { margin-top: 24px; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 38, 51, 0.5);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay--visible { opacity: 1; visibility: visible; }

body.menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   6. Hero Slider
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--dark); }

.hero .swiper { width: 100%; }

.hero__slide {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 31, 42, 0.93) 0%, rgba(24, 31, 42, 0.78) 45%, rgba(24, 31, 42, 0.35) 100%);
}

.hero__content {
  position: relative;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero__box {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  background: rgba(79, 194, 239, 0.14);
  border: 1px solid rgba(79, 194, 239, 0.45);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero__title {
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
  color: #FFF;
  text-wrap: pretty;
}

.hero__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-on-dark);
  max-width: 520px;
  text-wrap: pretty;
}

.hero__actions { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }

/* Swiper özelleştirme */
.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.hero .swiper-pagination-bullet-active { background: var(--cyan); }

.hero .swiper-button-prev,
.hero .swiper-button-next {
  color: #FFF;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background var(--transition);
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover { background: rgba(79, 194, 239, 0.35); }

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after { font-size: 18px; font-weight: 700; }

/* --------------------------------------------------------------------------
   7. Section genel
   -------------------------------------------------------------------------- */
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); }
.section--cyan { background: var(--cyan); }
.section--flush-top { padding-top: 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.section-head--row {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.section-head--row .section-head { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
}

.eyebrow--on-cyan { color: #103A52; }

.section-title { font-size: 36px; font-weight: 700; color: var(--ink); }

.section-link {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.section-link:hover { color: var(--cyan); }

/* --------------------------------------------------------------------------
   8. Öne Çıkan Değerler
   -------------------------------------------------------------------------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

/* Üst kenarda ince cyan→mavi vurgu, hover'da belirginleşir. */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.value-card:hover::before { transform: scaleX(1); }

/* İkon solda, başlık ikonun sağında. */
.value-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.value-card__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.value-card:hover .value-card__icon { background: var(--cyan); }

.value-card:hover .value-card__icon svg { stroke: #FFF; }

.value-card__icon svg { transition: stroke var(--transition); }

.value-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.value-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   9. Kaliteli İmalat (cyan bölüm)
   -------------------------------------------------------------------------- */
.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quality__media {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 2px dashed rgba(255, 255, 255, 0.55);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #FFF;
  text-align: center;
}

.quality__media-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.quality__media-note { font-size: 13px; opacity: 0.85; }

.quality__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #FFF;
}

.quality__body .section-title { color: #FFF; }

.quality__text { font-size: 17px; line-height: 1.75; text-wrap: pretty; }

.quality__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

.tag {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
}

/* --------------------------------------------------------------------------
   10. Ürün kartları + carousel
   -------------------------------------------------------------------------- */
.product-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(30, 38, 51, 0.12);
}

.product-card__media {
  width: 100%;
  height: 180px;
  background-color: var(--bg-soft);
  background-size: cover;
  background-position: center;
}

.product-card__media--empty {
  background: var(--cyan-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
}

.product-card__body {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* Ürünler sayfası grid kartı: dikey gövde, kenarlardan iç boşluk */
.products-grid .product-card__body {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 20px 24px 24px;
  gap: 10px;
}

.products-grid .product-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.products-grid .product-card__name {
  font-size: 17px;
  font-weight: 700;
}

.product-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.product-card__name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.product-card__arrow { color: var(--cyan); font-weight: 700; }

/* Ana sayfa carousel */
.products-carousel { position: relative; padding: 0 56px; }

.products-carousel .swiper { padding-bottom: 48px; }

.products-carousel .swiper-slide { height: auto; }

.products-carousel .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #C5D2DE;
  opacity: 1;
}

.products-carousel .swiper-pagination-bullet-active { background: var(--blue); }

.products-carousel .swiper-button-prev,
.products-carousel .swiper-button-next {
  color: var(--blue);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--cyan-soft);
  transition: background var(--transition), color var(--transition);
  top: 40%;
}

.products-carousel .swiper-button-prev { left: 0; }
.products-carousel .swiper-button-next { right: 0; }

.products-carousel .swiper-button-prev:hover,
.products-carousel .swiper-button-next:hover { background: var(--cyan); color: #FFF; }

.products-carousel .swiper-button-prev::after,
.products-carousel .swiper-button-next::after { font-size: 16px; font-weight: 700; }

/* Ürünlerimiz sayfası grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card--lg { border-radius: 14px; border: none; box-shadow: var(--shadow-card); }

.product-card--lg:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(30, 38, 51, 0.14);
}

.product-card--lg .product-card__media { height: 240px; }

.product-card--lg .product-card__media--empty { font-size: 13px; gap: 8px; }

.product-card--lg .product-card__body { padding: 20px 24px; gap: 12px; }

.product-card__info { display: flex; flex-direction: column; gap: 4px; }

.product-card--lg .product-card__name { font-size: 18px; font-weight: 700; }

.product-card__sub { font-size: 13px; color: var(--text-on-dark-dim); }

.product-card__circle {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. Rakamlar şeridi
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
}

.stat__value {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.stat__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   12. CTA bandı
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--blue) 100%);
  border-radius: 20px;
  padding: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band__body { display: flex; flex-direction: column; gap: 12px; max-width: 640px; }

.cta-band__title { font-size: 32px; font-weight: 700; color: #FFF; text-wrap: pretty; }

.cta-band__text { font-size: 16px; color: rgba(255, 255, 255, 0.9); }

/* --------------------------------------------------------------------------
   13. Sayfa başlık bandı + breadcrumb
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--dark);
  padding: 72px 0;
}

.page-hero__inner { display: flex; flex-direction: column; gap: 12px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-on-dark-dim);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--cyan); transition: color var(--transition); }
.breadcrumb a:hover { color: #FFF; }

.page-hero__title { font-size: 44px; font-weight: 800; color: #FFF; }

.page-hero__text {
  font-size: 16px;
  color: var(--text-on-dark);
  max-width: 680px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. Kurumsal
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about__body { display: flex; flex-direction: column; gap: 20px; }

.about__text { font-size: 16px; line-height: 1.8; color: var(--muted); text-wrap: pretty; }

.about__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(30, 38, 51, 0.15);
}

.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mv-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mv-card__title { font-size: 22px; font-weight: 700; }

.mv-card__text { font-size: 15px; line-height: 1.75; color: var(--muted); }

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

.sublink {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.sublink:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 20px rgba(30, 38, 51, 0.08);
}

.sublink__label { font-family: var(--font-head); font-size: 17px; font-weight: 600; }

.sublink__arrow { color: var(--cyan); font-weight: 700; font-size: 18px; }

/* --------------------------------------------------------------------------
   15. Ürün detay galerisi
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  display: block;
  transition: box-shadow var(--transition);
}

.gallery-item:hover { box-shadow: 0 14px 28px rgba(30, 38, 51, 0.12); }

.gallery-item__media {
  width: 100%;
  height: 260px;
  background-color: var(--bg-soft);
  background-size: cover;
  background-position: center;
}

.gallery-item__media--empty {
  background: var(--cyan-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
}

.gallery-item__label {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.detail-cta {
  margin-top: 64px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.detail-cta__body { display: flex; flex-direction: column; gap: 8px; }

.detail-cta__title { font-size: 24px; font-weight: 700; }

.detail-cta__text { font-size: 15px; color: var(--muted); }

/* --------------------------------------------------------------------------
   16. İletişim
   -------------------------------------------------------------------------- */
.offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.office-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.office-card__eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
}

.office-card__title { font-size: 22px; font-weight: 700; }

.office-card__address { font-size: 15px; line-height: 1.7; color: var(--muted); }

.office-card__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.office-card__lines a { transition: color var(--transition); }
.office-card__lines a:hover { color: var(--blue); }

.office-card__email { color: var(--blue); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-card__title { font-size: 22px; font-weight: 700; margin-bottom: 24px; }

.form { display: flex; flex-direction: column; gap: 16px; }

.form[hidden] { display: none; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__input,
.form__textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid #D9E0E8;
  border-radius: 8px;
  outline: none;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(79, 194, 239, 0.2);
}

.form__textarea { resize: vertical; }

.form__success {
  background: var(--cyan-soft);
  border: 1px solid var(--cyan);
  border-radius: 10px;
  padding: 32px;
  display: none;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.form__success--visible { display: flex; }

.form__success-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.form__success-text { font-size: 14px; color: var(--muted); }

.map-placeholder {
  background: #E2E8EF;
  border-radius: 14px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
}

.map-placeholder__title { font-family: var(--font-head); font-weight: 600; font-size: 16px; }

.map-placeholder__note { font-size: 13px; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: var(--topbar-text);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1.1fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 48px;
}

.footer__brand { display: flex; flex-direction: column; gap: 20px; }

.footer__logo { height: 84px; width: auto; align-self: flex-start; }

.footer__about { font-size: 14px; line-height: 1.75; max-width: 360px; }

.footer__title {
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer__col { display: flex; flex-direction: column; gap: 14px; }

.footer__col--menu { gap: 10px; }

.footer__link {
  font-size: 14px;
  color: var(--topbar-text);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--cyan); }

.footer__text { font-size: 14px; line-height: 1.7; }

.footer__office { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }

.footer__office-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--cyan); letter-spacing: 0.3px; }

.footer__email { font-size: 14px; color: var(--cyan); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.footer__bottom-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 13px;
  color: var(--text-on-dark-dim);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   18. WhatsApp butonu
   -------------------------------------------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(20, 90, 50, 0.35);
  transition: transform var(--transition);
}

.whatsapp-btn:hover { transform: scale(1.08); }

/* --------------------------------------------------------------------------
   19. Scroll reveal animasyonları
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0s);
  }

  [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sublinks { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .quality { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__img { height: 340px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 46px; }
  .products-carousel { padding: 0 48px; }
}

@media (max-width: 768px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding: 64px 0; }
  .nav { display: none; }
  .burger { display: flex; }
  .topbar__contact .topbar__email-wrap { display: none; }
  .topbar__sep { display: none; }
  .hero__slide { min-height: 600px; }
  .hero__title { font-size: 36px; }
  .hero__text { font-size: 16px; }
  .hero .swiper-button-prev,
  .hero .swiper-button-next { display: none; }
  .section-title { font-size: 28px; }
  .page-hero { padding: 56px 0; }
  .page-hero__title { font-size: 34px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .offices { grid-template-columns: 1fr; }
  .mv-cards { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 32px; }
  .cta-band__title { font-size: 26px; }
  .detail-cta { padding: 32px 24px; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .products-carousel { padding: 0; }
  .products-carousel .swiper-button-prev,
  .products-carousel .swiper-button-next { display: none; }
}

@media (max-width: 480px) {
  .values { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; }
  .hero__slide { min-height: 520px; }
  .hero__title { font-size: 30px; }
  .hero__actions .btn { width: 100%; }
  .form__row { grid-template-columns: 1fr; }
  .header__logo img { height: 52px; }
  .header__inner { height: 84px; }
  .whatsapp-btn { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* --------------------------------------------------------------------------
   21. Medya görselleri (img tabanlı kartlar)
   -------------------------------------------------------------------------- */
.product-card__media img,
.gallery-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   22. Dropdown menü (masaüstü)
   -------------------------------------------------------------------------- */
.nav__item { position: relative; display: flex; align-items: center; }

.nav__chevron { transition: transform var(--transition); }

.nav__item--has-sub:hover .nav__chevron,
.nav__item--has-sub:focus-within .nav__chevron { transform: rotate(180deg); }

.nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(30, 38, 51, 0.14);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 150;
}

.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__sub-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 22px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav__sub-link:hover {
  color: var(--blue);
  background: var(--cyan-soft);
}

/* --------------------------------------------------------------------------
   23. Mobil alt menü (akordeon)
   -------------------------------------------------------------------------- */
.mobile-menu__nav { overflow-y: auto; }

.mobile-menu__group { border-bottom: 1px solid var(--line); }

.mobile-menu__group .mobile-menu__link { border-bottom: none; flex: 1; }

.mobile-menu__row { display: flex; align-items: center; }

.mobile-menu__toggle {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
}

.mobile-menu__toggle .nav__chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.mobile-menu__toggle[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }

.mobile-menu__sub {
  display: none;
  flex-direction: column;
  padding: 0 0 10px;
}

.mobile-menu__sub--open { display: flex; }

.mobile-menu__sub-link {
  font-size: 15px;
  color: var(--muted);
  padding: 9px 4px 9px 18px;
  transition: color var(--transition);
}

.mobile-menu__sub-link:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   24. Ürün carousel — 3'lü büyük kart düzeni
   -------------------------------------------------------------------------- */
.products-carousel .product-card__media { height: 280px; }

.products-carousel .product-card__body { padding: 18px 22px; }

.products-carousel .product-card__name { font-size: 17px; font-weight: 700; }

.products-carousel .product-card__arrow { font-size: 18px; }

/* --------------------------------------------------------------------------
   25. Referans logoları
   -------------------------------------------------------------------------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ref-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.ref-card__logo {
  max-width: 120px;
  max-height: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter var(--transition), opacity var(--transition);
}

.ref-card:hover .ref-card__logo { filter: grayscale(0); opacity: 1; }

/* --------------------------------------------------------------------------
   26. İnsan Kaynakları
   -------------------------------------------------------------------------- */
.ik-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
}

.ik-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.ik-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.form__file {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  border: 1px dashed #C5D2DE;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.form__file:hover { border-color: var(--cyan); color: var(--blue); }

.form__file--filled { border-style: solid; border-color: var(--cyan); color: var(--blue); }

.form__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   27. Yeni bileşenler — responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ref-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ref-card { padding: 24px; min-height: 140px; }
  .products-carousel .product-card__media { height: 240px; }
}

@media (max-width: 480px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-card__logo { max-width: 96px; }
}

/* --------------------------------------------------------------------------
   28. Dijital Katalog
   -------------------------------------------------------------------------- */
.btn--ghost {
  background: var(--bg);
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn--ghost:hover { background: var(--blue); color: #FFF; }

.catalog-bar {
  background: var(--bg);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.catalog-bar__info { display: flex; align-items: center; gap: 16px; }

.catalog-bar__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.catalog-bar__text { display: flex; flex-direction: column; gap: 4px; }

.catalog-bar__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.catalog-bar__meta { font-size: 14px; color: var(--muted); }

.catalog-bar__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.catalog-viewer {
  background: var(--dark);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(30, 38, 51, 0.18);
}

.catalog-viewer__frame {
  display: block;
  width: 100%;
  height: 78vh;
  min-height: 520px;
  border: none;
}

.catalog-viewer__fallback {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-on-dark);
  text-align: center;
}

.catalog-viewer__fallback a { color: var(--cyan); text-decoration: underline; }

@media (max-width: 768px) {
  .catalog-bar { padding: 20px; }
  .catalog-bar__actions { width: 100%; }
  .catalog-bar__actions .btn { flex: 1; }
  .catalog-viewer__frame { height: 65vh; min-height: 420px; }
}

/* --------------------------------------------------------------------------
   29. WordPress çekirdek sınıfları
   -------------------------------------------------------------------------- */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: #FFF;
  padding: 10px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

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

.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 16px auto; }
.alignwide, .alignfull { max-width: 100%; height: auto; }

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

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; margin-top: 6px; }

.sticky { display: block; }
.bypostauthor { display: block; }
.gallery-caption { font-size: 13px; color: var(--muted); }

.container--narrow { max-width: 860px; }

/* --------------------------------------------------------------------------
   30. İçerik / blog
   -------------------------------------------------------------------------- */
.entry-content { font-size: 16px; line-height: 1.85; color: var(--muted); }
.entry-content p { margin: 0 0 18px; }
.entry-content h2, .entry-content h3 { color: var(--ink); font-family: var(--font-head); margin: 28px 0 14px; }
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content ul, .entry-content ol { margin: 0 0 18px 22px; }
.entry-content blockquote { border-left: 3px solid var(--cyan); padding-left: 18px; color: var(--ink); margin: 0 0 18px; }

.entry-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.entry-meta { font-size: 14px; color: var(--muted); margin-bottom: 18px; }

.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-sidebar .widget { background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 24px; margin-bottom: 24px; }
.widget__title { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin: 0 0 14px; }
.blog-sidebar ul { list-style: none; margin: 0; padding: 0; }
.blog-sidebar li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.blog-sidebar a { color: var(--muted); }
.blog-sidebar a:hover { color: var(--blue); }

.post-list { display: flex; flex-direction: column; gap: 28px; }
.post-card { background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; display: grid; grid-template-columns: 280px 1fr; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card__body { padding: 24px 28px; }
.post-card__title { font-size: 20px; margin: 0 0 8px; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--blue); }
.post-card__meta { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.post-card__excerpt { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

.pagination { margin-top: 36px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px; background: var(--bg); box-shadow: var(--shadow-card); color: var(--ink); font-weight: 600; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--blue); color: #FFF; }

.comments-area { margin-top: 48px; }
.comments-title { font-size: 22px; margin-bottom: 20px; }
.comment-list { list-style: none; margin: 0 0 28px; padding: 0; }
.comment-list .comment { background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 20px; margin-bottom: 16px; }
.comment-list .children { list-style: none; margin: 16px 0 0 24px; padding: 0; }
.comment-form .form__input, .comment-form textarea { width: 100%; }
.comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid #DCE4EC;
  border-radius: 8px;
  padding: 12px 14px;
  width: 100%;
  margin-bottom: 12px;
}
.comment-form .submit { background: var(--blue); color: #FFF; border: none; border-radius: 8px; padding: 12px 26px; font-weight: 600; cursor: pointer; }

/* --------------------------------------------------------------------------
   31. 404 / form ek durumları
   -------------------------------------------------------------------------- */
.error-404 { text-align: center; padding: 40px 0; }
.error-404__code { font-family: var(--font-head); font-size: 96px; font-weight: 800; color: var(--cyan); line-height: 1; display: block; }
.error-404__title { font-size: 30px; margin: 12px 0; }
.error-404__text { color: var(--muted); max-width: 520px; margin: 0 auto 26px; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form__error {
  background: #FDECEC;
  border: 1px solid #F5B5B5;
  color: #B43030;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
}

.gallery-grid--docs { grid-template-columns: repeat(3, 1fr); margin-top: 36px; }

/* Belgeler A4 dikey: box yüksek, görselin tamamı kırpılmadan görünür. */
.gallery-grid--docs .gallery-item__media { height: 460px; background-color: #F4F6F9; }
.gallery-grid--docs .gallery-item__media img { object-fit: contain; padding: 14px; }

.gallery-empty { color: var(--muted); }

.map-wrap { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); margin-top: 40px; }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }

/* --------------------------------------------------------------------------
   32. Flipbook (PDF.js)
   -------------------------------------------------------------------------- */
.flipbook {
  background: var(--dark);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(30, 38, 51, 0.18);
}

.flipbook__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  perspective: 2400px;
}

.flipbook__loading,
.flipbook__error {
  color: var(--text-on-dark);
  font-size: 15px;
}

.flipbook__book {
  display: flex;
  justify-content: center;
  position: relative;
}

.flipbook__page {
  background: #FFF;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.flipbook__page canvas { display: block; width: 100%; height: auto; }

.flipbook__page--left { border-radius: 6px 0 0 6px; }
.flipbook__page--right { border-radius: 0 6px 6px 0; }
.flipbook__page--single { border-radius: 6px; }

.flipbook__stage--turning .flipbook__book { transition: none; }

@keyframes flipbook-in-next {
  from { transform: rotateY(-26deg); opacity: 0.35; }
  to   { transform: rotateY(0); opacity: 1; }
}

@keyframes flipbook-in-prev {
  from { transform: rotateY(26deg); opacity: 0.35; }
  to   { transform: rotateY(0); opacity: 1; }
}

.flipbook__book--next { animation: flipbook-in-next 0.45s ease; transform-origin: left center; }
.flipbook__book--prev { animation: flipbook-in-prev 0.45s ease; transform-origin: right center; }

.flipbook__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.flipbook__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.flipbook__btn:hover:not(:disabled) { background: var(--blue); }
.flipbook__btn:disabled { opacity: 0.35; cursor: default; }

.flipbook__counter {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-dark);
  min-width: 90px;
  text-align: center;
}

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

@media (max-width: 768px) {
  .post-card { grid-template-columns: 1fr; }
  .gallery-grid--docs { grid-template-columns: repeat(2, 1fr); }
  .flipbook { padding: 16px; }
  .map-wrap iframe { height: 320px; }
}

@media (max-width: 480px) {
  .gallery-grid--docs { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   33. İletişim sayfası iyileştirmeleri (tek sütun ofis + harita boşluğu)
   -------------------------------------------------------------------------- */
/* Ofisler artık tek kart içinde alt alta; iki blok arasına çizgi koy. */
.offices { grid-template-columns: 1fr; }

.office-block { display: flex; flex-direction: column; gap: 14px; }

.office-block + .office-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* Harita alanı (embed veya placeholder) üstten ferah dursun. */
.map-wrap,
.map-placeholder { margin-top: 48px; }

/* --------------------------------------------------------------------------
   34. Kalite imalat + Hakkımızda görselleri (dolu hâl)
   -------------------------------------------------------------------------- */
.quality__media--filled {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  overflow: hidden;
  min-height: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(8, 28, 42, 0.35);
}

/* Üstte beyaz ince çerçeve hissi + köşe vurgusu */
.quality__media--filled::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  background: linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(0,0,0,0) 40%);
  pointer-events: none;
}

.quality__media--filled .quality__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.quality__media--filled:hover .quality__img { transform: scale(1.05); }

.about__media {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(30, 38, 51, 0.20);
}

/* Sol-üstte cyan dekoratif köşe + hafif zoom hover. */
.about__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  background: linear-gradient(150deg, rgba(79,194,239,0.18) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}

/* Kurumsal sayfasında öne çıkan görsel referans tasarımla aynı (sabit yükseklik). */
.about__media .about__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.6s ease;
}

.about__media:hover .about__img { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   35. Bölüm başlığı dekoratif çizgisi + inline CTA bandı
   -------------------------------------------------------------------------- */
/* Ana sayfa/section başlıklarının altına cyan gradient vurgu çizgisi. */
.section-head .section-title { position: relative; padding-bottom: 16px; }

.section-head .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
}

/* Ortalanmış section-head varsa çizgi de ortalansın. */
.section-head--center { align-items: center; text-align: center; }
.section-head--center .section-title::after { left: 50%; transform: translateX(-50%); }

/* Koyu zemin (kalite) üzerinde başlık çizgisi açık tonda. */
.quality__body .section-title::after {
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0.4) 100%);
}

/* Şablon içi (container) CTA bandı: üstten ayrık dursun. */
.cta-band--inline { margin-top: 64px; }

/* --------------------------------------------------------------------------
   36. Belgelerimiz yatay banner (tam genişlik)
   -------------------------------------------------------------------------- */
.docs-banner {
  display: block;
  width: 100%;
  margin: 0 0 36px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.docs-banner__img {
  display: block;
  width: 100%;
  height: auto;
}
