/* ============================================================
   ASUR MAKİNA – main.css
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   1. DEĞİŞKENLER
   ══════════════════════════════════════════════════════════ */
:root {
  --brand:       #155065;
  --brand-dark:  #0e3a4a;
  --accent:      #feca16;
  --accent-dark: #e5b400;
  --navy:        #0b1c26;
  --dark:        #111820;
  --mid:         #2c3e4a;
  --text:        #3a4a54;
  --muted:       #6b7f8a;
  --light:       #f4f6f8;
  --white:       #ffffff;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;

  --shadow-sm:   0 2px 12px rgba(0,0,0,.08);
  --shadow:      0 6px 30px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 50px rgba(0,0,0,.18);

  --trans:       0.28s cubic-bezier(.4,0,.2,1);

  --container:   1400px;

  /* --font-head ve --font-body font CSS dosyalarından gelir (fonts-latin.css / fonts-ru.css / fonts-ar.css) */
}

/* ══════════════════════════════════════════════════════════
   2. RESET
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ══════════════════════════════════════════════════════════
   3. CONTAINER & BÖLÜM YARDIMCILARI
   ══════════════════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section--dark { background: var(--navy); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head--light .section-title,
.section-head--light .section-desc { color: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(21,80,101,.08);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  border-left: 3px solid var(--accent);
}
.section-label--yellow { color: var(--accent); background: rgba(254,202,22,.1); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   4. BUTONLAR
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--trans);
}
.btn:hover::after { opacity: 1; }

.btn--primary { background: var(--brand); color: var(--white); }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,80,101,.35); }

.btn--yellow { background: var(--accent); color: var(--dark); }
.btn--yellow:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,202,22,.45); }

.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: var(--white); }

.btn--ghost { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn--ghost:hover { background: var(--brand); color: var(--white); }

.btn--whatsapp { background: #25d366; color: var(--white); }
.btn--whatsapp:hover { background: #1da851; transform: translateY(-2px); }

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

/* ══════════════════════════════════════════════════════════
   5. ÜST BAR
   ══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--brand-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  border-bottom: 2px solid var(--accent);
  transition: var(--trans);
}
.top-bar.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar__contacts { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar__link {
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--trans);
}
.top-bar__link:hover { color: var(--accent); }
.top-bar__link i { color: var(--accent); font-size: 12px; }

.top-bar__langs { display: flex; align-items: center; gap: 4px; }

/* ══════════════════════════════════════════════════════════
   6. HEADER
   ══════════════════════════════════════════════════════════ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  transition: background var(--trans), box-shadow var(--trans);
}
.header.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;  /* mega menü için konum referansı */
}

.header__logo img { height: 48px; width: auto; }

/* ══════════════════════════════════════════════════════════
   7. NAV
   ══════════════════════════════════════════════════════════ */
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__item--mega { position: static; }   /* mega menü header'a göre konumlanır */
.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  color: var(--dark);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active { color: var(--brand); background: rgba(21,80,101,.06); }
.nav__link--cta { background: var(--accent); color: var(--dark) !important; padding: 10px 20px; }
.nav__link--cta:hover { background: var(--accent-dark); }
.nav__chevron { font-size: 10px; transition: transform var(--trans); }
.nav__item--mega:hover .nav__chevron { transform: rotate(180deg); }

/* ══════════════════════════════════════════════════════════
   8. MEGA MENÜ
   ══════════════════════════════════════════════════════════ */
.mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;                              /* sağ kenara sabitlenir */
  left: auto;
  transform: translateY(10px);           /* sadece dikey kayma */
  width: min(1200px, 96vw);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--accent);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 2000;
}
/* Köprü: nav linki ile mega menü arası boşluğu kapatır */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.mega-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 30px;
}

.mega-group { padding: 0 20px; }
.mega-group + .mega-group { border-left: 1px solid var(--light); }

.mega-group__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-group__title i { color: var(--accent); }

.mega-group__links li { margin-bottom: 6px; }
.mega-group__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.mega-group__links a:hover { color: var(--brand); background: rgba(21,80,101,.06); padding-left: 14px; }
.mega-group__links a i { color: var(--accent); font-size: 11px; width: 14px; }
.mega-group__links a.active-link { color: #155065; font-weight: 700; background: rgba(21,80,101,.06); }

/* ══════════════════════════════════════════════════════════
   9. BLOG DROPDOWN
   ══════════════════════════════════════════════════════════ */
.nav__item--drop { position: relative; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  transform: translateY(8px);
  width: 450px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--accent);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 2000;
  list-style: none;
}
.nav__item--drop:hover .nav__dropdown,
.nav__dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}

.nav__dropdown li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 10px 20px;
  line-height: 1.4;
  transition: var(--trans);
}
.nav__dropdown li a:hover {
  color: var(--brand);
  background: rgba(21,80,101,.05);
  padding-left: 26px;
}
.nav__dropdown li a i {
  color: var(--accent);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.nav__dropdown-all { border-top: 1px solid var(--light); margin-top: 6px; padding-top: 6px; }
.nav__dropdown-all a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand) !important;
  justify-content: center;
}
.nav__dropdown-all a:hover { background: var(--brand) !important; color: var(--white) !important; }

/* ══════════════════════════════════════════════════════════
   10. ANİMASYONLAR
   ══════════════════════════════════════════════════════════ */
@keyframes wa-ring {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(2.2); opacity: 0;  }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* WhatsApp pulse */
.fixed-btn--wa { position: relative; }
.fixed-btn--wa::before,
.fixed-btn--wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  animation: wa-ring 2s ease-out infinite;
  z-index: -1;
}
.fixed-btn--wa::after { animation-delay: 0.8s; }

/* Slider text animations */
.slide--active .slide__tag  { animation: slideInRight 0.55s ease both; animation-delay: 0.1s; }
.slide--active .slide__title { animation: slideInRight 0.6s ease both; animation-delay: 0.25s; }
.slide--active .slide__desc  { animation: fadeInUp 0.55s ease both; animation-delay: 0.45s; }
.slide--active .slide__btns  { animation: fadeInUp 0.55s ease both; animation-delay: 0.6s; }

.slide .slide__tag,
.slide .slide__title,
.slide .slide__desc,
.slide .slide__btns { opacity: 0; }

.slide--active .slide__tag,
.slide--active .slide__title,
.slide--active .slide__desc,
.slide--active .slide__btns { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   11. DİL BUTONLARI / HAMBURGER / NAV KAPAT
   ══════════════════════════════════════════════════════════ */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: var(--trans);
  letter-spacing: .5px;
}
.lang-btn img { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; }
.lang-btn:hover,
.lang-btn.active { color: var(--accent); background: rgba(255,255,255,.1); }

.nav__langs  { display: none; }
.nav__close  { display: none; }
.nav__scroll { display: contents; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════════
   12. HERO SLIDER
   ══════════════════════════════════════════════════════════ */
.slider {
  position: relative;
  height: clamp(480px, 85vh, 780px);
  overflow: hidden;
  background: var(--dark);
}
.slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,28,38,.88) 0%, rgba(11,28,38,.62) 55%, rgba(11,28,38,.25) 100%);
}
.slide__content { position: relative; z-index: 2; max-width: 700px; }
.slide__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  background: rgba(254,202,22,.12);
  border: 1px solid rgba(254,202,22,.3);
  padding: 6px 20px; border-radius: 30px; margin-bottom: 18px;
}
.slide__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 800; line-height: 1.0;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 20px; letter-spacing: -1px;
}
.slide__title em { font-style: normal; color: var(--accent); }
.slide__desc {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,.82);
  margin-bottom: 32px; line-height: 1.7; max-width: 520px;
}
.slide__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.slider::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  z-index: 10;
}
.slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--trans); z-index: 10;
  border: 1px solid rgba(255,255,255,.2);
}
.slider__arrow:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.slider__arrow--prev { left: 24px; }
.slider__arrow--next { right: 24px; }

.slider__dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider__dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,.4); border-radius: 50%;
  border: none; cursor: pointer; transition: var(--trans); padding: 0;
}
.slider__dot.active { background: var(--accent); transform: scale(1.3); box-shadow: 0 0 10px rgba(254,202,22,.6); }

/* ══════════════════════════════════════════════════════════
   13. HAKKIMIZDA
   ══════════════════════════════════════════════════════════ */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about__images { position: relative; height: 500px; }
.about__img-wrap {
  position: absolute; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about__img-wrap:hover img { transform: scale(1.04); }

.about__img-wrap--main { width: 75%; height: 380px; top: 0; left: 0; z-index: 1; }
.about__img-wrap--sub  { width: 55%; height: 260px; bottom: 0; right: 0; z-index: 2; border: 6px solid var(--white); }

.about__badge {
  position: absolute; top: 40px; right: 0;
  width: 110px; height: 110px;
  background: var(--accent); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 3; box-shadow: 0 6px 24px rgba(254,202,22,.45);
  text-align: center; line-height: 1.2;
}
.about__badge-num  { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--dark); line-height: 1; }
.about__badge-text { font-size: 10px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; }

.about__content .section-label { margin-bottom: 10px; }
.about__content .section-title { text-align: left; }
.about__text  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.about__list  { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.about__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--dark);
}
.about__list i { color: var(--brand); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.about__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   14. SAYAÇ ŞERİDİ
   ══════════════════════════════════════════════════════════ */
.counter-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 50px 0; position: relative; overflow: hidden;
}
.counter-strip::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0;
  width: 6px; background: var(--accent);
}
.counter-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.counter-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,.15); position: relative;
}
.counter-item:last-child { border-right: none; }
.counter-num    { font-family: var(--font-head); font-size: clamp(42px, 5vw, 60px); font-weight: 800; color: var(--accent); line-height: 1; display: block; }
.counter-suffix { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--accent); }
.counter-label  { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

/* ══════════════════════════════════════════════════════════
   15. ÜRÜNLER (Ana Sayfa)
   ══════════════════════════════════════════════════════════ */
.products { background: var(--light); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--trans);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.product-card__img-wrap { position: relative; height: 300px; overflow: hidden; }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__img-wrap img { transform: scale(1.07); }
.product-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,28,38,.5) 0%, transparent 60%);
  pointer-events: none;
}
.product-card__body { padding: 24px; border-top: 3px solid transparent; transition: border-color var(--trans); }
.product-card:hover .product-card__body { border-top-color: var(--accent); }

.product-card__title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.product-card__desc  { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.product-card__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--brand);
  border-bottom: 2px solid transparent; transition: var(--trans); padding-bottom: 2px;
}
.product-card__btn:hover { color: var(--accent-dark); border-bottom-color: var(--accent); gap: 12px; }
.products__footer { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════════════════════════
   16. NEDEN BİZ
   ══════════════════════════════════════════════════════════ */
.why .section-title { color: var(--white); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: var(--trans); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transition: transform var(--trans);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }

.why-card__icon {
  width: 72px; height: 72px; background: rgba(254,202,22,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px; color: var(--accent); transition: var(--trans);
}
.why-card:hover .why-card__icon { background: var(--accent); color: var(--dark); }
.why-card__title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-card__text  { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   17. VİDEO BÖLÜMÜ
   ══════════════════════════════════════════════════════════ */
.video-section { background: var(--white); }
.video-section__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.video-section__text .section-title { text-align: left; }
.video-section__text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 30px; }

.video-stat { display: flex; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.video-stat__item { background: var(--light); border-radius: var(--radius-sm); padding: 16px 24px; border-left: 4px solid var(--accent); }
.video-stat__num  { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--brand); line-height: 1; }
.video-stat__label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ══════════════════════════════════════════════════════════
   18. CTA
   ══════════════════════════════════════════════════════════ */
.cta { position: relative; background: var(--navy); padding: 90px 0; overflow: hidden; }
.cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(21,80,101,.6) 0%, transparent 60%),
    linear-gradient(135deg, rgba(254,202,22,.04) 0%, transparent 50%);
}
.cta__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0px, rgba(255,255,255,.018) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0px, rgba(255,255,255,.018) 1px, transparent 1px, transparent 60px);
}
.cta__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta__title   { font-family: var(--font-head); font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.cta__desc    { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 560px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   19. FOOTER
   ══════════════════════════════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer__top { padding: 70px 0 50px; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 50px; }

.footer__logo  { height: 44px; width: auto; margin-bottom: 18px;  }
.footer__about { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }

.social-btn {
  width: 40px; height: 40px; background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 15px; transition: var(--trans);
}
.social-btn:hover { background: var(--accent); color: var(--dark); }

.footer__title {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--white);
  margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 2px solid var(--accent); display: inline-block;
}
.footer__info-list { display: flex; flex-direction: column; gap: 14px; }
.footer__info-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.6; }
.footer__info-list i  { color: var(--accent); width: 16px; flex-shrink: 0; margin-top: 2px; font-size: 13px; }
.footer__info-list a  { color: rgba(255,255,255,.75); transition: color var(--trans); }
.footer__info-list a:hover { color: var(--accent); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.4);
}
.footer__bottom-inner p { line-height: 1.5; }
.footer__bottom-inner a {
  color: rgba(255,255,255,.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--trans);
}
.footer__bottom-inner a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   20. SABİT AKSIYON BUTONLARI
   ══════════════════════════════════════════════════════════ */
