/* =============================================================================
   Pumpport Theme — fabrikamiz.css
   Fabrikamız sayfa şablonuna özgü stiller (global stiller main.css'te)
   Digital Kernel Software
============================================================================= */

/* ─── REVEAL ─────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1); }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ─── PAGE HERO — Fotoğraf arka planlı ──────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 0; position: relative; overflow: hidden;
  min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.35);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,1) 0%, rgba(17,17,17,.5) 50%, rgba(17,17,17,.15) 100%);
}
.page-hero::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--red);
}
.page-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 72px 32px 64px; position: relative; z-index: 1; width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb span { color: rgba(255,255,255,.6); }
.page-hero-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(42px, 5.5vw, 76px); color: #fff;
  line-height: 1; letter-spacing: -.02em; margin-bottom: 20px;
}
.page-hero-title .accent { color: var(--red); }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.5); max-width: 520px; line-height: 1.75; }
.page-hero-meta { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.meta-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 6px 14px;
  font-size: 12px; color: rgba(255,255,255,.55);
}
.meta-pill svg { color: var(--red); flex-shrink: 0; }

/* ─── GALERİ ─────────────────────────────────────────────────────────────── */
.sec-gallery { padding: 80px 0; background: #fff; }
.gallery-head { margin-bottom: 48px; }
.gallery-head .sec-title { margin-top: 8px; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 240px;
  gap: 12px;
}
.gm-item { border-radius: 10px; overflow: hidden; position: relative; cursor: zoom-in; }
.gm-item.main { grid-row: 1 / 3; }
.gm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.gm-item:hover img { transform: scale(1.05); }
.gm-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gm-item:hover .gm-item-overlay { opacity: 1; }
.gm-item-label { font-size: 12px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.gm-placeholder { background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.gm-placeholder-inner { text-align: center; color: var(--gray-lt); }
.gm-placeholder-inner svg { margin: 0 auto 8px; opacity: .35; }
.gm-placeholder-inner span { font-size: 12px; }

/* ─── ÜRETİM BİLGİSİ ────────────────────────────────────────────────────── */
.sec-production { padding: 96px 0; background: var(--dark); }
.production-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.prod-info-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; }
.prod-info-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  color: #fff; letter-spacing: -.01em; line-height: 1.05; margin-bottom: 24px;
}
.prod-info-text { font-size: 14.5px; color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: 14px; }
.prod-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.prod-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; transition: background .2s, border-color .2s;
}
.prod-feature:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.prod-feature-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(189,44,38,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--red);
}
.prod-feature-title { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 4px; }
.prod-feature-desc { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.55; }

/* Üretim kapasitesi stats */
.prod-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prod-stat-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 28px 24px; transition: background .2s;
}
.prod-stat-card:hover { background: rgba(255,255,255,.07); }
.prod-stat-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 40px; color: #fff; line-height: 1; margin-bottom: 6px; }
.prod-stat-num .acc { color: var(--red); }
.prod-stat-lbl { font-size: 12px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .07em; }
.prod-stat-desc { font-size: 13px; color: rgba(255,255,255,.22); margin-top: 6px; line-height: 1.45; }

/* Video CTA kutusu */
.video-cta-box {
  margin-top: 24px; padding: 24px;
  background: rgba(189,44,38,.12); border: 1px solid rgba(189,44,38,.2);
  border-radius: 12px;
}
.video-cta-label { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.video-cta-desc { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: 16px; }
.btn-video {
  width: 100%; background: var(--red); color: #fff; border: none;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 13px; border-radius: 8px; cursor: pointer;
  transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-video:hover { background: var(--red-dark); }

/* ─── KALİTE STANDARTLARI ────────────────────────────────────────────────── */
.sec-quality { padding: 96px 0; background: #fafafa; }
.quality-head { margin-bottom: 56px; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.cert-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.07); transform: translateY(-4px); }
.cert-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(0,.82,.34,1);
}
.cert-card:hover::before { transform: scaleX(1); }
.cert-card-logo { height: 64px; display: flex; align-items: center; margin-bottom: 20px; }
.cert-card-logo img { max-height: 100%; max-width: 130px; object-fit: contain; filter: grayscale(.25); transition: filter .2s; }
.cert-card:hover .cert-card-logo img { filter: none; }
.cert-card-name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px; color: var(--gray); letter-spacing: .02em; margin-bottom: 10px; }
.cert-card-desc { font-size: 13.5px; color: var(--gray-mid); line-height: 1.75; }
.cert-card-scope { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.cert-scope-tag { font-size: 11px; color: var(--red); font-weight: 600; background: var(--red-soft); border-radius: 4px; padding: 3px 9px; }

/* Üyelikler şeridi */
.memberships { margin-top: 56px; }
.memberships-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-lt); margin-bottom: 28px; text-align: center; }
.memberships-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px 48px; }
.memberships-logos img { height: 52px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(.3); transition: filter .2s; }
.memberships-logos img:hover { filter: none; }

/* ─── KONUM ──────────────────────────────────────────────────────────────── */
.sec-location { padding: 96px 0; background: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.location-text { font-size: 14.5px; color: var(--gray-mid); line-height: 1.85; margin-bottom: 14px; }
.location-detail-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.location-detail { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gray-mid); }
.location-detail svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.location-detail strong { color: var(--gray); }
.location-map {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  aspect-ratio: 4/3; position: relative; background: #f0f0f0;
}
.location-map iframe { width: 100%; height: 100%; border: none; display: block; }
.location-map-overlay {
  position: absolute; top: 16px; left: 16px; background: #fff;
  border-radius: 8px; padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  font-size: 12.5px; font-weight: 600; color: var(--gray);
  display: flex; align-items: center; gap: 7px; pointer-events: none;
}
.location-map-overlay svg { color: var(--red); }

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.sec-cta-banner { background: var(--red); padding: 72px 0; position: relative; overflow: hidden; }
.sec-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-banner-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; position: relative; z-index: 1; flex-wrap: wrap;
}
.cta-banner-text .sec-eyebrow { color: rgba(255,255,255,.55); }
.cta-banner-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(28px, 3.5vw, 46px); color: #fff; line-height: 1.05; margin-top: 6px;
}
.cta-banner-sub { font-size: 15px; color: rgba(255,255,255,.65); margin-top: 12px; max-width: 400px; line-height: 1.7; }
.cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.btn-cta-white {
  background: #fff; color: var(--red);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
  padding: 14px 32px; border-radius: 8px; cursor: pointer;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px; border: none; white-space: nowrap;
}
.btn-cta-white:hover { background: #f5f5f5; transform: translateY(-2px); }
.btn-cta-ghost {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.35);
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
  padding: 13px 28px; border-radius: 8px; cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,.65); color: #fff; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media(max-width: 1200px) {
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 220px; }
  .gm-item.main { grid-row: auto; grid-column: 1 / -1; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .page-hero { min-height: 380px; }
  .page-hero-inner { padding: 48px 20px 52px; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gm-item { aspect-ratio: 16/9; }
  .gm-item.main { grid-column: auto; }
  .production-grid { grid-template-columns: 1fr; gap: 48px; }
  .prod-stats { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-sub { margin: 12px auto 0; }
  .cta-banner-btns { justify-content: center; }
}
@media(max-width: 480px) {
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .btn-cta-white, .btn-cta-ghost { justify-content: center; }
}

.location-cta { margin-top: 16px; }