.fixed-actions { position: fixed; right: 24px; bottom: 100px; display: flex; flex-direction: column; gap: 10px; z-index: 900; }
.fixed-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px;
  box-shadow: var(--shadow-lg); transition: var(--trans); white-space: nowrap;
}
.fixed-btn i { font-size: 16px; }
.fixed-btn--wa   { background: #25d366; color: var(--white); }
.fixed-btn--wa:hover   { background: #1da851; transform: scale(1.05) translateX(-4px); }
.fixed-btn--call { background: var(--brand); color: var(--white); }
.fixed-btn--call:hover { background: var(--brand-dark); transform: scale(1.05) translateX(-4px); }

/* ══════════════════════════════════════════════════════════
   21. MOBİL ÇUBUK
   ══════════════════════════════════════════════════════════ */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark); border-top: 2px solid rgba(255,255,255,.1);
  z-index: 950; height: 60px;
}
.mobile-bar__btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; transition: var(--trans);
}
.mobile-bar__btn i { font-size: 18px; }
.mobile-bar__btn--call    { color: var(--accent); border-right: 1px solid rgba(255,255,255,.1); }
.mobile-bar__btn--wa      { color: #25d366; border-right: 1px solid rgba(255,255,255,.1); }
.mobile-bar__btn--lang    { color: rgba(255,255,255,.7); background: none; border: none; cursor: pointer; }
.mobile-bar__btn--lang:hover,
.mobile-bar__btn--lang.active { color: #feca16; }
.mobile-bar__btn:hover { opacity: .85; }

/* ══════════════════════════════════════════════════════════
   22. BLOG
   ══════════════════════════════════════════════════════════ */
.blog { background: var(--light); }
.blog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: var(--trans);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.blog-card__img-wrap { display: block; position: relative; height: 200px; overflow: hidden; }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.06); }

.blog-card__cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 30px;
  background: var(--brand); color: var(--white); z-index: 1;
}
.blog-card__cat--alt   { background: var(--accent); color: var(--dark); }
.blog-card__cat--green { background: #1a7a4a; color: var(--white); }

.blog-card__body {
  padding: 22px; display: flex; flex-direction: column; flex: 1;
  border-top: 3px solid transparent; transition: border-color var(--trans);
}
.blog-card:hover .blog-card__body { border-top-color: var(--accent); }

.blog-card__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-card__meta span { display: flex; align-items: center; gap: 5px; }
.blog-card__meta i { color: var(--accent); font-size: 11px; }

.blog-card__title  { font-family: var(--font-head); font-size: 17px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; flex: 1; }
.blog-card__title a { color: var(--dark); transition: color var(--trans); }
.blog-card__title a:hover { color: var(--brand); }
.blog-card__excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; flex: 1; }

.blog-card__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--brand);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: var(--trans); align-self: flex-start; margin-top: auto;
}
.blog-card__btn:hover { color: var(--accent-dark); border-bottom-color: var(--accent); gap: 12px; }
.blog__footer { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════════════════════════
   23. DİL POPUP
   ══════════════════════════════════════════════════════════ */
.lang-popup {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: flex-end;
  visibility: hidden; pointer-events: none;
}
.lang-popup.open { visibility: visible; pointer-events: all; }

.lang-popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background 0.3s ease; cursor: pointer;
}
.lang-popup.open .lang-popup__backdrop { background: rgba(0,0,0,.6); }

.lang-popup__box {
  position: relative; z-index: 1; width: 100%;
  background: #111820; border-radius: 20px 20px 0 0;
  border-top: 3px solid #feca16; padding-bottom: 80px;
  transform: translateY(100%); transition: transform 0.38s cubic-bezier(.4,0,.2,1);
}
.lang-popup.open .lang-popup__box { transform: translateY(0); }

.lang-popup__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.lang-popup__title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.lang-popup__title i { color: #feca16; }
.lang-popup__close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: background .2s, color .2s;
}
.lang-popup__close:hover { background: #feca16; color: #111; }

.lang-popup__grid { display: flex; align-items: stretch; padding: 20px 12px 8px; gap: 8px; }
.lang-popup__item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 6px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s; cursor: pointer;
}
.lang-popup__item img { width: 32px; height: 22px; object-fit: cover; border-radius: 3px; display: block; }
.lang-popup__item:hover { background: rgba(254,202,22,.15); border-color: rgba(254,202,22,.4); color: #feca16; }
.lang-popup__item.active { background: rgba(254,202,22,.18); border-color: #feca16; color: #feca16; }

/* ══════════════════════════════════════════════════════════
   24. YUKARI KAYDIRMA
   ══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed; right: 24px; bottom: 44px;
  width: 46px; height: 46px;
  background: var(--accent); color: var(--dark);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; box-shadow: var(--shadow); transition: var(--trans);
  opacity: 0; pointer-events: none; z-index: 900;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════════
   25. SCROLL ANİMASYONLARI
   ══════════════════════════════════════════════════════════ */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }
[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-animate]:nth-child(4) { transition-delay: 0.3s; }
[data-animate]:nth-child(5) { transition-delay: 0.35s; }
[data-animate]:nth-child(6) { transition-delay: 0.4s; }



/* ══════════════════════════════════════════════════════════
   ██ RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* ── 1200px ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .mega-menu { width: min(880px, 95vw); }
  .mega-menu__inner { padding: 24px; gap: 0; }
  /* footer__grid önce 1.4fr+1fr+1fr sonra repeat(3,1fr) ile override ediliyordu;
     net sonuç: repeat(3,1fr) + col--brand normal flow */
  .footer__grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}

/* ── 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* style */
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .video-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .video-section__text .section-title { font-size: clamp(26px, 4vw, 36px); }
  .about__inner { gap: 48px; }
  .about__images { height: 420px; }
  .about__img-wrap--main { height: 320px; }
  .about__img-wrap--sub  { height: 210px; }
}

/* ── 900px ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* üst bar gizle */
  .top-bar { display: none; }
  .hamburger { display: flex; }
  .hamburger.open { display: none; }

  /* Header */
  .header__inner { padding-top: 18px; padding-bottom: 18px; }
  .header__logo img { height: 60px; }

  /* Mobil nav overlay */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }

  .nav__close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 14px; right: 14px;
    width: 42px; height: 42px;
    background: rgba(255,255,255,.08); border-radius: 50%; color: var(--white);
    font-size: 18px; z-index: 3; transition: background .25s, color .25s;
    border: 1px solid rgba(255,255,255,.12); cursor: pointer;
  }
  .nav__close:hover { background: #feca16; color: #111; }

  .nav__langs {
    display: flex; position: absolute; bottom: 0; left: 0; right: 0;
    height: 68px; background: rgba(254,202,22,.07);
    border-top: 1px solid rgba(254,202,22,.25); z-index: 2;
  }
  .nav__langs .lang-btn {
    flex: 1; flex-direction: column; gap: 4px; padding: 10px 4px;
    border-radius: 0; font-size: 10px; font-weight: 700;
    color: rgba(255,255,255,.6); justify-content: center;
    border-right: 1px solid rgba(255,255,255,.07);
    text-align: center; letter-spacing: .6px;
  }
  .nav__langs .lang-btn:last-child { border-right: none; }
  .nav__langs .lang-btn img { width: 26px; height: 17px; border-radius: 2px; margin: 0 auto; }
  .nav__langs .lang-btn:hover,
  .nav__langs .lang-btn.active { background: rgba(254,202,22,.18); color: #feca16; }

  .nav__scroll {
    display: block; position: absolute;
    top: 0; left: 0; right: 0; bottom: 68px;
    overflow-y: scroll; overflow-x: hidden;
    -webkit-overflow-scrolling: touch; overscroll-behavior-y: contain;
    padding: 70px 20px 24px;
  }

  .nav__list { flex-direction: column; gap: 2px; width: 100%; display: flex; }
  .nav__item { width: 100%; }
  .nav__link { font-size: 17px; color: #fff; padding: 13px 14px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
  .nav__link:hover,
  .nav__link.active { background: rgba(255,255,255,.08); color: #feca16; }
  .nav__link--cta { background: #feca16; color: #111 !important; margin-top: 8px; }
  .nav__chevron { display: block; }

  /* Mobil mega menü */
  .mega-menu {
    display: none; position: static !important; transform: none !important;
    width: 100%; opacity: 1; pointer-events: auto;
    box-shadow: none; border-radius: 8px;
    border-top: 2px solid rgba(254,202,22,.35);
    background: rgba(255,255,255,.04); margin-top: 4px; margin-bottom: 4px;
  }
  .mega-menu::before { display: none; }
  .mega-menu.open { display: block; }

  .mega-menu__inner { display: block; padding: 10px 0; }
  .mega-group { padding: 10px 14px 6px; border-left: none !important; border-bottom: 1px solid rgba(255,255,255,.06); }
  .mega-group:last-child { border-bottom: none; }
  .mega-group__title { font-size: 11px; color: #feca16; padding-bottom: 8px; margin-bottom: 6px; border-bottom: 1px solid rgba(254,202,22,.25); }
  .mega-group__links a { font-size: 14px; color: rgba(255,255,255,.8); padding: 8px 8px; }
  .mega-group__links a:hover { background: rgba(255,255,255,.07); color: #feca16; padding-left: 14px; }

  /* Blog dropdown mobil */
  .nav__dropdown {
    display: none; position: static; transform: none !important;
    width: 100%; opacity: 1;
    box-shadow: none; border-top: 2px solid rgba(254,202,22,.3);
    background: rgba(255,255,255,.04); border-radius: 8px;
    margin-top: 4px; padding: 6px 0;
  }
  .nav__dropdown.open { display: block; }
  .nav__dropdown li a { color: rgba(255,255,255,.8); font-size: 14px; padding: 10px 16px; }
  .nav__dropdown li a:hover { background: rgba(255,255,255,.07); color: #feca16; padding-left: 22px; }
  .nav__dropdown-all a { color: #feca16 !important; }

  /* Mobil bar */
  .mobile-bar { display: flex; }
  .fixed-actions { display: none; }
  .scroll-top { bottom: 74px; right: 14px; }

  /* Hakkımızda */
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__images { height: 380px; }
  .about__img-wrap--main { width: 80%; height: 300px; }
  .about__img-wrap--sub  { height: 200px; }

  /* Sayaç */
  .counter-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 24px; }
  .counter-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .counter-item:nth-child(3),
  .counter-item:nth-child(4) { border-bottom: none; }

  /* Ürünler / Blog / Neden Biz */
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid  { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta__inner   { flex-direction: column; text-align: center; align-items: center; }
  .cta__actions { justify-content: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__col--brand { grid-column: 1 / -1; }

}
/* ── 600px ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Genel */
  .section-pad { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Slider */
  .slider { height: 100vh; height: 100dvh; }
  .slide__title { font-size: clamp(26px, 8vw, 44px); }
  .slide__desc  { font-size: 13px; }
  .slide__btns  { flex-direction: column; gap: 10px; }
  .slide__btns .btn { width: 100%; justify-content: center; }
  .slider__arrow { width: 40px; height: 40px; font-size: 13px; }
  .slider__arrow--prev { left: 12px; }
  .slider__arrow--next { right: 12px; }

  /* Hakkımızda */
  .about__images { height: 280px; }
  .about__img-wrap--main { width: 85%; height: 230px; }
  .about__img-wrap--sub  { height: 160px; width: 60%; }
  .about__badge { width: 88px; height: 88px; }
  .about__badge-num { font-size: 22px; }

  /* Sayaç */
  .counter-strip__inner { grid-template-columns: repeat(2, 1fr); }

  /* Ürünler / Blog / Neden Biz */
  .products__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .why__grid  { grid-template-columns: 1fr; }

  /* Mega menü küçük */
  .mega-menu__inner { grid-template-columns: 1fr; }

  /* CTA */
  .cta__actions { flex-direction: column; width: 100%; }
  .cta__actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col--brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

  /* Video */
  .video-stat { flex-direction: column; gap: 16px; }
  .video-stat__item { width: 100%; }

}


/* ── 400px ──────────────────────────────────────────────── */
@media (max-width: 400px) {
  /* style */
  .slide__tag { font-size: 10px; padding: 4px 12px; }
  .nav__link  { font-size: 16px; padding: 12px 14px; }
  .about__actions { flex-direction: column; }
  .about__actions .btn { width: 100%; justify-content: center; }
}



/* ══════════════════════════════════════════════════════════
   ██ PAGE HERO  (tüm iç sayfalarda ortak)
   ══════════════════════════════════════════════════════════ */
.page-hero,
.contact-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 60px 0;
}

.page-hero__pattern,
.contact-hero__pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(21,80,101,.18) 0px, rgba(21,80,101,.18) 1px,
      transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg,
      rgba(254,202,22,.06) 0px, rgba(254,202,22,.06) 1px,
      transparent 1px, transparent 40px);
}

.page-hero__glow,
.contact-hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(21,80,101,.55) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(254,202,22,.08) 0%, transparent 50%);
}

.page-hero::after,
.contact-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

.page-hero__inner,
.contact-hero__inner { position: relative; z-index: 2; }

.page-hero__label,
.contact-hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent);
  background: rgba(254,202,22,.12); border: 1px solid rgba(254,202,22,.3);
  padding: 5px 16px; border-radius: 30px; margin-bottom: 14px;
}

.page-hero__title,
.contact-hero__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 70px); font-weight: 800;
  color: var(--white); text-transform: uppercase;
  line-height: 1; margin-bottom: 14px; letter-spacing: -1px;
}
.page-hero__title span,
.contact-hero__title span { color: var(--accent); }

.page-hero__desc,
.contact-hero__desc {
  font-size: 15px; color: rgba(255,255,255,.72);
  max-width: 560px; line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   ██ BREADCRUMB  (ortak)
   ══════════════════════════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--light);
  border-bottom: 1px solid #e2e8ec;
  padding: 13px 0;
}
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  list-style: none; font-size: 13px; color: var(--muted); gap: 0;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before { content: '/'; margin: 0 8px; color: #bcc8d0; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb li[aria-current="page"] { color: var(--brand); font-weight: 600; }
.breadcrumb i { margin-right: 5px; color: var(--accent); font-size: 11px; }

/* ══════════════════════════════════════════════════════════
   ██ İLETİŞİM – HIZLI KARTLAR
   ══════════════════════════════════════════════════════════ */
.contact-cards { padding: 48px 0 0; }
.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ccard {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--white); border: 1px solid #e2e8ec; border-radius: var(--radius);
  padding: 28px 20px; box-shadow: var(--shadow-sm);
  transition: var(--trans); text-decoration: none; color: inherit;
  border-bottom: 3px solid transparent;
}
.ccard:hover {
  box-shadow: var(--shadow); transform: translateY(-5px);
  border-bottom-color: var(--accent);
}

.ccard__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(21,80,101,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--brand);
  margin-bottom: 14px; transition: var(--trans);
}
.ccard:hover .ccard__icon { background: var(--brand); color: var(--accent); }

.ccard__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted); margin-bottom: 6px;
}
.ccard__value {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--dark); margin-bottom: 5px; line-height: 1.3;
}
.ccard__sub { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   ██ İLETİŞİM – FORM + SIDEBAR LAYOUT
   ══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 56px 0 72px;
  align-items: start;
}

/* ── Form kutusu ── */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}

.contact-form-wrap__head {
  display: flex; align-items: center; gap: 16px;
  background: var(--brand); color: var(--white);
  padding: 22px 28px;
}
.contact-form-wrap__head-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-form-wrap__head h2 {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.contact-form-wrap__head p { font-size: 13px; color: rgba(255,255,255,.7); }

.contact-form { padding: 32px 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }

.form-label {
  font-size: 13px; font-weight: 600; color: var(--dark);
  letter-spacing: .3px;
}
.form-label span { color: #e63946; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: var(--light); border: 1.5px solid #dde3e8;
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none;
}
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(21,80,101,.1);
  background: var(--white);
}
.form-control::placeholder { color: #aab4bc; }
select.form-control { cursor: pointer; }
textarea.form-control { min-height: 130px; resize: vertical; }

.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); margin-bottom: 24px;
  cursor: pointer; line-height: 1.5;
}
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--brand); cursor: pointer; }
.form-check a { color: var(--brand); text-decoration: underline; }

.form-submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.form-note i { color: var(--brand); }

/* Başarı mesajı */
.form-success {
  display: none; text-align: center; padding: 56px 28px;
}
.form-success__icon {
  width: 72px; height: 72px; background: #dcf5e8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #1a7a4a; margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  color: var(--dark); margin-bottom: 10px;
}
.form-success p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── Sidebar ── */
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }

.info-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.info-card__head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); background: var(--brand);
  padding: 13px 18px;
}
.info-card__head i { color: var(--accent); }
.info-card__body { padding: 6px 0; }

.info-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px; transition: background .18s;
}
.info-item:hover { background: var(--light); }
.info-item__icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(21,80,101,.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--brand);
}
.info-item__label { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .5px; }
.info-item__value { font-size: 14px; font-weight: 600; color: var(--dark); }
.info-item__value a { color: var(--dark); transition: color .2s; }
.info-item__value a:hover { color: var(--brand); }

/* Çalışma saatleri */
.hours-list { padding: 8px 18px 14px; }
.hours-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid #f0f3f5; font-size: 13px;
}
.hours-item:last-child { border-bottom: none; }
.hours-item__day { color: var(--text); font-weight: 500; }
.hours-item__time { font-weight: 700; font-family: var(--font-head); font-size: 14px; }
.hours-item--open  .hours-item__time { color: #1a7a4a; }
.hours-item--closed .hours-item__time { color: #e63946; }

/* WhatsApp kutusu */
.wa-box {
  background: linear-gradient(135deg, #1a4d1e 0%, #1da851 100%);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
}
.wa-box__icon {
  font-size: 40px; color: #fff; opacity: .9; margin-bottom: 10px; display: block;
}
.wa-box h4 {
  font-family: var(--font-head); font-size: 19px; font-weight: 800;
  color: #fff; margin-bottom: 8px;
}
.wa-box p { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 16px; }
.wa-box .btn {
  background: #fff; color: #1a4d1e; width: 100%; justify-content: center;
  font-size: 14px;
}
.wa-box .btn:hover { background: var(--accent); color: var(--dark); }

/* ══════════════════════════════════════════════════════════
   ██ İLETİŞİM – ŞUBELER
   ══════════════════════════════════════════════════════════ */
.branches { padding: 72px 0; background: var(--light); }
.branches__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.branch-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid #e2e8ec; transition: var(--trans);
}
.branch-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.branch-card__head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; border-bottom: 1px solid #f0f3f5;
}
.branch-card__head-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(21,80,101,.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--brand);
}
.branch-card__head h3 {
  font-family: var(--font-head); font-size: 19px; font-weight: 800;
  color: var(--dark); margin-bottom: 3px;
}
.branch-card__head span { font-size: 12px; color: var(--muted); font-weight: 500; }

.branch-card__body { padding: 20px 22px; flex: 1; }

.branch-info { display: flex; flex-direction: column; gap: 10px; }
.branch-info-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text); line-height: 1.5;
}
.branch-info-item i {
  color: var(--accent); font-size: 13px; width: 14px;
  flex-shrink: 0; margin-top: 2px;
}
.branch-info-item a { color: var(--text); transition: color .2s; }
.branch-info-item a:hover { color: var(--brand); }

.branch-card__footer {
  display: flex; gap: 10px; padding: 16px 22px;
  border-top: 1px solid #f0f3f5;
}
.branch-card__footer .btn { flex: 1; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   ██ İLETİŞİM – HARİTA
   ══════════════════════════════════════════════════════════ */
.map-section { padding: 72px 0; }
.map-section__head { text-align: center; margin-bottom: 36px; }

.map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-wrap iframe { display: block; width: 100%; height: 460px; border: none; }

.map-wrap__overlay {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius);
  padding: 16px 22px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
  white-space: nowrap; z-index: 2;
}
.map-address { display: flex; align-items: center; gap: 12px; }
.map-address__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(21,80,101,.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--brand);
}
.map-address__text { font-size: 13px; color: var(--text); line-height: 1.5; }
.map-address__text strong { display: block; font-weight: 700; color: var(--dark); }

/* ══════════════════════════════════════════════════════════
   ██ İLETİŞİM RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .contact-layout { grid-template-columns: 1fr 320px; gap: 28px; }
  .contact-cards__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .branches__grid { grid-template-columns: 1fr; }
  .map-wrap__overlay { flex-direction: column; text-align: center; white-space: normal; width: calc(100% - 32px); }
}

@media (max-width: 640px) {
  .page-hero, .contact-hero { min-height: auto; padding: 44px 0; }
  .contact-cards__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contact-layout { padding: 36px 0 48px; }
  .contact-form { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-wrap iframe { height: 320px; }
  .map-wrap__overlay { bottom: 12px; }
  .branches__grid { grid-template-columns: 1fr; }
  .branches { padding: 48px 0; }
  .map-section { padding: 48px 0; }
  .branch-card__footer { flex-direction: column; }
}

@media (max-width: 400px) {
  .contact-cards__grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════
   ██ GALERİ SAYFASI
   ══════════════════════════════════════════════════════════ */

/* ── Filtre çubuğu ── */
.gallery-section { padding: 64px 0 80px; }

.gallery-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
}

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.filter-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid #dde3e8; background: var(--white);
  color: var(--muted); cursor: pointer; transition: var(--trans);
}
.filter-btn i { font-size: 11px; }
.filter-btn:hover { border-color: var(--brand); color: var(--brand); background: rgba(21,80,101,.05); }
.filter-btn.active { background: var(--brand); color: var(--white); border-color: var(--brand); }
.filter-btn .filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,.2); font-size: 10px; font-weight: 800;
}
.filter-btn.active .filter-count { background: rgba(255,255,255,.25); }
.filter-btn:not(.active) .filter-count { background: var(--light); color: var(--muted); }

.gallery-count {
  font-size: 13px; color: var(--muted); white-space: nowrap;
}
.gallery-count strong { color: var(--brand); font-weight: 700; }

/* ── Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: var(--light);
  cursor: pointer; display: block;
  /* aspect-ratio per size variant set below */
}
.gallery-item--tall   { grid-row: span 2; }
.gallery-item--wide   { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.07); }

/* Default height for non-spanning items */
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { height: 240px; }
.gallery-item--wide:not(.gallery-item--tall) { height: 240px; }
.gallery-item--tall { height: calc(240px * 2 + 14px); }
.gallery-item--tall.gallery-item--wide { height: calc(240px * 2 + 14px); }

.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,28,38,.75) 0%, rgba(11,28,38,.1) 60%, transparent 100%);
  opacity: 0; transition: opacity .32s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 18px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__zoom {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white);
  transition: transform .32s, background .32s;
}
.gallery-item:hover .gallery-item__zoom {
  transform: translate(-50%, -50%) scale(1);
  background: var(--accent); border-color: var(--accent); color: var(--dark);
}

.gallery-item__caption { position: relative; z-index: 1; }
.gallery-item__cat {
  display: inline-block; font-family: var(--font-head); font-size: 10px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 5px;
}
.gallery-item__title {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--white); line-height: 1.25;
}

.gallery-item.hidden { display: none; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(7,15,20,.93); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox__inner {
  position: relative; max-width: min(1100px, 92vw);
  width: 100%; display: flex; flex-direction: column; align-items: center;
  transform: scale(.92); transition: transform .3s;
}
.lightbox.open .lightbox__inner { transform: scale(1); }

.lightbox__img-wrap {
  width: 100%; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6); background: #0b1c26;
  max-height: 78vh; display: flex; align-items: center; justify-content: center;
}
.lightbox__img-wrap img {
  width: 100%; max-height: 78vh; object-fit: contain; display: block;
}

.lightbox__info {
  margin-top: 16px; text-align: center;
}
.lightbox__cat {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 5px;
}
.lightbox__title {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--white);
}

/* Nav arrows */
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute; display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15); color: var(--white);
  transition: background .22s, color .22s; border-radius: 50%;
}
.lightbox__close {
  top: -16px; right: -16px; width: 40px; height: 40px; font-size: 16px;
}
.lightbox__close:hover { background: #e63946; border-color: #e63946; }
.lightbox__prev,
.lightbox__next {
  top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 18px;
}
.lightbox__prev { left: -64px; }
.lightbox__next { right: -64px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }

.lightbox__counter {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: rgba(255,255,255,.45); font-family: var(--font-head);
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════════════════════
   ██ GALERİ RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { height: calc(200px * 2 + 14px); }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide),
  .gallery-item--wide:not(.gallery-item--tall) { height: 200px; }
  .lightbox__prev { left: -12px; }
  .lightbox__next { right: -12px; }
  .lightbox__close { top: -12px; right: -12px; }
}

@media (max-width: 560px) {
  .gallery-section { padding: 40px 0 56px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: span 1; grid-row: span 1; height: 170px !important; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { height: 170px; }
  .filter-btn { padding: 7px 12px; font-size: 12px; }
  .gallery-toolbar { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════════════════════════
   ██ GALERİ – SEKMELER (Foto / Video)
   ══════════════════════════════════════════════════════════ */

/* ── Sekme çubuğu ── */
.gallery-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid #e2e8ec;
  margin-bottom: 36px;
}

.gallery-tab {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 16px 32px; border: none; background: none;
  color: var(--muted); cursor: pointer;
  position: relative; transition: color .22s;
}
.gallery-tab i { font-size: 15px; }

/* alt çizgi indikatörü */
.gallery-tab::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.gallery-tab:hover { color: var(--brand); }
.gallery-tab.active { color: var(--brand); }
.gallery-tab.active::after { transform: scaleX(1); }

.gallery-tab__count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 26px; height: 22px; padding: 0 6px;
  border-radius: 30px; font-size: 12px; font-weight: 800;
  background: var(--light); color: var(--muted);
  transition: background .22s, color .22s;
}
.gallery-tab.active .gallery-tab__count { background: var(--brand); color: var(--white); }

/* ── Panel görünürlüğü ── */
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

/* ══════════════════════════════════════════════════════════
   ██ GALERİ – VİDEO GRİD
   ══════════════════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.video-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #e2e8ec; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.video-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.video-card__thumb {
  position: relative; width: 100%; padding-top: 56.25%; /* 16:9 */
  background: var(--navy);
}
.video-card__thumb iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
  display: block;
}

.video-card__info { padding: 20px 22px 24px; }

.video-card__cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand); margin-bottom: 8px;
}
.video-card__cat i { color: var(--accent); }

.video-card__title {
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--dark); line-height: 1.3; margin-bottom: 8px;
}

.video-card__desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* YouTube kanalı butonu */
.video-more {
  text-align: center; margin-top: 48px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .gallery-tabs { gap: 0; overflow-x: auto; }
  .gallery-tab  { padding: 13px 20px; font-size: 14px; white-space: nowrap; }
  .video-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .gallery-tab { padding: 11px 14px; font-size: 13px; }
  .gallery-tab__count { display: none; }
  .video-card__info { padding: 14px 16px 18px; }
  .video-card__title { font-size: 16px; }
}


/* ══════════════════════════════════════════════════════════
   ██ ÜRÜN DETAY SAYFASI
   ══════════════════════════════════════════════════════════ */

/* ── Ürün özet hero (resim + başlık yan yana) ── */
.pd-overview {
  padding: 72px 0 64px;
}
.pd-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Görsel */
.pd-gallery { position: sticky; top: 100px; }

.pd-gallery__main {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: var(--light);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}
.pd-gallery__main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  display: block;
}
.pd-gallery__main:hover img { transform: scale(1.04); }

.pd-gallery__zoom {
  position: absolute; bottom: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--brand);
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.pd-gallery__main:hover .pd-gallery__zoom { background: var(--accent); color: var(--dark); }

.pd-gallery__thumbs {
  display: flex; gap: 10px; margin-top: 12px;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none;
}
.pd-gallery__thumbs::-webkit-scrollbar { display: none; }

.pd-gallery__thumb {
  flex-shrink: 0; width: 88px; height: 66px;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 2.5px solid transparent; cursor: pointer;
  transition: border-color .2s;
}
.pd-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__thumb.active { border-color: var(--brand); }
.pd-gallery__thumb:hover:not(.active) { border-color: rgba(21,80,101,.35); }

/* Bilgi paneli */
.pd-info {}

.pd-info__cat {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brand); background: rgba(21,80,101,.08);
  padding: 5px 14px; border-radius: 30px; margin-bottom: 16px;
  border-left: 3px solid var(--accent);
}

.pd-info__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800; color: var(--dark);
  line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 18px;
}
.pd-info__title span { color: var(--brand); }

.pd-info__desc {
  font-size: 15.5px; color: var(--text); line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid #e2e8ec;
}

/* Hızlı özellikler */
.pd-quick-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 28px;
}
.pd-qs-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--light); border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.pd-qs-item__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--white); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--brand); box-shadow: var(--shadow-sm);
}
.pd-qs-item__label { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.pd-qs-item__val   { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--dark); }

/* CTA butonları */
.pd-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid #e2e8ec;
}
.pd-actions .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ── Özellikler / Avantajlar bölümü ── */
.pd-features { padding: 72px 0; background: var(--light); }

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

.pd-feat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid #e2e8ec;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  position: relative; overflow: hidden;
}
.pd-feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.pd-feat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pd-feat-card:hover::before { transform: scaleX(1); }

.pd-feat-card__icon {
  width: 54px; height: 54px; border-radius: var(--radius);
  background: rgba(21,80,101,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--brand); margin-bottom: 18px;
  transition: var(--trans);
}
.pd-feat-card:hover .pd-feat-card__icon { background: var(--brand); color: var(--accent); }

.pd-feat-card__title {
  font-family: var(--font-head); font-size: 19px; font-weight: 800;
  color: var(--dark); margin-bottom: 10px;
}
.pd-feat-card__desc {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* ── Model / Kapasite tablosu ── */
.pd-models { padding: 72px 0; }

.pd-models__table-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8ec;
}
.pd-models__table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.pd-models__table thead tr {
  background: var(--brand); color: var(--white);
}
.pd-models__table thead th {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 20px; text-align: left;
  white-space: nowrap;
}
.pd-models__table thead th:first-child { border-radius: 0; }
.pd-models__table tbody tr {
  border-bottom: 1px solid #f0f3f5;
  transition: background .18s;
}
.pd-models__table tbody tr:last-child { border-bottom: none; }
.pd-models__table tbody tr:hover { background: rgba(21,80,101,.04); }
.pd-models__table tbody tr:nth-child(even) { background: var(--light); }
.pd-models__table tbody tr:nth-child(even):hover { background: rgba(21,80,101,.04); }
.pd-models__table td {
  padding: 14px 20px; color: var(--text);
  vertical-align: middle;
}
.pd-models__table td:first-child {
  font-family: var(--font-head); font-size: 16px;
  font-weight: 800; color: var(--dark);
}
.pd-models__table td strong { color: var(--brand); }
.pd-table-badge {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--accent); color: var(--dark);
  padding: 2px 8px; border-radius: 30px; margin-left: 6px;
}
.pd-table-badge--pop { background: var(--brand); color: var(--white); }

/* ── Uygulama alanları ── */
.pd-apps { padding: 72px 0; background: var(--light); }

.pd-apps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pd-app-item {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
  border: 1px solid #e2e8ec; box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.pd-app-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.pd-app-item__icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(21,80,101,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--brand); transition: var(--trans);
}
.pd-app-item:hover .pd-app-item__icon { background: var(--brand); color: var(--accent); }
.pd-app-item__title {
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  color: var(--dark); margin-bottom: 6px;
}
.pd-app-item__desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── Teknik özellikler liste ── */
.pd-specs { padding: 72px 0; }
.pd-specs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.pd-specs-list { display: flex; flex-direction: column; gap: 0; }
.pd-specs-list__item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid #f0f3f5;
  gap: 16px;
}
.pd-specs-list__item:last-child { border-bottom: none; }
.pd-specs-list__key {
  font-size: 13.5px; color: var(--muted); font-weight: 500;
  flex-shrink: 0;
}
.pd-specs-list__val {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--dark); text-align: right;
}

.pd-specs__img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.pd-specs__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Lightbox (detay) ── */
.pd-lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(7,15,20,.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .28s;
}
.pd-lightbox.open { opacity: 1; pointer-events: all; }
.pd-lightbox__inner {
  max-width: min(1200px, 92vw); width: 100%;
  transform: scale(.94); transition: transform .28s;
}
.pd-lightbox.open .pd-lightbox__inner { transform: scale(1); }
.pd-lightbox__inner img {
  width: 100%; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius); display: block;
}
.pd-lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white); transition: background .22s;
  cursor: pointer;
}
.pd-lightbox__close:hover { background: #e63946; border-color: #e63946; }

/* ══════════════════════════════════════════════════════════
   ██ ÜRÜN DETAY RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pd-overview__grid { gap: 48px; }
  .pd-features__grid { grid-template-columns: repeat(2, 1fr); }
  .pd-apps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pd-overview__grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-gallery { position: static; }
  .pd-specs__grid { grid-template-columns: 1fr; }
  .pd-specs__img { order: -1; }
  .pd-models__table { font-size: 13px; }
  .pd-models__table th,
  .pd-models__table td { padding: 12px 14px; }
}
@media (max-width: 640px) {
  .pd-overview { padding: 40px 0; }
  .pd-features { padding: 48px 0; }
  .pd-features__grid { grid-template-columns: 1fr; }
  .pd-models { padding: 48px 0; }
  .pd-apps { padding: 48px 0; }
  .pd-apps__grid { grid-template-columns: 1fr 1fr; }
  .pd-specs { padding: 48px 0; }
  .pd-quick-specs { grid-template-columns: 1fr; }
  .pd-models__table-wrap { overflow-x: auto; }
  .pd-models__table { min-width: 640px; }
}


/* ══════════════════════════════════════════════════════════
   ██ MODEL KARTI LİSTESİ (.model-cards)
   ══════════════════════════════════════════════════════════ */
.model-cards {
  display: flex; flex-direction: column; gap: 12px;
}

.model-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
  background: var(--white); border: 1px solid #e2e8ec;
  border-left: 4px solid transparent;
  border-radius: var(--radius); padding: 24px 28px;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  position: relative;
}
.model-card:hover {
  border-left-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.model-card--featured {
  border-left-color: var(--accent);
  background: linear-gradient(to right, rgba(254,202,22,.04) 0%, var(--white) 40%);
}
.model-card--featured:hover { border-left-color: var(--accent-dark); }

.model-card__badge {
  position: absolute; top: -1px; right: 24px;
  font-family: var(--font-head); font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--accent); color: var(--dark);
  padding: 4px 12px; border-radius: 0 0 8px 8px;
}

.model-card__left {
  display: flex; align-items: center; gap: 24px; flex: 1; min-width: 0;
}

.model-card__num {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: rgba(21,80,101,.12); line-height: 1; flex-shrink: 0;
  width: 52px; text-align: center;
  transition: color .25s;
}
.model-card:hover .model-card__num { color: rgba(21,80,101,.22); }
.model-card--featured .model-card__num { color: rgba(254,202,22,.35); }

.model-card__info { flex: 1; min-width: 0; }

.model-card__title {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--dark); margin-bottom: 6px; line-height: 1.2;
}

.model-card__desc {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  margin-bottom: 12px; max-width: 680px;
}

.model-card__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.model-card__tags span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; color: var(--brand);
  background: rgba(21,80,101,.07); border-radius: 4px;
  padding: 4px 10px;
}
.model-card__tags span i { font-size: 10px; color: var(--accent); }

.model-card .btn { flex-shrink: 0; white-space: nowrap; }

/* Responsive */
@media (max-width: 768px) {
  .model-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .model-card__num { display: none; }
  .model-card .btn { width: 100%; justify-content: center; }
  .model-card { transform: none !important; }
}


/* ══════════════════════════════════════════════════════════
   ██ ÜRÜN DETAY – 4 GRUP LAYOUT
   ══════════════════════════════════════════════════════════ */

/* Ortak bölüm başlığı */
.pg-head { text-align: center; margin-bottom: 48px; }

/* ── GRUP 1: Resim + İçerik ── */
.pg1 { padding: 64px 0 72px; }

.pg1__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pg1__img-wrap {
  position: sticky; top: 96px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--light);
}
.pg1__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pg1__label {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brand); background: rgba(21,80,101,.08);
  padding: 5px 14px; border-radius: 30px; margin-bottom: 14px;
  border-left: 3px solid var(--accent);
}
.pg1__title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800; color: var(--dark);
  line-height: 1.05; letter-spacing: -1px; margin-bottom: 14px;
}
.pg1__title span { color: var(--brand); }
.pg1__desc {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid #e2e8ec;
}

/* Model listesi */
.pg1__models { margin-bottom: 28px; }
.pg1__models-head {
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
  margin-bottom: 10px;
}
.pg1__model-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 14px;
  border-left: 3px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border-bottom: 1px solid #f0f3f5;
  transition: background .18s, border-color .18s;
}
.pg1__model-row:last-child { border-bottom: none; }
.pg1__model-row:hover { background: var(--light); border-left-color: var(--brand); }
.pg1__model-row--featured {
  background: rgba(254,202,22,.06);
  border-left-color: var(--accent);
  border-radius: var(--radius-sm);
  margin: 4px 0;
}
.pg1__model-row--featured:hover { background: rgba(254,202,22,.1); border-left-color: var(--accent-dark); }

.pg1__model-info { flex: 1; min-width: 0; }
.pg1__model-name {
  font-family: var(--font-head); font-size: 16px; font-weight: 800;
  color: var(--dark); margin-bottom: 3px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pg1__model-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.pg1__model-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: var(--accent); color: var(--dark);
  padding: 2px 7px; border-radius: 30px;
}
.pg1__model-row .btn { flex-shrink: 0; padding: 9px 18px; font-size: 12px; }

/* CTA */
.pg1__cta {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid #e2e8ec;
}
.pg1__cta .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ── GRUP 2: Karşılaştırma Tablosu ── */
.pg2 { padding: 72px 0; background: var(--light); }

.pg2__table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid #e2e8ec;
}
.pg2__table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; min-width: 800px;
}
.pg2__table thead tr { background: var(--navy); }
.pg2__table thead th {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase;
  color: rgba(255,255,255,.9); padding: 15px 18px;
  text-align: center; white-space: nowrap;
}
.pg2__table thead th.pg2__spec-col { text-align: left; color: rgba(255,255,255,.6); }
.pg2__table thead th.pg2__featured-col { background: rgba(254,202,22,.18); color: var(--accent); }

.pg2__table tbody tr { border-bottom: 1px solid #f0f3f5; transition: background .15s; }
.pg2__table tbody tr:last-child { border-bottom: none; }
.pg2__table tbody tr:hover { background: rgba(21,80,101,.03); }
.pg2__table tbody tr:nth-child(even) { background: #fafbfc; }
.pg2__table tbody tr:nth-child(even):hover { background: rgba(21,80,101,.04); }

.pg2__table td {
  padding: 13px 18px; color: var(--text);
  text-align: center; vertical-align: middle;
}
.pg2__table td.pg2__spec-col {
  text-align: left; font-size: 13px; font-weight: 600;
  color: var(--muted); background: var(--white);
  border-right: 1px solid #f0f3f5; white-space: nowrap;
}
.pg2__featured-col {
  background: rgba(254,202,22,.07) !important;
  border-left: 2px solid rgba(254,202,22,.4);
  border-right: 2px solid rgba(254,202,22,.4);
}
.pg2__check { color: #16a34a; font-size: 15px; }
.pg2__action-row td { padding: 14px 18px; background: var(--white) !important; }
.pg2__action-row .btn { padding: 8px 16px; font-size: 12px; }

/* ── GRUP 3: Açıklama ── */
.pg3 { padding: 72px 0; }
.pg3__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px; align-items: start;
}
.pg3__title {
  font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--dark);
  margin: 12px 0 20px; line-height: 1.15;
}
.pg3__content p {
  font-size: 15px; color: var(--text); line-height: 1.85;
  margin-bottom: 16px;
}
.pg3__list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-top: 24px;
}
.pg3__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text);
}
.pg3__list li i { color: #16a34a; font-size: 15px; flex-shrink: 0; }

.pg3__cta-box {
  position: sticky; top: 96px;
  background: var(--navy); border-radius: var(--radius);
  padding: 32px 26px; text-align: center;
}
.pg3__cta-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(254,202,22,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent);
}
.pg3__cta-box h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--white); margin-bottom: 10px; line-height: 1.25;
}
.pg3__cta-box p { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 22px; line-height: 1.6; }
.pg3__cta-box .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.pg3__cta-tel {
  display: flex; flex-direction: column; gap: 7px;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.pg3__cta-tel span { font-size: 12.5px; color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; gap: 6px; }
.pg3__cta-tel i { color: var(--accent); font-size: 11px; }

/* ── GRUP 4: Galeri ── */
.pg4 { padding: 72px 0; background: var(--light); }
.pg4__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pg4__item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; background: #dde3e8;
}
.pg4__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.pg4__item:hover img { transform: scale(1.07); }
.pg4__overlay {
  position: absolute; inset: 0;
  background: rgba(11,28,38,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .28s;
  font-size: 22px; color: var(--white);
}
.pg4__item:hover .pg4__overlay { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   ██ ÜRÜN DETAY 4 GRUP – RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pg1__grid { gap: 40px; }
  .pg3__grid { grid-template-columns: 1fr 280px; gap: 36px; }
}
@media (max-width: 900px) {
  .pg1__grid { grid-template-columns: 1fr; }
  .pg1__img-wrap { position: static; aspect-ratio: 16/9; }
  .pg3__grid { grid-template-columns: 1fr; }
  .pg3__cta-box { position: static; }
  .pg4__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pg1 { padding: 36px 0 48px; }
  .pg2 { padding: 48px 0; }
  .pg3 { padding: 48px 0; }
  .pg4 { padding: 48px 0; }
  .pg4__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pg1__model-row { flex-direction: column; align-items: flex-start; }
  .pg1__model-row .btn { width: 100%; justify-content: center; }
  .pg1__cta { flex-direction: column; }
  .pg1__cta .btn { min-width: unset; }
}


/* ══════════════════════════════════════════════════════════
   ██ ÜRÜN MODEL DETAY SAYFASI (Asurmak STN serisi)
   ══════════════════════════════════════════════════════════ */

/* ── Grup 1: Resim + Model Bilgisi ── */
.md1 { padding: 64px 0 72px; }
.md1__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Sol: görsel */
.md1__img {
  position: sticky; top: 96px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--light);
}
.md1__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sağ: bilgi */
.md1__label {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--brand); background: rgba(21,80,101,.08);
  padding: 5px 14px; border-radius: 30px; margin-bottom: 14px;
  border-left: 3px solid var(--accent);
}
.md1__series {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  color: var(--muted); margin-bottom: 4px; text-transform: uppercase;
  letter-spacing: 1px;
}
.md1__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800; color: var(--dark);
  line-height: 1.0; letter-spacing: -1.5px;
  margin-bottom: 6px;
}
.md1__capacity {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--brand); margin-bottom: 18px;
}
.md1__desc {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin-top: 15px; padding-bottom: 28px;
  border-bottom: 1px solid #e2e8ec;
}

/* Hızlı teknik özellikler grid */
.md1__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.md1__spec {
  display: flex; align-items: center; gap: 12px;
  background: var(--light); border-radius: var(--radius-sm);
  padding: 12px 14px; border: 1px solid #e8ecf0;
  transition: var(--trans);
}
.md1__spec:hover { border-color: rgba(21,80,101,.2); background: var(--white); }
.md1__spec-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--white); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--brand);
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}
.md1__spec-label { font-size: 10.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.md1__spec-val   { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--dark); }

/* CTA */
.md1__cta {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 24px; 
}
.md1__cta .btn { flex: 1; justify-content: center; min-width: 130px; }

/* ── Grup 2: Teknik Özellikler Tablosu ── */
.md2 { padding: 72px 0; background: var(--light); }

.md2__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.md2__table-box {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid #e2e8ec;
}
.md2__table-box-head {
  background: var(--brand); color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.md2__table-box-head i { color: var(--accent); }

.md2__table { width: 100%; border-collapse: collapse; }
.md2__table tr { border-bottom: 1px solid #f0f3f5; }
.md2__table tr:last-child { border-bottom: none; }
.md2__table tr:hover { background: rgba(21,80,101,.03); }
.md2__table td { padding: 12px 18px; font-size: 13.5px; }
.md2__table td:first-child { color: var(--muted); font-weight: 600; width: 50%; }
.md2__table td:last-child { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--dark); text-align: right; }
.md2__table td strong { color: var(--brand); }

/* Model navigasyonu (önceki / sonraki) */
.md2__nav {
  display: flex; gap: 12px; margin-top: 32px;
}
.md2__nav-btn {
  flex: 1; display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid #e2e8ec;
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  text-decoration: none;
}
.md2__nav-btn:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.md2__nav-btn--next { flex-direction: row-reverse; text-align: right; }
.md2__nav-btn__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(21,80,101,.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--brand);
}
.md2__nav-btn:hover .md2__nav-btn__icon { background: var(--brand); color: var(--accent); }
.md2__nav-btn__label { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.md2__nav-btn__name { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--dark); }




.md3 { padding: 0px 0 0px; padding-left: 0;
    padding-right: 0; margin-bottom:20px!important; }


.md3 .container{ padding-left: 0;
    padding-right: 0; }


/* ── Grup 3 ve 4: Aynı pg3/pg4 CSS'ini kullanır ── */

/* ══════════════════════════════════════════════════════════
   ██ ÜRÜN MODEL DETAY – RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .md1__grid { gap: 40px; }
  .md2__wrap { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .md1__grid { grid-template-columns: 1fr; }
  .md1__img { position: static; aspect-ratio: 16/9; }
  .md2__nav { flex-direction: column; }
}
@media (max-width: 560px) {
  .md1 { padding: 36px 0 48px; }
  .md1__specs { grid-template-columns: 1fr; }
  .md1__cta { flex-direction: column; }
  .md1__cta .btn { min-width: unset; }
  .md2 { padding: 48px 0; }
}


/* ══════════════════════════════════════════════════════════
   ██ ÜRÜN DETAY – ANA LAYOUT (İçerik + Aside)
   ══════════════════════════════════════════════════════════ */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.pd-main { min-width: 0; }

/* ── ASIDE ── */
.pd-aside {
  position: sticky; top: 88px;
  padding: 40px 0 40px 32px;
  display: flex; flex-direction: column; gap: 20px;
}

/* Aside bölüm kutusu */
.aside-box {
  background: var(--white); border: 1px solid #e2e8ec;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.aside-box__head {
  display: flex; align-items: center; gap: 8px;
  background: var(--brand); color: var(--white);
  padding: 13px 18px;
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
}
.aside-box__head i { color: var(--accent); font-size: 12px; }

/* Model listesi */
.aside-models { display: flex; flex-direction: column; }
.aside-model {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 11px 16px;
  border-bottom: 1px solid #f0f3f5;
  transition: background .18s; text-decoration: none;
}
.aside-model:last-child { border-bottom: none; }
.aside-model:hover { background: var(--light); }
.aside-model.active {
  background: rgba(21,80,101,.07);
  border-left: 3px solid var(--brand);
  padding-left: 13px;
}
.aside-model__name {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--dark); line-height: 1.2;
}
.aside-model.active .aside-model__name { color: var(--brand); }
.aside-model__cap {
  font-size: 11px; color: var(--muted); margin-top: 1px;
}
.aside-model__icon {
  font-size: 11px; color: var(--muted); flex-shrink: 0;
  transition: color .18s, transform .18s;
}
.aside-model:hover .aside-model__icon { color: var(--brand); transform: translateX(3px); }
.aside-model.active .aside-model__icon { color: var(--brand); }

/* Ürün listesi */
.aside-products { display: flex; flex-direction: column; }
.aside-product {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-bottom: 1px solid #f0f3f5;
  text-decoration: none; transition: background .18s;
}
.aside-product:last-child { border-bottom: none; }
.aside-product:hover { background: var(--light); }
.aside-product__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(21,80,101,.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--brand); transition: var(--trans);
}
.aside-product:hover .aside-product__icon { background: var(--brand); color: var(--accent); }
.aside-product__name {
  font-size: 13px; font-weight: 600; color: var(--text);
  line-height: 1.3; flex: 1;
}
.aside-product:hover .aside-product__name { color: var(--brand); }

/* CTA kutusu */
.aside-cta {
  background: var(--navy); border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
  box-shadow: var(--shadow);
}
.aside-cta__icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(254,202,22,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--accent);
}
.aside-cta h4 {
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.aside-cta p {
  font-size: 12.5px; color: rgba(255,255,255,.6);
  margin-bottom: 18px; line-height: 1.6;
}
.aside-cta .btn {
  width: 100%; justify-content: center;
  margin-bottom: 8px; font-size: 13px;
}
.aside-cta__divider {
  height: 1px; background: rgba(255,255,255,.1);
  margin: 14px 0;
}
.aside-cta__contact { display: flex; flex-direction: column; gap: 6px; }
.aside-cta__contact a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.aside-cta__contact a:hover { color: var(--accent); }
.aside-cta__contact i { font-size: 11px; color: var(--accent); }

/* md1/md2/pg3/pg4 aside layout içinde container olmadan çalışır */
.pd-main .md1,
.pd-main .md2,
.pd-main .pg3,
.pd-main .pg4 { padding-left: 0; padding-right: 0; }

.pd-main .md1 .container,
.pd-main .md2 .container,
.pd-main .pg3 .container,
.pd-main .pg4 .container { max-width: 100%; padding: 0 24px; }

/* pg3 aside layout'ta tek kolon olsun (CTA aside'da) */
.pd-main .pg3__grid { grid-template-columns: 1fr; }
.pd-main .pg3__cta-box { display: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pd-layout { grid-template-columns: 1fr 260px; gap: 0; }
  .pd-aside { padding-left: 24px; }
}
@media (max-width: 800px) {
  .pd-layout { grid-template-columns: 1fr; padding: 0; }
  .pd-aside {
    position: static; padding: 0 24px 48px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .aside-cta { grid-column: span 2; }
}
@media (max-width: 560px) {
  .pd-aside { grid-template-columns: 1fr; }
  .aside-cta { grid-column: span 1; }
}






























/* ══════════════════════════════════════════════════════════
   REFERANSLAR SAYFASI – Ek Stiller
   (main.css üzerine eklenir, değişkenler oradan gelir)
   ══════════════════════════════════════════════════════════ */

/* ── İstatistik şeridi ── */
.ref-stats {
  background: var(--white);
  border-bottom: 1px solid #e2e8ec;
  padding: 0;
}
.ref-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ref-stat {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 36px 20px;
  border-right: 1px solid #e2e8ec;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.ref-stat:last-child { border-right: none; }
.ref-stat::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.ref-stat:hover::before { transform: scaleX(1); }
.ref-stat:hover { background: var(--light); }

.ref-stat__icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(21,80,101,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--brand); margin-bottom: 12px;
  transition: var(--trans);
}
.ref-stat:hover .ref-stat__icon { background: var(--brand); color: var(--accent); }
.ref-stat__num {
  font-family: var(--font-head); font-size: 42px; font-weight: 800;
  color: var(--dark); line-height: 1;
}
.ref-stat__num span { color: var(--brand); }
.ref-stat__label { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ── Dünya Haritası ── */
.ref-map-section { padding: 72px 0; background: #f0f4f7; }

.ref-map-section .pg-head .section-label { color: var(--brand); }
.ref-map-section .pg-head .section-title { color: var(--dark); }
.ref-map-section .pg-head .section-desc  { color: var(--muted); }

.ref-map-wrap {
  position: relative;
  background: var(--white);
  border: 1px solid #dde3e8;
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ref-map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Tüm ülkeler */
.ref-map-wrap svg path {
  fill: #dae4ea;
  stroke: #b8ccd5;
  stroke-width: 0.5;
  transition: fill .2s, opacity .2s;
  cursor: default;
}

/* Referans ülkeler */
.ref-map-wrap svg path.ref-country {
  fill: var(--brand);
  stroke: var(--brand-dark);
  stroke-width: 0.8;
  cursor: pointer;
}
.ref-map-wrap svg path.ref-country:hover {
  fill: var(--accent) !important;
  stroke: var(--accent-dark);
  opacity: 1;
}

/* Tooltip */
.map-tooltip {
  position: fixed;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  color: var(--dark); letter-spacing: .5px;
  box-shadow: var(--shadow);
  pointer-events: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity .18s, transform .18s;
  z-index: 9999;
  white-space: nowrap;
}
.map-tooltip.visible { opacity: 1; transform: translateY(0); }
.map-tooltip i { color: var(--brand); margin-right: 6px; }

/* Legend */
.ref-map-legend {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-top: 20px; flex-wrap: wrap;
}
.ref-map-legend__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.ref-map-legend__dot {
  width: 14px; height: 14px; border-radius: 3px;
}
.ref-map-legend__dot--ref { background: var(--brand); }
.ref-map-legend__dot--other { background: #dae4ea; border: 1px solid #b8ccd5; }

/* Alıntı */
.ref-quote {
  max-width: 720px; margin: 40px auto 0;
  text-align: center;
  color: var(--text);
  font-size: 17px; line-height: 1.75; font-style: italic;
  padding: 24px 32px;
  border-left: 4px solid var(--brand);
  background: rgba(21,80,101,.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.ref-quote strong { color: var(--brand); font-style: normal; }

/* ── Ülke Bayrakları ── */
.ref-countries-section { padding: 72px 0; }

.ref-countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ref-country-card {
  display: flex; flex-direction: column; align-items: center;
  background: var(--white); border: 1px solid #e2e8ec;
  border-radius: var(--radius); padding: 22px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans); text-align: center;
  cursor: default;
}
.ref-country-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: rgba(21,80,101,.2);
}

.ref-country-card__flag {
  width: 64px; height: 42px; border-radius: 4px;
  overflow: hidden; margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.ref-country-card__flag img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ref-country-card__name {
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  color: var(--dark); letter-spacing: .5px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ref-countries-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .ref-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ref-stat { border-bottom: 1px solid #e2e8ec; }
  .ref-countries-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .ref-map-section { padding: 48px 0; }
  .ref-countries-section { padding: 48px 0; }
  .ref-quote { font-size: 15px; padding: 18px 20px; }
}
@media (max-width: 480px) {
  .ref-countries-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ref-stat__num { font-size: 32px; }
}







/* ══════════════════════════════════════════════════════════
   ██ BLOG DETAY SAYFASI
   ══════════════════════════════════════════════════════════ */

/* ── Blog hero (başlık alanı) ── */
.blog-hero {
  background: var(--light);
  border-bottom: 1px solid #e2e8ec;
  padding: 52px 0 44px;
}
.blog-hero__category {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); background: var(--brand);
  padding: 4px 14px; border-radius: 30px; margin-bottom: 18px;
}
.blog-hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800; color: var(--dark);
  line-height: 1.1; letter-spacing: -.5px;
  margin-bottom: 20px; max-width: 820px;
}
.blog-hero__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 20px;
  font-size: 13.5px; color: var(--muted);
}
.blog-hero__meta-item {
  display: flex; align-items: center; gap: 6px;
}
.blog-hero__meta-item i { color: var(--brand); font-size: 12px; }
.blog-hero__meta-item a { color: var(--muted); transition: color .2s; }
.blog-hero__meta-item a:hover { color: var(--brand); }
.blog-hero__meta-sep { width: 4px; height: 4px; border-radius: 50%; background: #bcc8d0; }

/* ── Ana layout ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 56px 0 80px;
  align-items: start;
}

/* ══ MAKALE İÇERİĞİ ══════════════════════════════════ */
.blog-article {}

/* Kapak görseli */
.blog-cover {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.blog-cover img { width: 100%; height: auto; display: block; }

/* İçerik tipografisi */
.blog-content { font-size: 16px; color: var(--text); line-height: 1.85; }

.blog-content h2 {
  font-family: var(--font-head); font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; color: var(--dark); letter-spacing: -.3px;
  margin: 44px 0 16px; line-height: 1.2;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8ec;
}
.blog-content h2::before {
  content: '';
  display: inline-block; width: 4px; height: 1em;
  background: var(--brand); margin-right: 12px;
  vertical-align: middle; border-radius: 2px;
}
.blog-content h3 {
  font-family: var(--font-head); font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800; color: var(--dark);
  margin: 32px 0 12px; line-height: 1.25;
}
.blog-content p { margin-bottom: 20px; }
.blog-content p:last-child { margin-bottom: 0; }

.blog-content strong { color: var(--dark); font-weight: 700; }
.blog-content em { color: var(--muted); }
.blog-content a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.blog-content a:hover { color: var(--brand-dark); }

/* Liste */
.blog-content ul,
.blog-content ol {
  margin: 0 0 22px 0;
  padding-left: 0;
  list-style: none;
}
.blog-content ul li,
.blog-content ol li {
  position: relative; padding-left: 26px;
  margin-bottom: 10px; font-size: 15.5px; color: var(--text);
  line-height: 1.7;
}
.blog-content ul li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--brand);
}
.blog-content ol { counter-reset: ol-counter; }
.blog-content ol li { counter-increment: ol-counter; }
.blog-content ol li::before {
  content: counter(ol-counter);
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--brand); color: var(--white);
  border-radius: 50%; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
}

/* Vurgulu alıntı */
.blog-content blockquote {
  margin: 32px 0;
  padding: 22px 28px;
  background: rgba(21,80,101,.05);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 17px; font-style: italic; color: var(--text);
  line-height: 1.75;
}
.blog-content blockquote cite {
  display: block; margin-top: 10px;
  font-size: 13px; color: var(--muted); font-style: normal; font-weight: 600;
}

/* Info / uyarı kutusu */
.blog-content .info-box {
  display: flex; gap: 16px;
  background: rgba(21,80,101,.06); border: 1px solid rgba(21,80,101,.15);
  border-radius: var(--radius); padding: 20px 22px; margin: 28px 0;
}
.blog-content .info-box i {
  font-size: 20px; color: var(--brand); flex-shrink: 0; margin-top: 2px;
}
.blog-content .info-box p { margin: 0; font-size: 14.5px; }

/* İçerik görseli */
.blog-content figure {
  margin: 32px 0;
}
.blog-content figure img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); display: block;
}
.blog-content figcaption {
  text-align: center; font-size: 12.5px;
  color: var(--muted); margin-top: 10px; font-style: italic;
}

/* Teknik tablo */
.blog-content table {
  width: 100%; border-collapse: collapse;
  margin: 28px 0; font-size: 14px;
  box-shadow: var(--shadow-sm); border-radius: var(--radius);
  overflow: hidden;
}
.blog-content thead tr { background: var(--brand); }
.blog-content thead th {
  color: var(--white); padding: 13px 16px;
  font-family: var(--font-head); font-size: 13px;
  font-weight: 800; text-align: left; letter-spacing: .5px;
}
.blog-content tbody tr { border-bottom: 1px solid #f0f3f5; transition: background .15s; }
.blog-content tbody tr:last-child { border-bottom: none; }
.blog-content tbody tr:hover { background: var(--light); }
.blog-content tbody td { padding: 11px 16px; color: var(--text); }
.blog-content tbody td:first-child { font-weight: 600; color: var(--dark); }

/* Etiketler */
.blog-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 32px; margin-top: 40px;
  border-top: 1px solid #e2e8ec;
}
.blog-tags__label {
  font-size: 13px; font-weight: 700; color: var(--muted);
  display: flex; align-items: center; gap: 6px; margin-right: 4px;
}
.blog-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--brand); background: rgba(21,80,101,.08);
  border: 1px solid rgba(21,80,101,.15);
  padding: 5px 12px; border-radius: 30px;
  transition: var(--trans);
}
.blog-tag:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* Paylaş */
.blog-share {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 20px 24px; margin-top: 24px;
  background: var(--light); border-radius: var(--radius);
  border: 1px solid #e2e8ec;
}
.blog-share__label {
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  color: var(--dark); letter-spacing: .5px; margin-right: 4px;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; padding: 8px 16px;
  border-radius: var(--radius-sm); transition: var(--trans);
  text-decoration: none !important;
}
.share-btn--tw  { background: #1da1f2; color: #fff; }
.share-btn--li  { background: #0a66c2; color: #fff; }
.share-btn--wa  { background: #25d366; color: #fff; }
.share-btn--cp  { background: var(--light); color: var(--dark); border: 1px solid #dde3e8; }
.share-btn:hover { opacity: .85; transform: translateY(-1px); }

/* Yazar kartı */
.blog-author {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px; margin-top: 40px;
  background: var(--white); border: 1px solid #e2e8ec;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.blog-author__avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; border: 3px solid var(--light);
  box-shadow: var(--shadow-sm); background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--brand);
}
.blog-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.blog-author__name {
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--dark); margin-bottom: 2px;
}
.blog-author__role {
  font-size: 12px; color: var(--brand); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.blog-author__bio { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Önceki / sonraki yazı */
.blog-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 40px;
}
.blog-nav__btn {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius);
  background: var(--white); border: 1px solid #e2e8ec;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  text-decoration: none;
}
.blog-nav__btn:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-nav__btn--next { flex-direction: row-reverse; text-align: right; }
.blog-nav__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--brand); transition: var(--trans);
}
.blog-nav__btn:hover .blog-nav__icon { background: var(--brand); color: var(--white); }
.blog-nav__dir { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.blog-nav__title { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.3; margin-top: 2px; }

/* ══ SIDEBAR ══════════════════════════════════════════ */
.blog-sidebar {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 24px;
}

/* Sidebar kutusu */
.sb-box {
  background: var(--white); border: 1px solid #e2e8ec;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sb-box__head {
  display: flex; align-items: center; gap: 8px;
  background: var(--brand); color: var(--white);
  padding: 13px 18px;
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
}
.sb-box__head i { color: var(--accent); font-size: 12px; }

/* İçindekiler */
.sb-toc { padding: 10px 0; }
.sb-toc__item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 18px; font-size: 13.5px; color: var(--text);
  transition: background .18s; cursor: pointer; line-height: 1.4;
  border-left: 3px solid transparent;
}
.sb-toc__item:hover { background: var(--light); border-left-color: var(--brand); color: var(--brand); }
.sb-toc__item.active { background: rgba(21,80,101,.06); border-left-color: var(--brand); color: var(--brand); font-weight: 600; }
.sb-toc__num {
  flex-shrink: 0; width: 20px; height: 20px;
  background: rgba(21,80,101,.1); border-radius: 50%;
  font-size: 10px; font-weight: 800; color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); margin-top: 1px;
}
.sb-toc__item.active .sb-toc__num { background: var(--brand); color: var(--white); }

/* İlgili yazılar */
.sb-posts { padding: 6px 0; }
.sb-post {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 16px; border-bottom: 1px solid #f0f3f5;
  transition: background .18s; text-decoration: none;
}
.sb-post:last-child { border-bottom: none; }
.sb-post:hover { background: var(--light); }
.sb-post__img {
  width: 60px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--light);
}
.sb-post__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sb-post__title {
  font-size: 13px; font-weight: 600; color: var(--dark);
  line-height: 1.45; transition: color .2s;
}
.sb-post:hover .sb-post__title { color: var(--brand); }
.sb-post__date { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Kategoriler */
.sb-cats { padding: 10px 0; }
.sb-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; border-bottom: 1px solid #f0f3f5;
  font-size: 13.5px; color: var(--text); transition: background .18s;
  text-decoration: none;
}
.sb-cat:last-child { border-bottom: none; }
.sb-cat:hover { background: var(--light); color: var(--brand); }
.sb-cat i { font-size: 10px; color: var(--muted); }
.sb-cat__count {
  font-size: 11px; font-weight: 800; color: var(--white);
  background: var(--brand); padding: 2px 7px; border-radius: 30px;
}

/* Sidebar CTA */
.sb-cta {
  background: var(--navy);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
}
.sb-cta__icon {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(254,202,22,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent);
}
.sb-cta h4 {
  font-family: var(--font-head); font-size: 19px; font-weight: 800;
  color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.sb-cta p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; line-height: 1.6; }
.sb-cta .btn { width: 100%; justify-content: center; margin-bottom: 8px; font-size: 13px; }

/* ══ İLGİLİ YAZILAR (alt bölüm) ══════════════════════ */
.blog-related { padding: 72px 0; background: var(--light); }
.blog-related__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.blog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #e2e8ec; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  display: flex; flex-direction: column;
  text-decoration: none;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.blog-card__img {
  aspect-ratio: 16/9; overflow: hidden; background: var(--light);
}
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s; display: block;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }

.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  font-family: var(--font-head); font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--brand); margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px;
}
.blog-card__cat::before {
  content: ''; width: 20px; height: 2px; background: var(--accent);
}
.blog-card__title {
  font-family: var(--font-head); font-size: 18px; font-weight: 800;
  color: var(--dark); line-height: 1.3; margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover .blog-card__title { color: var(--brand); }
.blog-card__excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f0f3f5;
  font-size: 12px; color: var(--muted);
}
.blog-card__footer i { color: var(--brand); font-size: 11px; margin-right: 4px; }
.blog-card__read {
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  letter-spacing: .5px; color: var(--brand);
  display: flex; align-items: center; gap: 5px; text-transform: uppercase;
  transition: gap .2s;
}
.blog-card:hover .blog-card__read { gap: 8px; }

/* ══ BLOG DETAY RESPONSIVE ════════════════════════════ */
@media (max-width: 1100px) {
  .blog-layout { grid-template-columns: 1fr 280px; gap: 32px; }
}
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; padding-bottom: 56px; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sb-cta { grid-column: span 2; }
  .blog-related__grid { grid-template-columns: 1fr 1fr; }
  .blog-nav { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .blog-layout { padding: 32px 0 48px; }
  .blog-hero { padding: 36px 0 28px; }
  .blog-hero .container,
  .blog-article { padding-left: 20px; padding-right: 20px; }
  .blog-cover { margin-bottom: 28px; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .sb-cta { grid-column: span 1; }
  .blog-related { padding: 48px 0; }
  .blog-related__grid { grid-template-columns: 1fr; }
  .blog-share { flex-direction: column; align-items: flex-start; }
  .blog-nav { gap: 10px; }
  .blog-author { flex-direction: column; }
  .blog-author__avatar { width: 56px; height: 56px; }
}

















/* ═══════════════════════════════════════════
   KAT-CARDS — Alt kategori / ürün kartları
═══════════════════════════════════════════ */
.kat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

@media (max-width: 600px) {
  .kat-cards { grid-template-columns: 1fr; }
}

.kat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.kat-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  transform: translateY(-3px);
}

.kat-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
}

.kat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.kat-card:hover .kat-card__img img {
  transform: scale(1.04);
}

.kat-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .6rem;
}

.kat-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}

.kat-card__desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.kat-card__body .btn {
  align-self: flex-start;
  margin-top: .5rem;
}


/* ═══════════════════════════════════════════
   KAT-GALERİ — col-4 fotoğraf galerisi
═══════════════════════════════════════════ */
.kat-galeri {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

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

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

@media (max-width: 480px) {
  .kat-galeri { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}

.kat-galeri__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-soft);
}

.kat-galeri__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.kat-galeri__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.kat-galeri__item:hover img {
  transform: scale(1.06);
}


/* ═══════════════════════════════════════════
   KATEGORİ HAKKINDA içerik alanı
═══════════════════════════════════════════ */
.pd-about-content {
  max-width: var(--container);
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.pd-about-content p { margin-bottom: 1rem; }
.pd-about-content h2,
.pd-about-content h3 { color: var(--dark); margin: 1.5rem 0 .5rem; }
.pd-about-content ul,
.pd-about-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.pd-about-content li { margin-bottom: .4rem; }










/* ── Teknik Tablo ── */
.teknik-tablo-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.teknik-tablo {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 700px;
}

.teknik-tablo thead tr {
  background: var(--brand, #155065);
  color: #fff;
}

.teknik-tablo thead th {
  padding: 13px 16px;
  text-align: center;
  font-weight: 700;
  letter-spacing: .4px;
  border: none;
}

.teknik-tablo thead th:first-child {
  text-align: left;
}

.teknik-tablo tbody tr:nth-child(odd)  { background: #f4f6f8; }
.teknik-tablo tbody tr:nth-child(even) { background: #fff; }

.teknik-tablo tbody tr:hover {
  background: rgba(21, 80, 101, .07);
}

.teknik-tablo tbody td {
  padding: 11px 16px;
  text-align: center;
  border-bottom: 1px solid #e4eaed;
  color: #3a4a54;
}

.teknik-tablo tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #111820;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .teknik-tablo { font-size: 13px; }
  .teknik-tablo thead th,
  .teknik-tablo tbody td { padding: 9px 10px; }
}







.pd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}
.pd-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border: 1px solid #dde4e8;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.pd-badge i {
  color: var(--brand);
  font-size: 14px;
}





















/* ── Teknik Resimler ── */
.teknik-resimler {
  padding: 48px 0;
}

.teknik-resimler__liste {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.teknik-resimler__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e4eaed;
}

.teknik-resimler__item img {
  width: 100%;
  height: auto;
  display: block;
}








/**** ürün detay tab ***********/


/* ── Ürün Tabs ── */
.urun-tabs {
  padding: 48px 0;
}

.urun-tabs__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.urun-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--light);
  border: 2px solid #e4eaed;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  cursor: pointer;
  transition: var(--trans);
}

.urun-tabs__btn i {
  font-size: 14px;
  transition: var(--trans);
}

.urun-tabs__btn:hover {
  color: var(--brand);
  background: rgba(21, 80, 101, .07);
  border-color: var(--brand);
}

.urun-tabs__btn.active {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
  border-bottom-color: var(--white); 
  box-shadow: 0 4px 16px rgba(21, 80, 101, .3);
  position: relative;
  z-index: 1;
}

.urun-tabs__btn.active i {
  color: var(--accent);
}

.urun-tabs__panel {
  display: none;
  border: 2px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.urun-tabs__panel.active {
  display: block;
  animation: tabFadeIn .25s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.urun-tabs__panel .pg4__grid {
  margin-top: 0;
}

@media (max-width: 640px) {
  .urun-tabs__btn {
    font-size: 12px;
    padding: 9px 12px;
    gap: 6px;
    flex: 1 1 auto;
    justify-content: center;
  }

  .urun-tabs__btn.active {
    border-bottom-color: var(--brand);
  }

  .urun-tabs__panel {
    border-radius: var(--radius);
    padding: 20px 16px;
  }
}



















/**** video ********/


/* ══════════════════════════════════════════════════════════
   VİDEO — Yerel MP4/WebM oynatıcı
   ══════════════════════════════════════════════════════════ */

/* video elementi iframe gibi tam kaplar */
.video-wrap--local { padding-bottom: 0; height: auto; aspect-ratio: 16 / 9; }

.local-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Oynat butonu — ortalanmış overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(11, 28, 38, .45);
  border-radius: inherit;
  cursor: pointer;
  border: none;
  transition: background var(--trans);
}
.video-play-btn:hover { background: rgba(11, 28, 38, .6); }

.video-play-btn__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(254, 202, 22, .25);
  transition: transform var(--trans), box-shadow var(--trans);
}
.video-play-btn:hover .video-play-btn__circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 18px rgba(254, 202, 22, .2);
}
.video-play-btn__circle i {
  font-size: 26px;
  color: var(--dark);
  margin-left: 4px; /* play ikonunu optik ortala */
}

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

/* Poster resmi yüklenene kadar arka plan */
.video-wrap--local { background: var(--navy); }



/* aspect-ratio desteklemeyen eski tarayıcılar için fallback */
@supports not (aspect-ratio: 16/9) {
  .video-wrap--local { padding-bottom: 56.25%; height: 0; }
  .local-video { position: absolute; inset: 0; height: 100%; }
}

/* 768px — tablet */
@media (max-width: 768px) {
  .video-play-btn__circle {
    width: 60px;
    height: 60px;
  }
  .video-play-btn__circle i { font-size: 22px; }
  .video-play-btn__text { font-size: 12px; }
}

/* 480px — mobil */
@media (max-width: 480px) {
  .video-play-btn__circle {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 8px rgba(254,202,22,.25);
  }
  .video-play-btn__circle i { font-size: 18px; }
  .video-play-btn__text { display: none; } /* çok küçük ekranda yazıyı gizle */
}












/**** blog aktif *****/

/* Blog Nav — disabled (ilk veya son yazı) */
.blog-nav__btn--disabled {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}


/* Blog Listesi — Aktif Post */
.sb-post--active {
  background: rgba(21, 80, 101, .07);
  border-left: 3px solid var(--brand);
  pointer-events: none;
}
.sb-post--active .sb-post__title {
  color: var(--brand);
  font-weight: 700;
}
.sb-post--active .sb-post__img {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}



































/* ══════════════════════════════════════════════════════════
   VİDEO GALERİ — Thumb img + Play butonu + Modal
   main.css'teki mevcut .video-card bloğunun altına ekle
   ══════════════════════════════════════════════════════════ */

/* ── Thumb içindeki resim: padding-top trick ile 16:9 doluyor ── */
.video-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.video-card:hover .video-card__thumb img {
  transform: scale(1.04);
}

/* ── Play butonu: thumb üzerine ortalanmış overlay ── */
.video-card__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 28, 38, 0.35);
  border: none;
  cursor: pointer;
  transition: background var(--trans);
  z-index: 2;
}
.video-card:hover .video-card__play {
  background: rgba(11, 28, 38, 0.55);
}

.video-card__play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(254, 202, 22, 0.25);
  transition: transform var(--trans), box-shadow var(--trans);
}
.video-card:hover .video-card__play-circle {
  transform: scale(1.12);
  box-shadow: 0 0 0 16px rgba(254, 202, 22, 0.2);
}
.video-card__play-circle i {
  font-size: 22px;
  color: var(--dark);
  margin-left: 4px; /* play ikonu optik ortalama */
}

/* ── Video Modal ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal[hidden] { display: none; }

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 20, 0.88);
  backdrop-filter: blur(4px);
}

.video-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.video-modal__kapat {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans);
}
.video-modal__kapat:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.video-modal__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 560px) {
  .video-card__play-circle {
    width: 50px;
    height: 50px;
    box-shadow: 0 0 0 8px rgba(254,202,22,0.2);
  }
  .video-card__play-circle i { font-size: 18px; }

  .video-modal__kapat { top: -38px; }
}















/* ── teknik-tablo: mobil kart görünümü ── */
@media (max-width: 560px) {

  .teknik-tablo-wrap { border-radius: 8px; }
  .teknik-tablo,
  .teknik-tablo thead,
  .teknik-tablo tbody,
  .teknik-tablo tr,
  .teknik-tablo th,
  .teknik-tablo td {
    display: block;
    min-width: unset;
    width: 100%;
  }

  /* Başlık satırı: sadece colspan'li başlık görünsün */
  .teknik-tablo thead tr:nth-child(2) { display: none; }

  .teknik-tablo thead tr:first-child th {
    font-size: 13px;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 3px solid var(--accent, #feca16);
  }

  /* Her satır: özellik + değer yan yana */
  .teknik-tablo tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-bottom: 1px solid #e4eaed;
  }

  .teknik-tablo tbody td {
    padding: 0;
    border: none;
    white-space: normal;
  }

  /* Özellik adı */
  .teknik-tablo tbody td:first-child {
    font-size: 12.5px;
    color: var(--muted, #6b7f8a);
    font-weight: 600;
    white-space: normal;
    flex: 1;
  }

  /* Değer */
  .teknik-tablo tbody td:nth-child(2) {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 14px;
    color: var(--dark, #111820);
    text-align: right;
  }

  /* Birim */
  .teknik-tablo tbody td:nth-child(3) {
    font-size: 11px;
    color: var(--brand, #155065);
    font-weight: 700;
    text-transform: uppercase;
    min-width: 36px;
    text-align: right;
  }
}









































/*
 * ads-mobil-beton-santrali.css
 * Google ADS Landing Page — Mobil Beton Santrali
 * Bağımlılık: main.css (önce yüklenmeli)
 * Kullanım: /wp-content/themes/asur/css/ klasörüne atın
 */

/* ═══════════════════════════════════════════════════════
   LANDING PAGE — Sadece bu template'e özgü stiller
   main.css'teki mevcut class'ları override eder
   ═══════════════════════════════════════════════════════ */

/* Minimal Header */
.lp-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.lp-header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.lp-header__contact {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.lp-header__phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 17px; color: var(--brand);
  transition: var(--trans);
}
.lp-header__phone:hover { color: var(--brand-dark); }
.lp-header__phone i {
  background: var(--accent); color: var(--dark);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.lp-header__wa {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 15px; color: #25d366;
  border: 2px solid #25d366; border-radius: var(--radius-sm);
  padding: 8px 16px; transition: var(--trans);
}
.lp-header__wa:hover { background: #25d366; color: var(--white); }

/* Hero — 2 kolon: sol içerik / sağ görsel + kart */
.lp-hero {
  position: relative; overflow: hidden;
  background: var(--navy); padding: 64px 0 72px;
}
.lp-hero__pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(21,80,101,.18) 0px, rgba(21,80,101,.18) 1px,
      transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg,
      rgba(254,202,22,.06) 0px, rgba(254,202,22,.06) 1px,
      transparent 1px, transparent 40px);
}
.lp-hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(21,80,101,.6) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(254,202,22,.07) 0%, transparent 50%);
}
.lp-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}
.lp-hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 56px; align-items: center;
}
.lp-hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent);
  background: rgba(254,202,22,.12); border: 1px solid rgba(254,202,22,.3);
  padding: 5px 16px; border-radius: 30px; margin-bottom: 16px;
}
.lp-hero__title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(34px, 5vw, 58px); color: var(--white);
  text-transform: uppercase; line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 18px;
}
.lp-hero__title span { color: var(--accent); }
.lp-hero__desc {
  font-size: 16px; color: rgba(255,255,255,.72);
  line-height: 1.75; margin-bottom: 28px;
}
.lp-hero__badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.lp-hero__badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
}
.lp-hero__badge i { color: var(--accent); font-size: 12px; }
.lp-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sağ panel */
.lp-hero__right { display: flex; flex-direction: column; gap: 14px; }
.lp-hero__img-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; border: 2px solid rgba(254,202,22,.3);
}
.lp-hero__img-wrap img { width: 100%; height: 200px; object-fit: cover; display: block; }
.lp-hero__img-ribbon {
  position: absolute; top: 14px; left: 0;
  background: var(--accent); color: var(--dark);
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
  display: flex; align-items: center; gap: 5px;
}
/* Fabrikadan Teslim kartı */
.lp-delivery {
  background: rgba(254,202,22,.1);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.lp-delivery__head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.lp-delivery__icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.lp-delivery__title {
  font-family: var(--font-head); font-weight: 800;
  font-size: 17px; color: var(--accent);
  text-transform: uppercase; line-height: 1.1;
}
.lp-delivery__sub { font-size: 12px; color: rgba(255,255,255,.55); }
.lp-delivery__list { display: flex; flex-direction: column; gap: 7px; }
.lp-delivery__item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.88);
}
.lp-delivery__item i { color: var(--accent); font-size: 12px; width: 14px; flex-shrink: 0; }
/* İletişim kutusu */
.lp-contact-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; flex-direction: column; gap: 9px;
}
.lp-contact-box__line { display: flex; align-items: center; gap: 10px; }
.lp-contact-box__icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.lp-contact-box__icon--phone { background: var(--brand); color: #fff; }
.lp-contact-box__icon--wa    { background: #25d366; color: #fff; }
.lp-contact-box__num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 16px; color: var(--white); transition: var(--trans);
}
.lp-contact-box__num:hover { color: var(--accent); }
.lp-contact-box__wa {
  font-family: var(--font-head); font-weight: 700;
  font-size: 14px; color: #4ade80; transition: var(--trans);
}
.lp-contact-box__wa:hover { color: #86efac; }


/* Güven şeridi */
.lp-trust-bar {
  background: var(--brand);
  border-bottom: 3px solid var(--accent);
  padding: 0;
}
.lp-trust-bar__inner {
  display: flex; align-items: stretch;
  flex-wrap: wrap;
}
.lp-trust-item {
  display: flex; align-items: center; gap: 9px;
  padding: 14px 24px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .5px; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  border-right: 1px solid rgba(255,255,255,.15);
  white-space: nowrap; flex: 1; justify-content: center;
  transition: var(--trans);
}
.lp-trust-item:last-child { border-right: none; }
.lp-trust-item:hover { background: rgba(255,255,255,.08); color: var(--accent); }
.lp-trust-item i { color: var(--accent); font-size: 15px; }

/* Stats bandı */
.lp-stats {
  background: var(--light);
  border-bottom: 1px solid #dde3ea;
  padding: 40px 0;
}
.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lp-stat {
  text-align: center; padding: 0 24px;
  border-right: 1px solid #dde3ea;
}
.lp-stat:last-child { border-right: none; }
.lp-stat__num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 42px; color: var(--brand); line-height: 1;
  margin-bottom: 6px;
}
.lp-stat__label {
  font-size: 13px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Minimal Footer */
.lp-footer {
  background: var(--navy);
  border-top: 3px solid var(--accent);
  padding: 36px 0;
}
.lp-footer__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.lp-footer__brand { display: flex; align-items: center; gap: 20px; }
.lp-footer__logo { height: 36px; width: auto; }
.lp-footer__copy { font-size: 13px; color: rgba(255,255,255,.5); }
.lp-footer__contact {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.lp-footer__link {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; color: rgba(255,255,255,.8);
  font-weight: 500; transition: var(--trans);
}
.lp-footer__link:hover { color: var(--accent); }
.lp-footer__link i { color: var(--accent); font-size: 13px; }

/* Responsive */
@media (max-width: 1024px) {
  .lp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero__right { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .lp-hero__img-wrap { display: none; }
  .lp-trust-item { flex: none; width: 33.33%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: #dde3ea; }
  .lp-stat { background: var(--light); border-right: none; padding: 20px; }
}
@media (max-width: 640px) {
  .lp-header__wa { display: none; }
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-hero__right { grid-template-columns: 1fr; }
  .lp-trust-item { width: 50%; font-size: 12px; padding: 12px 14px; }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-hero { padding: 44px 0 56px; }
  .lp-footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}






