@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap');

/* ============================================================
   Agency teması
   Referans: Framek (wpopal) — renk ve tipografi değerleri
   referans temanın Elementor kit'inden birebir alınmıştır.
   WebStyle.css'ten SONRA yüklenir ve onu ezer.
   ============================================================ */

:root {
  --ag-primary:        #FFD731;
  --ag-primary-hover:  #E5C12C;
  --ag-accent:         #000000;
  --ag-dark:           #2B2B2B;
  --ag-text:           #555555;
  --ag-text-light:     #999999;
  --ag-border:         #DCDCDC;
  --ag-bg:             #FFFFFF;
  --ag-bg-light:       #F5F5F5;

  /* Yönetimde seçilen font varsa o kullanılır; yoksa temanın varsayılanı */
  --ag-font-display: var(--font-baslik, "Cal Sans"), "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ag-font-body:    var(--font-govde, "Familjen Grotesk"), "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ag-container: 1650px;
  --ag-gutter: 30px;

  /* Referanstaki kırılımlar: 120 → 90 (1200) → 72 (1024) → 48 (767) */
  --ag-display: 120px;
  --ag-lead: 22px;
  --ag-label: 16px;

  --ag-bolum-bosluk: 140px;
}

@media (max-width: 1200px) { :root { --ag-display: 90px; --ag-bolum-bosluk: 110px; } }
@media (max-width: 1024px) { :root { --ag-display: 72px; --ag-bolum-bosluk: 90px; } }
@media (max-width: 767px)  { :root { --ag-display: 48px; --ag-lead: 18px; --ag-label: 14px; --ag-bolum-bosluk: 64px; } }

/* ---------------------------------------------- Temel */
body.ag {
  font-family: var(--ag-font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ag-text);
  background: var(--ag-bg);
  -webkit-font-smoothing: antialiased;
}

.ag h1, .ag h2, .ag h3, .ag h4, .ag h5, .ag h6 {
  font-family: var(--ag-font-display);
  color: var(--ag-accent);
  font-weight: 400;
  line-height: 0.95em;
  letter-spacing: 0;
  margin: 0;
}

.ag a { text-decoration: none; }
.ag img { max-width: 100%; height: auto; display: block; }

.ag-kapsayici {
  max-width: var(--ag-container);
  margin: 0 auto;
  padding-left: var(--ag-gutter);
  padding-right: var(--ag-gutter);
}

.ag-bolum { padding: 80px 0; }
.ag-bolum--acik { background: var(--ag-bg-light); }
.ag-bolum--koyu { background: var(--ag-accent); color: #fff; }
.ag-bolum--koyu h2, .ag-bolum--koyu h3, .ag-bolum--koyu a { color: #fff; }

/* ---------------------------------------------- Etiket + başlık */
.ag-etiket {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ag-font-body);
  font-size: var(--ag-label);
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ag-accent);
  margin-bottom: 28px;
}
.ag-etiket::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ag-primary);
}
.ag-bolum--koyu .ag-etiket { color: #fff; }

.ag-bolum-bas {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.ag-bolum-bas h2 { font-size: clamp(38px, 5vw, 76px); }
.ag-bolum-bas p { max-width: 520px; font-size: var(--ag-lead); line-height: 1.36em; margin: 0; }

/* ---------------------------------------------- Buton */
.ag-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 999px;
  font-family: var(--ag-font-body);
  font-size: var(--ag-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--ag-primary);
  color: var(--ag-accent);
  border: 1px solid var(--ag-primary);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.ag-btn:hover { background: var(--ag-primary-hover); border-color: var(--ag-primary-hover); transform: translateY(-2px); }
.ag-btn--cizgi { background: transparent; border-color: var(--ag-accent); }
.ag-btn--cizgi:hover { background: var(--ag-accent); color: #fff; border-color: var(--ag-accent); }
.ag-bolum--koyu .ag-btn--cizgi { border-color: rgba(255,255,255,.4); color: #fff; }
.ag-bolum--koyu .ag-btn--cizgi:hover { background: var(--ag-primary); border-color: var(--ag-primary); color: var(--ag-accent); }

/* ---------------------------------------------- Hero (tam ekran) */
.ag-hero { padding: 120px 0 var(--ag-bolum-bosluk); }
.ag-hero--medya {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ag-accent);
}
.ag-hero__medya {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
  z-index: 0;
  pointer-events: none;
}
.ag-hero__kaplama { position: absolute; inset: 0; z-index: 1; }

/* Ortadaki dev başlık */
.ag-hero--medya .ag-hero__orta {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 var(--ag-gutter);
}
.ag-hero__ust {
  font-family: var(--ag-font-body);
  font-size: var(--ag-label);
  font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: #fff; margin-bottom: 18px;
}
.ag-hero--medya .ag-hero__baslik {
  color: #fff;
  margin: 0;
  max-width: 14ch;
  text-align: center;
}

/* Alt şerit: ayraç + açıklama + hap buton */
.ag-hero__taban { position: relative; z-index: 2; padding-bottom: 46px; }
.ag-hero__taban-ic {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.28);
  padding-top: 26px;
}
.ag-hero--medya .ag-hero__metin {
  color: #fff; max-width: 46ch; margin: 0;
  font-size: 17px; line-height: 1.5;
}
@media (max-width: 767px) {
  .ag-hero--medya { min-height: 86vh; }
  .ag-hero__taban { padding-bottom: 28px; }
}
.ag .ag-hero__baslik {
  font-family: var(--ag-font-display);
  font-size: var(--ag-display);
  line-height: 0.9em;
  color: var(--ag-accent);
  margin: 0 0 40px;
  max-width: 15ch;
}
.ag-hero__alt {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid var(--ag-border);
  padding-top: 40px;
}
.ag-hero__metin { flex: 1 1 420px; font-size: var(--ag-lead); line-height: 1.36em; margin: 0; }
.ag-hero__gorsel { margin-top: 60px; border-radius: 24px; overflow: hidden; }
.ag-hero__gorsel img { width: 100%; object-fit: cover; aspect-ratio: 16/7; }

/* ---------------------------------------------- Hizmetler (satır listesi) */
.ag-hizmetler { border-top: 1px solid var(--ag-border); }
.ag-hizmet {
  display: grid;
  grid-template-columns: 90px 1fr minmax(0, 460px) 60px;
  gap: 30px;
  align-items: center;
  padding: 42px 0;
  border-bottom: 1px solid var(--ag-border);
  transition: padding-left .3s ease, background .3s ease;
}
.ag-hizmet:hover { background: var(--ag-bg-light); padding-left: 24px; }
.ag-hizmet__no { font-family: var(--ag-font-body); font-weight: 600; color: var(--ag-text-light); font-size: var(--ag-label); }
.ag-hizmet__ad { font-family: var(--ag-font-display); font-size: clamp(28px, 3.2vw, 48px); line-height: 1; color: var(--ag-accent); }
.ag-hizmet__ozet { margin: 0; color: var(--ag-text); }
.ag-hizmet__ok {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--ag-border);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.ag-hizmet:hover .ag-hizmet__ok { background: var(--ag-primary); border-color: var(--ag-primary); transform: rotate(-45deg); }
@media (max-width: 900px) {
  .ag-hizmet { grid-template-columns: 1fr auto; gap: 14px; }
  .ag-hizmet__no, .ag-hizmet__ozet { grid-column: 1 / -1; }
}

/* ---------------------------------------------- Projeler */
.ag-projeler { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (max-width: 900px) { .ag-projeler { grid-template-columns: 1fr; } }
.ag-proje { position: relative; border-radius: 24px; overflow: hidden; background: var(--ag-bg-light); }
.ag-proje__gorsel { aspect-ratio: 4/3; overflow: hidden; }
.ag-proje__gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.ag-proje:hover .ag-proje__gorsel img { transform: scale(1.05); }
.ag-proje__ic {
  position: absolute; inset: auto 0 0 0;
  padding: 34px;
  background: linear-gradient(to top, rgba(0,0,0,.78), transparent);
  color: #fff;
}
.ag-proje__ic h3 { color: #fff; font-size: clamp(22px, 2.2vw, 34px); }
.ag-proje__kat {
  display: inline-block;
  font-family: var(--ag-font-body);
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--ag-primary); color: var(--ag-accent);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}

/* ---------------------------------------------- Kayan şerit (marquee) */
.ag-serit { background: var(--ag-primary); padding: 34px 0; overflow: hidden; }
.ag-serit__ray { display: flex; gap: 60px; width: max-content; animation: ag-kay 26s linear infinite; }
.ag-serit__ray span {
  font-family: var(--ag-font-display);
  font-size: clamp(28px, 3.6vw, 56px);
  color: var(--ag-accent);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 60px;
}
.ag-serit__ray span::after { content: "\2736"; font-size: .5em; }
@keyframes ag-kay { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ag-serit__ray { animation: none; } }

/* ---------------------------------------------- Ekip */
.ag-ekip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 1024px) { .ag-ekip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ag-ekip { grid-template-columns: 1fr; } }
.ag-kisi__gorsel { border-radius: 20px; overflow: hidden; background: var(--ag-bg-light); aspect-ratio: 3/4; }
.ag-kisi__gorsel img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .4s ease, transform .6s ease; }
.ag-kisi:hover .ag-kisi__gorsel img { filter: grayscale(0); transform: scale(1.03); }
.ag .ag-kisi__ad { font-family: var(--ag-font-display); font-size: 26px; margin: 22px 0 4px; color: var(--ag-accent); }
.ag-kisi__unvan { font-size: 15px; color: var(--ag-text-light); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }

/* ---------------------------------------------- Logolar (referans / marka) */
.ag-logolar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ag-border);
  border-left: 1px solid var(--ag-border);
}
@media (max-width: 1024px) { .ag-logolar { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .ag-logolar { grid-template-columns: repeat(2, 1fr); } }
.ag-logo {
  display: grid; place-items: center;
  padding: 46px 30px;
  border-right: 1px solid var(--ag-border);
  border-bottom: 1px solid var(--ag-border);
  min-height: 150px;
}
.ag-logo img { max-height: 54px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: filter .3s ease, opacity .3s ease; }
.ag-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ---------------------------------------------- Blog */
.ag-yazilar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 1024px) { .ag-yazilar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .ag-yazilar { grid-template-columns: 1fr; } }
.ag-yazi__gorsel { border-radius: 20px; overflow: hidden; aspect-ratio: 3/2; background: var(--ag-bg-light); }
.ag-yazi__gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.ag-yazi:hover .ag-yazi__gorsel img { transform: scale(1.05); }
.ag-yazi__ust { display: flex; gap: 14px; align-items: center; margin: 22px 0 12px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--ag-text-light); }
.ag .ag-yazi__baslik { font-family: var(--ag-font-display); font-size: 26px; line-height: 1.15; color: var(--ag-accent); }
.ag-yazi:hover .ag-yazi__baslik { text-decoration: underline; text-underline-offset: 5px; }

/* ---------------------------------------------- Kapanış CTA */
.ag-cta { text-align: center; }
.ag-cta h2 { font-size: clamp(44px, 7vw, 120px); line-height: .92em; margin-bottom: 40px; }
.ag-cta p { font-size: var(--ag-lead); max-width: 620px; margin: 0 auto 44px; }

/* ---------------------------------------------- Genel ızgara (eşlenmemiş bloklar) */
.ag-genel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 1024px) { .ag-genel { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ag-genel { grid-template-columns: 1fr; } }
.ag-genel__oge { border: 1px solid var(--ag-border); border-radius: 18px; padding: 26px; }
.ag-genel__oge h3 { font-size: 21px; margin-bottom: 10px; }

/* ============================================================
   HEADER — referans: Framek (hero üzerinde şeffaf, koyu zemin)
   ============================================================ */
.ag .ust-serit { display: none; }               /* referansta üst şerit yok */

.ag .site-ust.ag-ust {
  position: absolute; top: 0; left: 0; right: 0; z-index: 40;
  background: transparent; box-shadow: none; border: 0;
}
.ag .site-ust.ag-ust .su-ic { padding-top: 22px; padding-bottom: 22px; max-width: var(--ag-container); }
.ag .site-ust.ag-ust .site-logo img { max-height: 48px; }
.ag .site-ust.ag-ust .site-logo .logo-yazi {
  font-family: var(--ag-font-display); font-size: 26px; color: #fff;
}
.ag .site-ust.ag-ust .ana-menu > a,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a {
  color: #fff;
  font-family: var(--ag-font-body);
  font-size: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0em;
}
.ag .site-ust.ag-ust .ana-menu > a:hover,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a:hover { color: var(--ag-primary); }
.ag .site-ust.ag-ust .su-cta {
  background: var(--ag-primary); color: var(--ag-accent);
  border-radius: 999px; padding: 14px 26px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  border: 0;
}
.ag .site-ust.ag-ust .su-cta:hover { background: var(--ag-primary-hover); }
/* Sayfa kaydırılınca koyu zemine otur */
.ag .site-ust.ag-ust.kucuk { position: fixed; background: var(--ag-accent); }

/* ============================================================
   SAYFA BAŞLIĞI (koyu hero) — our-team referansı
   ============================================================ */
.ag-sayfabas {
  position: relative;
  min-height: 420px;
  display: flex; align-items: flex-end;
  background: var(--ag-accent) center/cover no-repeat;
  padding: 150px 0 40px;
  overflow: hidden;
}
.ag-sayfabas__kaplama {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.82) 100%);
}
.ag-sayfabas__ic { position: relative; width: 100%; }
.ag-sayfabas h1 {
  font-family: var(--ag-font-display);
  font-size: clamp(48px, 7vw, 4em);
  line-height: .95em;
  color: #fff;
  margin: 0 0 34px;
}
.ag-sayfabas__alt {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-top: 1px solid rgba(255,255,255,.22);
  padding-top: 22px;
  flex-wrap: wrap;
}
.ag-yol { font-size: 13px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 10px; }
.ag-yol a { color: rgba(255,255,255,.8); }
.ag-yol a:hover { color: var(--ag-primary); }

/* Beyaz hap buton + sarı yuvarlak ok (referanstaki "EXPLORE OUR REELS") */
.ag-hap {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; color: var(--ag-accent);
  border-radius: 999px;
  padding: 8px 8px 8px 26px;
  font-family: var(--ag-font-body);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  transition: background .25s ease, color .25s ease;
}
.ag-hap__ok {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ag-primary); color: var(--ag-accent);
  display: grid; place-items: center; font-style: normal;
  transition: transform .25s ease;
}
.ag-hap:hover .ag-hap__ok { transform: translateX(3px); }
.ag-hap--sari { background: var(--ag-primary); }
.ag-hap--sari .ag-hap__ok { background: #fff; }

/* ============================================================
   EKİP SAYFASI
   ============================================================ */
.ag-ekip-giris { padding: 90px 0 56px; text-align: center; }
.ag-ekip-giris h2 {
  font-family: var(--ag-font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.15em;
  color: var(--ag-accent);
  max-width: 860px; margin: 0 auto;
}
.ag-bolum--ekip { padding-top: 0; padding-bottom: 110px; }

/* Referansta fotoğraflar RENKLİ, köşeler hafif yuvarlak, ad altta solda */
.ag-bolum--ekip .ag-kisi__gorsel { border-radius: 6px; aspect-ratio: 185/255; }
.ag-bolum--ekip .ag-kisi__gorsel img { filter: none; }
.ag-bolum--ekip .ag-kisi:hover .ag-kisi__gorsel img { filter: none; transform: scale(1.03); }
.ag-bolum--ekip .ag-kisi__ad {
  font-family: var(--ag-font-display);
  font-size: 22px; margin: 18px 0 3px; color: var(--ag-accent);
}
.ag-bolum--ekip .ag-kisi__unvan {
  font-size: 12px; color: var(--ag-text-light);
  text-transform: none; letter-spacing: 0; font-weight: 400;
}

/* ============================================================
   "Be part of our mission" bandı
   ============================================================ */
.ag-misyon {
  position: relative;
  background: var(--ag-accent) center/cover no-repeat;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.ag-misyon__kaplama { position: absolute; inset: 0; background: rgba(0,0,0,.62); }
.ag-misyon__ic { position: relative; }
.ag-misyon h2 {
  font-family: var(--ag-font-display);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: .98em; color: #fff; margin: 0 0 18px;
}
.ag-misyon p { color: rgba(255,255,255,.82); max-width: 520px; margin: 0 auto 32px; font-size: 15px; }

/* ============================================================
   FOOTER — referans: Framek
   ============================================================ */
.ag .site-alt { background: var(--ag-dark); color: rgba(255,255,255,.62); padding: 90px 0 0; }
.ag .site-alt .kapsayici { max-width: var(--ag-container); }

.ag-alt-ust {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 70px;
}
@media (max-width: 1024px) { .ag-alt-ust { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px)  { .ag-alt-ust { grid-template-columns: 1fr 1fr; } }

.ag-alt-logo img { max-height: 48px; }
.ag-alt-logo span { font-family: var(--ag-font-display); font-size: 26px; color: #fff; }

.ag-alt-sutun h4 {
  font-family: var(--ag-font-body);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin: 0 0 20px;
}
.ag-alt-sutun ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ag-alt-sutun a, .ag-alt-sutun span { color: rgba(255,255,255,.62); font-size: 14px; }
.ag-alt-sutun a:hover { color: var(--ag-primary); }
/* İlk sütun referansta beyaz + kalın + büyük harf */
.ag-alt-sutun--ana a {
  color: #fff; font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em;
}

.ag-alt-cta { text-align: center; padding: 20px 0 60px; }
.ag-alt-cta h2 {
  font-family: var(--ag-font-display);
  font-size: clamp(34px, 4.4vw, 58px);
  color: #fff; margin: 0 0 22px;
}
.ag-alt-eposta { display: block; color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 6px; }
.ag-alt-telefon { display: block; color: #fff; font-size: 22px; font-weight: 600; }
.ag-alt-sosyal { display: flex; gap: 26px; justify-content: center; margin-top: 34px; }
.ag-alt-sosyal a {
  color: rgba(255,255,255,.45);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  text-decoration: underline; text-underline-offset: 4px;
}
.ag-alt-sosyal a:hover { color: var(--ag-primary); }

.ag .alt-telif.ag-alt-telif {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 26px 0;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}

/* ============================================================
   TAM EKRAN AÇILIR MENÜ — referans: Framek popup menu
   ============================================================ */
.ag .site-ust.ag-ust .mobil-menu-btn { display: none; }

/* Sarı yuvarlak aç/kapat düğmesi */
.ag-panel-btn {
  width: 52px; height: 52px; flex: 0 0 52px;
  border-radius: 50%;
  background: var(--ag-primary);
  border: 0; cursor: pointer;
  display: grid; place-items: center;
  padding: 0; margin-left: 18px;
  transition: background .25s ease, transform .3s ease;
}
.ag-panel-btn:hover { background: var(--ag-primary-hover); }
/* Kapalıyken "=" (iki ince yatay çizgi), açılınca "×". */
.ag-panel-btn__cizgi {
  grid-area: 1 / 1;
  display: block; width: 18px; height: 1.5px;
  background: var(--ag-accent); border-radius: 2px;
  transition: transform .3s ease;
}
.ag-panel-btn__cizgi:first-child { transform: translateY(-3px); }
.ag-panel-btn__cizgi:last-child  { transform: translateY(3px); }
.ag-panel-btn.acik .ag-panel-btn__cizgi:first-child { transform: rotate(45deg); }
.ag-panel-btn.acik .ag-panel-btn__cizgi:last-child  { transform: rotate(-45deg); }

/* Panel açıkken header siyah zeminde sabit kalsın */
.ag .site-ust.ag-ust.ag-ust--panel { position: fixed; background: transparent; z-index: 120; }

/* Panelin kendisi */
.ag-panel {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ag-accent);
  overflow-y: auto;
  padding: 130px 0 60px;
  animation: ag-panel-gir .3s ease;
}
@keyframes ag-panel-gir { from { opacity: 0; } to { opacity: 1; } }
.ag-panel[hidden] { display: none; }

.ag-panel__ic {
  display: grid;
  grid-template-columns: 1fr 455px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1200px) { .ag-panel__ic { grid-template-columns: 1fr 340px 1fr; gap: 40px; } }
@media (max-width: 992px)  { .ag-panel__ic { grid-template-columns: 1fr; } .ag-panel__gorsel { display: none; } }

/* --- Sol: akordeonlu menü --- */
.ag-panel__oge { border: 0; }
.ag-panel__bas {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 20px;
  background: none; border: 0; padding: 6px 0; cursor: pointer;
  font-family: var(--ag-font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.25;
  color: #6f6f6f;                      /* kapalıyken gri */
  text-align: left;
  transition: color .25s ease;
}
.ag-panel__bas:hover { color: #fff; }
.ag-panel__oge.acik > .ag-panel__bas { color: #fff; }

/* +/− işareti */
.ag-panel__isaret { position: relative; width: 18px; height: 18px; flex: 0 0 18px; }
.ag-panel__isaret::before,
.ag-panel__isaret::after {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1.5px; background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.ag-panel__isaret::after { transform: rotate(90deg); }
.ag-panel__oge.acik .ag-panel__isaret::after { transform: rotate(90deg) scaleX(0); opacity: 0; }

/* Alt bağlantılar — açılır, ayraç çizgili */
.ag-panel__alt {
  display: grid;
  max-height: 0; overflow: hidden;
  padding-left: 110px;
  transition: max-height .35s ease, margin .35s ease;
}
.ag-panel__oge.acik .ag-panel__alt { max-height: 500px; margin: 10px 0 26px; }
.ag-panel__alt a {
  color: #fff;
  font-family: var(--ag-font-body);
  font-size: 15px; font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  max-width: 350px;
  transition: color .2s ease, padding-left .2s ease;
}
.ag-panel__alt a:last-child { border-bottom: 0; }
.ag-panel__alt a:hover { color: var(--ag-primary); padding-left: 6px; }

/* --- Orta: görsel --- */
.ag-panel__gorsel { border-radius: 8px; overflow: hidden; }
.ag-panel__gorsel img { width: 100%; aspect-ratio: 455/670; object-fit: cover; }

/* --- Sağ: iletişim + sosyal --- */
.ag-panel__sag { display: flex; flex-direction: column; }
.ag-panel__eposta, .ag-panel__telefon {
  font-family: var(--ag-font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  color: #fff; line-height: 1.2;
}
.ag-panel__eposta { margin-bottom: 46px; }
.ag-panel__eposta:hover, .ag-panel__telefon:hover { color: var(--ag-primary); }
.ag-panel__sosyal { display: flex; flex-direction: column; gap: 30px; margin-top: 120px; }
.ag-panel__sosyal a {
  color: rgba(255,255,255,.55);
  font-family: var(--ag-font-body);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  text-decoration: underline; text-underline-offset: 5px;
  width: fit-content;
}
.ag-panel__sosyal a:hover { color: var(--ag-primary); }
@media (max-width: 992px) {
  .ag-panel__sosyal { flex-direction: row; flex-wrap: wrap; gap: 20px; margin-top: 40px; }
  .ag-panel { padding-top: 110px; }
}

/* ============================================================
   FOOTER — referans ekran görüntüsünden ölçülerek düzeltildi
   Konteyner 1650px · sütun adımı 310px · logo sütunu 411px
   ============================================================ */
.ag .site-alt { position: relative; padding: 90px 0 0; }

/* --- Üst: logo + 4 sütun (ölçülen oran 1.33 : 1 : 1 : 1 : 1) --- */
.ag-alt-ust {
  grid-template-columns: 1.33fr repeat(4, 1fr);
  gap: 0;
  padding-bottom: 40px;
}
@media (max-width: 1024px) { .ag-alt-ust { grid-template-columns: 1fr 1fr 1fr; gap: 40px 30px; } }
@media (max-width: 640px)  { .ag-alt-ust { grid-template-columns: 1fr 1fr; } }

.ag-alt-sutun h4 { font-size: 17px; letter-spacing: 0; margin: 0 0 30px; color: #8a8a8a; }
/* Başlıksız ilk sütun, başlıklı sütunlarla aynı hizada başlasın */
.ag-alt-sutun--ana { padding-top: 0; }
.ag-alt-sutun--ana ul { gap: 26px; }
.ag-alt-sutun--ana a { font-size: 16px; letter-spacing: .05em; color: #fff; font-weight: 600; }
.ag-alt-sutun:not(.ag-alt-sutun--ana) ul { gap: 11px; }
.ag-alt-sutun:not(.ag-alt-sutun--ana) a,
.ag-alt-sutun:not(.ag-alt-sutun--ana) span {
  font-size: 17px; color: #a0a0a0; font-weight: 400; text-transform: none; letter-spacing: 0;
}

/* --- Kapanış CTA: sağ yarıda, sola hizalı --- */
.ag-alt-cta { display: grid; grid-template-columns: 1fr 1fr; padding: 60px 0 0; text-align: left; }
.ag-alt-cta__ic { grid-column: 2; }
@media (max-width: 992px) { .ag-alt-cta { grid-template-columns: 1fr; } .ag-alt-cta__ic { grid-column: 1; } }

.ag-alt-cta h2 {
  font-size: clamp(40px, 5.2vw, 42px);
  line-height: 1;
  color: #fff;
  margin: 0 0 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.16);   /* referanstaki ayraç */
}
.ag-alt-cta__iletisim { margin-bottom: 46px; }
/* E-posta telefonun üstünde ve daha büyük */
.ag-alt-eposta { display: block; color: #cfcfcf; font-size: 22px; margin-bottom: 14px; }
.ag-alt-telefon { display: block; color: #fff; font-size: 26px; font-weight: 700; letter-spacing: -.01em; }

/* Sosyal: sağa hizalı, aralarında nokta ayraç */
.ag-alt-sosyal { display: flex; justify-content: flex-end; align-items: center; gap: 14px; margin: 0; flex-wrap: wrap; }
.ag-alt-sosyal i { color: rgba(255,255,255,.3); font-style: normal; font-size: 11px; }
.ag-alt-sosyal a { font-size: 11px; letter-spacing: .08em; }

/* --- Alt bar --- */
.ag .alt-telif.ag-alt-telif {
  margin-top: 90px;
  padding: 26px 0;
  font-size: 14px;
  color: #a0a0a0;
}
.ag-marka { color: var(--ag-primary); }
.ag .alt-telif.ag-alt-telif .alt-telif-slogan { color: #a0a0a0; }

/* --- Yukarı çık düğmesi --- */
.ag-yukari {
  position: absolute; right: 34px; bottom: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--ag-primary);
  color: var(--ag-primary);
  font-size: 17px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s ease, color .25s ease;
}
.ag-yukari:hover { background: var(--ag-primary); color: var(--ag-accent); }
@media (max-width: 640px) { .ag-yukari { right: 16px; bottom: 16px; } }

/* ============================================================
   EKİP KARTI HOVER — referans: fotoğraf bulanıklaşır, üzerine
   ortalanmış alıntı gelir, isim satırında sarı ok belirir.
   Alıntı metni kadro modülünün kisa_aciklama alanından gelir.
   ============================================================ */
.ag-bolum--ekip .ag-kisi__gorsel { position: relative; }
.ag-bolum--ekip .ag-kisi__gorsel img {
  transition: filter .45s ease, transform .6s cubic-bezier(.2,.7,.3,1);
}
.ag-bolum--ekip .ag-kisi:hover .ag-kisi__gorsel img {
  filter: blur(7px) brightness(.72);
  transform: scale(1.04);
}

.ag-kisi__alinti {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 28px;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.ag-bolum--ekip .ag-kisi:hover .ag-kisi__alinti { opacity: 1; }
.ag-kisi__alinti span {
  font-family: var(--ag-font-display);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.28;
  color: #fff;
  text-align: center;
}

/* İsim satırı + sarı ok */
.ag-kisi__bilgi {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.ag-kisi__ok {
  flex: 0 0 44px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ag-primary); color: var(--ag-accent);
  display: grid; place-items: center;
  font-size: 20px; line-height: 1;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s ease, transform .3s ease;
}
.ag-bolum--ekip .ag-kisi:hover .ag-kisi__ok { opacity: 1; transform: none; }

/* ============================================================
   HEADER MENÜ + DROPDOWN — referans ekran görüntüsünden ölçüldü
   ============================================================ */
.ag .site-ust.ag-ust .ana-menu { display: flex; align-items: center; gap: 0; }
.ag .site-ust.ag-ust .ana-menu > a,
.ag .site-ust.ag-ust .ana-menu > .menu-oge { position: relative; padding: 0 20px; }

/* Öğeler arasında beyaz nokta ayraç.
   ::before kullanılır — ::after alt çizgi animasyonuna ayrılmıştır.
   İkisi aynı pseudo-elemanı paylaşırsa biri diğerini ezer. */
.ag .site-ust.ag-ust .ana-menu > a:not(:last-child)::before,
.ag .site-ust.ag-ust .ana-menu > .menu-oge:not(:last-child)::before {
  content: ""; position: absolute; right: -3px; top: 50%;
  width: 6px; height: 6px; margin-top: -3px;
  border-radius: 50%; background: rgba(255,255,255,.9);
  transition: none;          /* sabit — hover'da değişmez */
  transform: none;
  opacity: 1;
}

/* Aktif / üzerine gelinen öğede alt çizgi (referanstaki gibi) */
.ag .site-ust.ag-ust .ana-menu > a:hover,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a:hover,
.ag .site-ust.ag-ust .ana-menu > a.aktif {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
}

/* Referansta nav öğelerinde ok/ok işareti yok */
.ag .site-ust.ag-ust .ana-menu .menu-ok { display: none; }

/* --- Dropdown paneli --- */
.ag .site-ust.ag-ust .alt-menu {
  background: var(--ag-dark);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-width: 249px;
  padding: 26px 39px;
  margin-top: 16px;
}
.ag .site-ust.ag-ust .alt-menu a {
  display: block;
  color: #fff;
  font-family: var(--ag-font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;      /* referansta büyük harf DEĞİL */
  letter-spacing: 0;
  padding: 0;
  border: 0;
  background: none;
  white-space: nowrap;
}
.ag .site-ust.ag-ust .alt-menu a + a,
.ag .site-ust.ag-ust .alt-menu .menu-oge + .menu-oge { margin-top: 12px; }
.ag .site-ust.ag-ust .alt-menu a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
}
/* İkinci seviye alt menü de aynı görünsün */
.ag .site-ust.ag-ust .alt-menu .alt-menu { margin: 14px 0 0 16px; padding: 0; min-width: 0; }

/* Default WebStyle.css menü öğesine hover'da beyaz yuvarlak zemin veriyor —
   referansta böyle bir kutu yok, yalnızca sarı alt çizgi var. */
.ag .site-ust.ag-ust .ana-menu > a,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a,
.ag .site-ust.ag-ust .ana-menu > a:hover,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a:hover,
.ag .site-ust.ag-ust .ana-menu > a.aktif,
.ag .site-ust.ag-ust .ana-menu .menu-oge.acik > a {
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* Alt çizgi site sarısı */
.ag .site-ust.ag-ust .ana-menu > a:hover,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a:hover,
.ag .site-ust.ag-ust .ana-menu > a.aktif,
.ag .site-ust.ag-ust .ana-menu .menu-oge:hover > a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--ag-primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

/* ---- Sarı alt çizgi animasyonu ----
   Hover: soldan sağa uzar. Çıkışta: sağdan sola geri çekilir.
   transform-origin sabit "left" olduğu için çizgi geldiği yönde geri gider.
   text-decoration animasyon edilemediği için ::after kullanılıyor. */
.ag .site-ust.ag-ust .ana-menu > a,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a {
  position: relative;
  text-decoration: none;
}
.ag .site-ust.ag-ust .ana-menu > a::after,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--ag-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.ag .site-ust.ag-ust .ana-menu > a:hover::after,
.ag .site-ust.ag-ust .ana-menu > a.aktif::after,
.ag .site-ust.ag-ust .ana-menu .menu-oge:hover > a::after {
  transform: scaleX(1);
}
/* Önceki text-decoration tabanlı çizgiyi iptal et */
.ag .site-ust.ag-ust .ana-menu > a:hover,
.ag .site-ust.ag-ust .ana-menu .menu-oge > a:hover,
.ag .site-ust.ag-ust .ana-menu > a.aktif,
.ag .site-ust.ag-ust .ana-menu .menu-oge:hover > a {
  text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
  .ag .site-ust.ag-ust .ana-menu > a::after,
  .ag .site-ust.ag-ust .ana-menu .menu-oge > a::after { transition: none; }
}

/* ---- Dropdown linklerinde de aynı sarı çizgi animasyonu ---- */
.ag .site-ust.ag-ust .alt-menu a {
  position: relative;
  /* block + fit-content: öğeler alt alta kalır (inline-block olsaydı yan yana
     akıp satır kırılırdı), çizgi yine yalnızca metin genişliğinde olur. */
  display: block;
  width: fit-content;
  text-decoration: none;
}
.ag .site-ust.ag-ust .alt-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--ag-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.ag .site-ust.ag-ust .alt-menu a:hover::after { transform: scaleX(1); }
.ag .site-ust.ag-ust .alt-menu a:hover { text-decoration: none; }

/* Nokta ayraç yalnızca üst seviyede — dropdown içinde olmasın */
.ag .site-ust.ag-ust .alt-menu a::before { content: none; }
@media (prefers-reduced-motion: reduce) {
  .ag .site-ust.ag-ust .alt-menu a::after { transition: none; }
}

/* ---- Footer linklerinde de aynı sarı çizgi animasyonu ---- */
.ag .site-alt .ag-alt-sutun a,
.ag .site-alt .ag-alt-sosyal a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
/* E-posta ve telefon alt alta kalmalı — inline-block olsalardı yan yana
   akarlardı. block + fit-content ile hem alt alta durur hem çizgi metin
   genişliğinde olur. */
.ag .site-alt .ag-alt-eposta,
.ag .site-alt .ag-alt-telefon {
  position: relative;
  display: block;
  width: fit-content;
  text-decoration: none;
}
.ag .site-alt .ag-alt-eposta { font-size: 22px; color: #cfcfcf; margin-bottom: 14px; }
.ag .site-alt .ag-alt-telefon { font-size: 26px; color: #fff; font-weight: 700; }
.ag .site-alt .ag-alt-sutun a::after,
.ag .site-alt .ag-alt-eposta::after,
.ag .site-alt .ag-alt-telefon::after,
.ag .site-alt .ag-alt-sosyal a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--ag-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.ag .site-alt .ag-alt-sutun a:hover::after,
.ag .site-alt .ag-alt-eposta:hover::after,
.ag .site-alt .ag-alt-telefon:hover::after,
.ag .site-alt .ag-alt-sosyal a:hover::after { transform: scaleX(1); }

/* Sosyal bağlantılardaki sabit alt çizgi kaldırılır — yerini animasyon alır */
.ag .site-alt .ag-alt-sosyal a { text-decoration: none; }
.ag .site-alt .ag-alt-sutun a:hover,
.ag .site-alt .ag-alt-sosyal a:hover { text-decoration: none; }
@media (prefers-reduced-motion: reduce) {
  .ag .site-alt .ag-alt-sutun a::after,
  .ag .site-alt .ag-alt-eposta::after,
  .ag .site-alt .ag-alt-telefon::after,
  .ag .site-alt .ag-alt-sosyal a::after { transition: none; }
}

/* ============================================================
   İLETİŞİM SAYFASI — referans: framek/contact
   ============================================================ */

/* --- Bilgi bölümü: sol ~%37 boş, içerik sağda --- */
.ag-il-bilgi { padding: 100px 0 0; }
/* Referansta sol %37 boştu; harita mesaj bölümüne taşınınca bu bölüm
   tam genişliğe alındı. */
.ag-il-bilgi__ic {
  display: block;
  padding-bottom: 90px;
}

.ag .ag-il-bilgi__baslik {
  font-family: var(--ag-font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.14;
  color: var(--ag-accent);
  margin: 0 0 15px;
}

/* --- Üç bilgi kartı, aralarında dikey ayraç --- */
.ag-il-kartlar { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .ag-il-kartlar { grid-template-columns: 1fr; gap: 34px; } }

.ag-il-kart { padding: 0 34px; border-left: 1px solid var(--ag-border); }
.ag-il-kart:first-child { padding-left: 0; border-left: 0; }
@media (max-width: 768px) { .ag-il-kart { padding: 0; border-left: 0; } }

.ag-il-kart__ikon { display: block; font-size: 22px; color: var(--ag-accent); margin-bottom: 26px; }
.ag .ag-il-kart h3 {
  font-family: var(--ag-font-display);
  font-size: 20px; color: var(--ag-accent); margin: 0 0 12px;
}
.ag-il-kart p { margin: 0 0 22px; color: var(--ag-text); font-size: 15px; line-height: 1.5; }
.ag-il-kart a {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ag-font-body);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ag-accent);
}
.ag-il-kart a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--ag-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.ag-il-kart a:hover::after { transform: scaleX(1); }

/* --- Mesaj bölümü --- */
.ag-il-form { padding: 110px 0 130px; }
/* Sol sütunda artık başlık+görsel değil harita var. */
.ag-il-form__ic { display: grid; grid-template-columns: 1fr 1.28fr; gap: 40px; align-items: stretch; }
@media (max-width: 992px) { .ag-il-form__ic { grid-template-columns: 1fr; gap: 30px; } }

.ag-il-form__sol h2 {
  font-family: var(--ag-font-display);
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.05;
  color: var(--ag-accent);
  margin: 0 0 60px;
  max-width: 7ch;
}
.ag-il-form__gorsel { border-radius: 6px; overflow: hidden; max-width: 400px; }
.ag-il-form__gorsel img { width: 100%; aspect-ratio: 340/200; object-fit: cover; }

/* --- Gri form kutusu --- */
.ag-il-form__kutu { background: var(--ag-bg-light); padding: 46px 52px 52px; }
@media (max-width: 600px) { .ag-il-form__kutu { padding: 32px 22px 38px; } }
.ag-il-form__ust {
  text-align: center; color: var(--ag-text);
  font-size: 15px; margin: 0 0 40px;
}

/* --- Alt çizgili form alanları (kutu yok) --- */
.ag-form__ikili { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) { .ag-form__ikili { grid-template-columns: 1fr; gap: 0; } }

.ag-form__alan { position: relative; margin-bottom: 30px; }
.ag-form__alan input,
.ag-form__alan textarea {
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ag-border);
  border-radius: 0;
  padding: 26px 0 10px;
  font-family: var(--ag-font-body);
  font-size: 15px;
  color: var(--ag-accent);
  outline: none;
  transition: border-color .25s ease;
}
.ag-form__alan textarea { resize: vertical; min-height: 90px; }
.ag-form__alan input:focus,
.ag-form__alan textarea:focus { border-bottom-color: var(--ag-primary); }

/* Etiket alanın üstünde durur, doluyken/odaklanınca küçülür */
.ag-form__alan label {
  position: absolute; left: 0; top: 6px;
  font-size: 14px; color: var(--ag-text-light);
  pointer-events: none;
  transition: top .2s ease, font-size .2s ease, color .2s ease;
}
.ag-form__alan input:focus + label,
.ag-form__alan textarea:focus + label,
.ag-form__alan input:not(:placeholder-shown) + label,
.ag-form__alan textarea:not(:placeholder-shown) + label {
  top: -6px; font-size: 12px; color: var(--ag-accent);
}
.ag-form__alan--duz { margin-bottom: 24px; }

/* --- Gönder: sarı hap + ayrı sarı yuvarlak ok --- */
.ag-gonder {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; padding: 0; cursor: pointer;
  margin-top: 6px;
}
.ag-gonder__metin {
  background: var(--ag-primary); color: var(--ag-accent);
  border-radius: 999px;
  padding: 15px 30px;
  font-family: var(--ag-font-body);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  transition: background .25s ease;
}
.ag-gonder__ok {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ag-primary); color: var(--ag-accent);
  display: grid; place-items: center;
  font-size: 18px; line-height: 1;
  transition: background .25s ease, transform .25s ease;
}
.ag-gonder:hover .ag-gonder__metin,
.ag-gonder:hover .ag-gonder__ok { background: var(--ag-primary-hover); }
.ag-gonder:hover .ag-gonder__ok { transform: translateX(3px); }

/* --- Harita (mesaj bölümünde, formun solunda) --- */
.ag-il-harita {
  border-radius: 6px;
  overflow: hidden;
  background: var(--ag-bg-light);
  min-height: 420px;
}
.ag-il-harita iframe {
  width: 100%; height: 100%; min-height: 420px;
  border: 0; display: block;
  filter: grayscale(1);
  transition: filter .4s ease;
}
.ag-il-harita:hover iframe { filter: grayscale(0); }
@media (max-width: 992px) { .ag-il-harita, .ag-il-harita iframe { min-height: 280px; } }

/* ============================================================
   ŞUBELER — referansın görsel dilinde, kendi verimizle
   ============================================================ */
.ag-subeler { padding: 1px 0 0; }
/* Şubeler ikişerli ızgara */
.ag-sube-liste {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .ag-sube-liste { grid-template-columns: 1fr; } }

/* Her ofis gri kutu içinde */
.ag-sube {
  background: var(--ag-bg-light);
  border-radius: 6px;
  padding: 36px 38px;
}
@media (max-width: 600px) { .ag-sube { padding: 28px 22px; } }
.ag .ag-sube__ad {
  font-family: var(--ag-font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--ag-accent);
  margin: 0 0 15px;
}
/* Bilgi solda, çalışma saatleri sağda (kartlar ikişerli olsa da). */
.ag-sube__ic { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
@media (max-width: 700px) { .ag-sube__ic { grid-template-columns: 1fr; gap: 24px; } }

.ag-sube__satir { display: grid; grid-template-columns: 130px 1fr; gap: 16px; margin-bottom: 14px; }
@media (max-width: 600px) { .ag-sube__satir { grid-template-columns: 1fr; gap: 2px; } }
.ag-sube__satir > span {
  font-family: var(--ag-font-body);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ag-text-light);
  padding-top: 3px;
}
.ag-sube__satir p { margin: 0; color: var(--ag-text); font-size: 15px; line-height: 1.5; }
.ag-sube__satir a { color: var(--ag-accent); }

.ag-sube__harita {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-family: var(--ag-font-body);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ag-accent);
}
.ag-sube__harita::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--ag-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.ag-sube__harita:hover::after { transform: scaleX(1); }

/* Çalışma saatleri */
.ag-sube__saatler { border-left: 1px solid #e2e2e2; padding-left: 32px; min-width: 210px; }
@media (max-width: 700px) { .ag-sube__saatler { border-left: 0; padding-left: 0; border-top: 1px solid #e2e2e2; padding-top: 20px; } }
.ag-sube__saatbas {
  display: block;
  font-family: var(--ag-font-body);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ag-text-light);
  margin-bottom: 16px;
}
.ag-sube__gun {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 8px 0;
  border-bottom: 1px dashed #e2e2e2;
  font-size: 14px; color: var(--ag-text);
}
.ag-sube__gun:last-child { border-bottom: 0; }
.ag-sube__gun b { color: var(--ag-accent); font-weight: 600; }
.ag-sube__gun.kapali { color: var(--ag-text-light); }
.ag-sube__gun.kapali b { color: var(--ag-text-light); font-weight: 400; }

/* Hero medyası video / YouTube olduğunda */
.ag-hero__gorsel--video { position: relative; aspect-ratio: 16/7; background: #000; }
.ag-hero__gorsel--video video,
.ag-hero__gorsel--video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border: 0; display: block;
}

/* Hero metin hizalaması (yönetimdeki slayt ayarı) */
.ag-hero__orta.ag-hiza-sol { align-items: flex-start; text-align: left; }
.ag-hero__orta.ag-hiza-sag { align-items: flex-end;   text-align: right; }
.ag-hero__orta.ag-hiza-sol .ag-hero__baslik { text-align: left; }
.ag-hero__orta.ag-hiza-sag .ag-hero__baslik { text-align: right; }

/* Tam ekran hero'da başlık rengi satır içi stilden gelir; dosyanın
   üstündeki .ag .ag-hero__baslik kuralı (siyah) aynı özgüllükte ama
   daha sonra tanımlı olduğu için buradaki kural onu geçersiz kılar. */
.ag .ag-hero--medya .ag-hero__baslik { color: inherit; }
.ag .ag-hero--medya .ag-hero__ust,
.ag .ag-hero--medya .ag-hero__metin { color: inherit; }

/* ============================================================
   BLOG IZGARASI — referans: framek/blog-grid
   ============================================================ */

/* --- Ortak meta satırı: solda tarih, sağda sarı kategori rozeti --- */
.ag-yazi-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin: 14px 0 10px;
}
.ag-yazi-tarih {
  font-family: var(--ag-font-body);
  font-size: 11px; color: var(--ag-text-light); letter-spacing: .01em;
}
.ag-rozet {
  background: var(--ag-primary); color: var(--ag-accent);
  font-family: var(--ag-font-body);
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}

/* --- Öne çıkan yazı --- */
.ag-one-cikan { padding: 70px 0 0; }
/* Referansta görsel konteynerin ~yarısı (816/1650), aralık ~70px */
.ag-one {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ag-border);
}
@media (max-width: 850px) { .ag-one { grid-template-columns: 1fr; gap: 22px; } }
.ag-one__gorsel { border-radius: 8px; overflow: hidden; background: var(--ag-bg-light); }
.ag-one__gorsel img {
  width: 100%; aspect-ratio: 816/505; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.ag-one:hover .ag-one__gorsel img { transform: scale(1.04); }
.ag-one__ic .ag-yazi-meta { margin-top: 0; }
.ag .ag-one__baslik {
  font-family: var(--ag-font-display);
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.2;
  color: var(--ag-accent);
  margin: 0;
}
.ag-one:hover .ag-one__baslik { text-decoration: underline; text-decoration-color: var(--ag-primary); text-underline-offset: 6px; text-decoration-thickness: 2px; }

/* --- "Latest" başlığı + kategori filtresi --- */
.ag-yazi-bolum { padding: 56px 0 110px; }
.ag-yazi-bas {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 34px;
}
.ag .ag-yazi-bas h2 {
  font-family: var(--ag-font-display);
  font-size: clamp(34px, 3.6vw, 56px);
  color: var(--ag-accent); margin: 0;
}
.ag-filtre { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ag-cip {
  background: none; border: 0; cursor: pointer;
  padding: 9px 18px; border-radius: 999px;
  font-family: var(--ag-font-body);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ag-accent);
  transition: background .25s ease, color .25s ease;
}
.ag-cip:hover { background: var(--ag-bg-light); }
.ag-cip.aktif { background: var(--ag-primary); color: var(--ag-accent); }

/* --- Izgara: 3 sütun --- */
.ag-yazi-izgara { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 20px; row-gap: 42px; }
@media (max-width: 1000px) { .ag-yazi-izgara { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ag-yazi-izgara { grid-template-columns: 1fr; } }

.ag-yk__gorsel { border-radius: 8px; overflow: hidden; background: var(--ag-bg-light); }
.ag-yk__gorsel img {
  width: 100%; aspect-ratio: 257/160; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.ag-yk:hover .ag-yk__gorsel img { transform: scale(1.05); }
/* Kart başlıkları Cal Sans değil — referansta kalın grotesk */
.ag .ag-yk__baslik {
  font-family: var(--ag-font-body);
  font-size: 20px; font-weight: 700; line-height: 1.35;
  color: var(--ag-accent); margin: 0;
}
@media (max-width: 1200px) { .ag .ag-yk__baslik { font-size: 18px; } }
.ag-yk:hover .ag-yk__baslik { text-decoration: underline; text-decoration-color: var(--ag-primary); text-underline-offset: 4px; text-decoration-thickness: 1.5px; }

/* ============================================================
   İÇERİK DETAY — referans: framek blog single
   Koyu hero yok; header bu sayfalarda siyah zeminli sabit bar olur,
   aksi halde beyaz menü beyaz zeminde kaybolur.
   ============================================================ */
.ag-acik-ust .site-ust.ag-ust {
  position: sticky; top: 0;
  background: var(--ag-accent);
}
.ag-acik-ust .site-ust.ag-ust .su-ic { padding-top: 16px; padding-bottom: 16px; }

/* --- Başlık bloğu (breadcrumb + h1) --- */
.ag .ic-hero.detay-hero {
  background: none;
  min-height: 0;
  padding: 60px 0 30px;
  text-align: left;
  color: var(--ag-text);
}
.ag .ic-hero.detay-hero .kapsayici { max-width: var(--ag-container); }
.ag .ic-hero.detay-hero .ic-yol,
.ag .ic-hero.detay-hero .ic-yol a {
  color: var(--ag-text-light);
  font-size: 13px;
}
.ag .ic-hero.detay-hero .ic-yol a:hover { color: var(--ag-accent); }
.ag .ic-hero.detay-hero h1 {
  font-family: var(--ag-font-display);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.12;
  color: var(--ag-accent);
  margin: 18px 0 0;
  max-width: 22ch;
}
.ag .detay-kat {
  display: inline-block;
  background: var(--ag-primary); color: var(--ag-accent);
  font-family: var(--ag-font-body);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px;
}
.ag .detay-tarih { color: var(--ag-text-light); font-size: 13px; }

/* --- Yazı meta satırı (tarih · yazar · kategori) --- */
.ag .blog-meta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--ag-text-light);
  margin-bottom: 6px;
}
.ag .blog-meta .bm-kat {
  background: var(--ag-primary); color: var(--ag-accent);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px;
}

/* --- Kapak görseli: konteyner genişliği, referans oranı 1650/850 --- */
.ag .blog-kapak { border-radius: 8px; overflow: hidden; margin: 0 0 46px; }
.ag .blog-kapak img { width: 100%; aspect-ratio: 1650/850; object-fit: cover; }

/* --- Gövde tipografisi --- */
.ag .detay-govde { font-size: 18px; line-height: 1.78; color: var(--ag-text); }
.ag .detay-govde > * { max-width: 70ch; }
.ag .detay-govde img,
.ag .detay-govde table,
.ag .detay-govde iframe { max-width: 100%; }
.ag .detay-govde p { margin: 0 0 1.5em; }
.ag .detay-govde h2 {
  font-family: var(--ag-font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--ag-accent);
  margin: 2em 0 .6em;
}
.ag .detay-govde h3 {
  font-family: var(--ag-font-display);
  font-size: clamp(22px, 2.1vw, 28px);
  color: var(--ag-accent);
  margin: 1.7em 0 .5em;
}
.ag .detay-govde a { color: var(--ag-accent); text-decoration: underline; text-decoration-color: var(--ag-primary); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.ag .detay-govde blockquote {
  border-left: 3px solid var(--ag-primary);
  margin: 2em 0; padding: 4px 0 4px 26px;
  font-size: 21px; line-height: 1.5; color: var(--ag-accent);
}
.ag .detay-ozet { font-size: 20px; line-height: 1.6; color: var(--ag-accent); }

/* --- Etiketler ve paylaşım --- */
.ag .blog-etiketler .be-etiket,
.ag .bp-etiket {
  display: inline-block;
  background: var(--ag-bg-light); color: var(--ag-accent);
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  margin: 0 6px 6px 0;
}
.ag .blog-etiketler .be-etiket:hover { background: var(--ag-primary); }
.ag .blog-paylas .bp-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--ag-bg-light); color: var(--ag-accent);
  margin-right: 6px;
  transition: background .25s ease;
}
.ag .blog-paylas .bp-btn:hover { background: var(--ag-primary); }

/* --- Yan sütun --- */
.ag .detay-yan { font-size: 15px; }
.ag .detay-yan h3, .ag .detay-yan h4 {
  font-family: var(--ag-font-display);
  font-size: 20px; color: var(--ag-accent); margin: 0 0 16px;
}
.ag .dy-liste a, .ag .blog-kat-liste a { color: var(--ag-text); }
.ag .dy-liste a:hover, .ag .blog-kat-liste a:hover { color: var(--ag-accent); }

/* ============================================================
   BLOG DETAY — referans ekran görüntüsüne göre
   Hero'da başlık yok; meta + başlık içerikte ve ortalı.
   Sağ sidebar korunur (blog ayarlarından geliyor).
   ============================================================ */

/* Hero yalnızca breadcrumb + CTA taşır */
.ag .ic-hero.detay-hero { padding: 130px 0 26px; }
.ag .ic-hero.detay-hero.ic-hero--gorsel {
  background-size: cover; background-position: center;
  padding: 150px 0 26px;
}
.ag .ic-hero.detay-hero.ic-hero--gorsel .ic-yol,
.ag .ic-hero.detay-hero.ic-hero--gorsel .ic-yol a { color: rgba(255,255,255,.85); }
.ag .ic-hero.detay-hero.ic-hero--gorsel .ic-yol a:hover { color: var(--ag-primary); }
.ag .ic-hero-kaplama { background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.75)); }

/* --- İki sütun: içerik + sağ sidebar --- */
.ag .detay-2col { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 60px; align-items: start; }
@media (max-width: 1024px) { .ag .detay-2col { grid-template-columns: 1fr; gap: 40px; } }

/* --- Meta: ortalı, ikonsuz, başlığın üstünde --- */
.ag .blog-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ag-text-light);
  margin: 0 0 18px;
}
.ag .blog-meta i { display: none; }            /* referansta ikon yok */
.ag .blog-meta .bm-kat {
  background: var(--ag-primary); color: var(--ag-accent);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 13px; border-radius: 999px;
  text-decoration: none;
}
.ag .blog-meta .bm-kat:hover,
.ag .blog-meta .bm-kat:focus {
  background: var(--ag-primary); color: var(--ag-accent);
  text-decoration: none; transform: none; opacity: 1;
}
.ag .blog-meta .bm-kat::after { content: none; }   /* çizgi animasyonu girmesin */

/* --- Başlık: ortalı --- */
.ag .blog-baslik {
  font-family: var(--ag-font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.14;
  color: var(--ag-accent);
  text-align: center;
  margin: 0 0 40px;
}

/* --- Kapak: içerik sütununun tamamı --- */
.ag .detay-govde > * { max-width: none; }        /* önceki 70ch sınırı kaldırıldı */
.ag .blog-kapak {
  display: block; width: 100%;
  aspect-ratio: 1650/850; object-fit: cover;
  border-radius: 8px; margin: 0 0 44px;
}

/* --- Gövde: alan doldursun, okunabilir kalsın --- */
.ag .detay-govde { font-size: 17px; line-height: 1.8; }
.ag .detay-govde .icerik-alani > p,
.ag .detay-govde .icerik-alani > ul,
.ag .detay-govde .icerik-alani > ol { max-width: 62em; }

/* --- Alıntı kutusu (referanstaki gri kutu) --- */
.ag .detay-govde blockquote {
  background: var(--ag-bg-light);
  border: 0; border-radius: 8px;
  margin: 40px 0; padding: 46px 40px 34px;
  text-align: center;
  font-size: 19px; line-height: 1.55; color: var(--ag-accent);
  position: relative;
}
.ag .detay-govde blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--ag-font-display);
  font-size: 64px; line-height: .6;
  color: var(--ag-primary);
  margin-bottom: 18px;
}

/* --- Sağ sidebar: tema renkleri --- */
.ag .detay-yan { font-size: 15px; }
.ag .detay-yan h3, .ag .detay-yan h4 {
  font-family: var(--ag-font-display);
  font-size: 20px; color: var(--ag-accent);
  margin: 20px 0 16px;
}
.ag .detay-yan > div,
.ag .detay-yan > section { background: var(--ag-bg-light); border-radius: 8px; padding: 24px 26px; margin-bottom: 22px; }
.ag .detay-yan a { color: var(--ag-text); }
.ag .detay-yan a:hover { color: var(--ag-accent); }
.ag .by-arama input { border: 1px solid var(--ag-border); border-radius: 999px; padding: 11px 18px; width: 100%; background: #fff; }
.ag .dy-liste a, .ag .blog-kat-liste a { display: block; padding: 8px 0; border-bottom: 1px solid #e6e6e6; }
.ag .dy-liste a:last-child, .ag .blog-kat-liste a:last-child { border-bottom: 0; }

/* --- Blog detay: içerik genişliği header ile aynı (1650px konteyner) --- */
.ag .ic-hero.detay-hero .kapsayici,
.ag .detay-hero + .bolum .kapsayici,
.ag .bolum .kapsayici { max-width: var(--ag-container); }

/* --- Sidebar arama: iç içe kutu ve çift çerçeve karmaşası giderildi --- */
.ag .detay-yan .by-arama {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-bottom: 26px;
}
.ag .detay-yan .by-arama form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid var(--ag-border);
  border-radius: 999px;
  overflow: hidden;
}
.ag .detay-yan .by-arama input {
  flex: 1 1 auto;
  border: 0;                 /* dış çerçeve form'da — içeride tekrar olmasın */
  border-radius: 0;
  background: none;
  padding: 12px 20px;
  font-family: var(--ag-font-body);
  font-size: 14px;
  color: var(--ag-accent);
  outline: none;
  width: auto;
}
.ag .detay-yan .by-arama input::placeholder { color: var(--ag-text-light); }
.ag .detay-yan .by-arama button {
  flex: 0 0 auto;
  border: 0; cursor: pointer;
  background: var(--ag-primary);
  color: var(--ag-accent);
  padding: 0 22px;
  font-size: 14px;
  border-radius: 0;
  transition: background .25s ease;
}
.ag .detay-yan .by-arama button:hover { background: var(--ag-primary-hover); }

/* ============================================================
   SABİT SAYFA (Hakkımızda vb.) — referans: framek/about
   ============================================================ */
/* About hero'su diğer iç sayfalardan daha uzun */
.ag-sayfabas--uzun { min-height: 640px; padding: 200px 0 40px; }
@media (max-width: 992px) { .ag-sayfabas--uzun { min-height: 440px; padding: 150px 0 34px; } }

.ag-sayfa-giris { padding: 96px 0 0; text-align: center; }
.ag .ag-sayfa-giris h2 {
  font-family: var(--ag-font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.14;
  color: var(--ag-accent);
  margin: 0 auto;
}

.ag-sayfa-govde { padding: 70px 0 120px; }
.ag-sayfa-2col { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 60px; align-items: start; }
@media (max-width: 1024px) { .ag-sayfa-2col { grid-template-columns: 1fr; gap: 40px; } }


.ag-bolum--logo { padding-top: 60px; }
.ag-logo__ad { font-family: var(--ag-font-body); font-size: 14px; font-weight: 600; color: var(--ag-text-light); text-align: center; }
a.ag-logo { text-decoration: none; }

.ag-bolum--logo .ag-logolar { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .ag-bolum--logo .ag-logolar { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .ag-bolum--logo .ag-logolar { grid-template-columns: repeat(2, 1fr); } }
.ag-bolum--logo .ag-logo img {
  width: 100%; height: 100%;
  max-height: none;
  object-fit: contain;
  filter: none; opacity: 1;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}

.ag-bolum--logo .ag-logolar {
  border: 0;
  gap: 30px;
}
.ag-bolum--logo .ag-logo {
  border: 0;
  padding: 0;
  min-height: 0;
  aspect-ratio: auto;
  display: block;
  text-decoration: none;
}
.ag-bolum--logo .ag-logo__gorsel {
  background: none;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  padding: 18px;
}
.ag-bolum--logo .ag-logo__gorsel img {
  width: 100%; height: 100%;
  max-height: none;
  object-fit: contain;
  filter: none; opacity: 1;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.ag-bolum--logo .ag-logo:hover .ag-logo__gorsel img { transform: scale(1.04); }
.ag .ag-bolum--logo .ag-logo__ad {
  font-family: var(--ag-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ag-accent);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.35;
}

.ag-bolum--hizmet { padding-top: 60px; }
.ag-bolum--hizmet .ag-hizmetler { border-top: 1px solid var(--ag-border); }
.ag .ag-cta .ag-hap { margin-top: 8px; }

.ag-bolum--hizmet .ag-hizmetler { border-top: 0; }
.ag-hk-izgara { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
@media (max-width: 1000px) { .ag-hk-izgara { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ag-hk-izgara { grid-template-columns: 1fr; } }
.ag-hk { display: block; text-decoration: none; }
.ag-hk__gorsel { border-radius: 8px; overflow: hidden; background: var(--ag-bg-light); }
.ag-hk__gorsel img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.ag-hk:hover .ag-hk__gorsel img { transform: scale(1.05); }
.ag .ag-hk__ad {
  font-family: var(--ag-font-display);
  font-size: 24px; line-height: 1.25;
  color: var(--ag-accent);
  margin: 18px 0 4px;
}
.ag-hk:hover .ag-hk__ad { text-decoration: underline; text-decoration-color: var(--ag-primary); text-underline-offset: 5px; text-decoration-thickness: 2px; }
.ag-hk__ozet { margin: 0; color: var(--ag-text); font-size: 15px; line-height: 1.6; }

.ag-hk {
  background: var(--ag-bg-light);
  border-radius: 10px;
  padding: 16px 16px 24px;
  transition: background .3s ease;
}
.ag-hk:hover { background: #ededed; }
.ag-hk__gorsel { background: none; }
.ag-hk__ozet { color: var(--ag-text); }

.ag-hk {
  position: relative;
  background: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  display: block;
}
.ag-hk:hover { background: none; }
.ag-hk__gorsel { border-radius: 0; background: var(--ag-accent); }
.ag-hk__gorsel img { aspect-ratio: 1/1; }
.ag-hk__ic {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 26px 26px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,0) 100%);
  color: #fff;
}
.ag .ag-hk__ad { color: #fff; margin: 0 0 6px; }
.ag-hk:hover .ag-hk__ad { text-decoration: none; }
.ag-hk__ozet { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.55; margin: 0; }

.ag .ag-hk:hover .ag-hk__ad { color: var(--ag-primary); }
.ag-hk .ag-hk__ad, .ag-hk .ag-hk__ozet { transition: color .3s ease; }
.ag-hk:hover .ag-hk__ozet { color: var(--ag-primary); }

/* Blog dışı detay (hizmet, proje, ürün, duyuru): koyu görselli hero */
.ag .ic-hero.detay-hero.ic-hero--gorsel {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 46px;
}
.ag .ic-hero.detay-hero.ic-hero--gorsel h1 { color: #fff; margin-top: 16px; }
.ag .ic-hero.detay-hero.ic-hero--gorsel .detay-tarih { color: rgba(255,255,255,.8); }
.ag .ic-hero.detay-hero.ic-hero--gorsel .detay-kat { margin-bottom: 4px; }

.ag .detay-govde .detay-ozet {
  font-size: 20px; line-height: 1.6;
  color: var(--ag-accent);
  margin: 0 0 30px;
}
.ag .detay-galeri { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0; }
@media (max-width: 700px) { .ag .detay-galeri { grid-template-columns: repeat(2, 1fr); } }
.ag .detay-galeri .dg-oge, .ag .detay-galeri img { border-radius: 8px; overflow: hidden; }
.ag .detay-galeri img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.ag .dy-proje-liste { display: grid; gap: 14px; }
.ag .dyp-gorsel { border-radius: 8px; overflow: hidden; }
.ag .dyp-gorsel img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ag .dyp-ad { font-family: var(--ag-font-body); font-weight: 600; font-size: 15px; color: var(--ag-accent); }
.ag .dyp-tarih { font-size: 12px; color: var(--ag-text-light); }

/* ============================================================
   YAN SÜTUN — sayfayla birlikte kayan, kart tabanlı
   ============================================================ */
.ag .detay-yan {
  position: sticky;
  top: 96px;
  font-size: 15px;
  align-self: start;
}
.ag .detay-yan + .detay-yan { margin-top: 24px; }

.ag .detay-yan h3,
.ag .detay-yan h4 {
  font-family: var(--ag-font-display);
  font-size: 19px;
  color: var(--ag-accent);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ag-border);
  position: relative;
}
.ag .detay-yan h3::after,
.ag .detay-yan h4::after {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  width: 46px; height: 2px;
  background: var(--ag-primary);
}

/* Kart sarmalı: başlık + liste tek blok */
.ag .detay-yan > ul,
.ag .detay-yan > .blog-kat-liste {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

/* --- İkonlu liste (Diğer Hizmetler) --- */
.ag .dy-liste li { margin: 0; }
.ag .dy-liste a {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 8px;
  border-radius: 8px;
  color: var(--ag-text);
  font-weight: 500;
  transition: background .25s ease, color .25s ease, padding-left .25s ease;
}
.ag .dy-liste a i {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ag-bg-light);
  color: var(--ag-accent);
  font-size: 21px;
  transition: background .25s ease, color .25s ease;
}
.ag .dy-liste a span { flex: 1 1 auto; line-height: 1.4; }
.ag .dy-liste a::after {
  content: "\203A";
  color: var(--ag-text-light);
  font-size: 18px; line-height: 1;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
.ag .dy-liste a:hover {
  color: var(--ag-accent);
  padding-left: 12px;
}
.ag .dy-liste a:hover i { background: var(--ag-primary); color: var(--ag-accent); }
.ag .dy-liste a:hover::after { opacity: 1; transform: none; }

/* Açık olan hizmet */
.ag .dy-liste a.aktif {
  background: var(--ag-accent);
  color: #fff;
}
.ag .dy-liste a.aktif i { background: var(--ag-primary); color: var(--ag-accent); }
.ag .dy-liste a.aktif::after { opacity: 1; transform: none; color: var(--ag-primary); }

/* --- Görselli liste (Son Yazılar / Benzer Projeler) --- */
.ag .dy-proje-liste { display: grid; gap: 6px; }
.ag .dy-proje-liste li { margin: 0; }
.ag .dy-proje-liste a {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  transition: background .25s ease;
}
.ag .dy-proje-liste a:hover { background: var(--ag-bg-light); }
.ag .dyp-gorsel {
  border-radius: 6px; overflow: hidden;
  background: var(--ag-bg-light);
  display: grid; place-items: center;
  color: var(--ag-text-light);
}
.ag .dyp-gorsel img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.ag .dy-proje-liste a:hover .dyp-gorsel img { transform: scale(1.06); }
.ag .dyp-ad {
  display: block;
  font-family: var(--ag-font-body);
  font-size: 14px; font-weight: 600; line-height: 1.4;
  color: var(--ag-accent);
}
.ag .dy-proje-liste a:hover .dyp-ad { text-decoration: underline; text-decoration-color: var(--ag-primary); text-underline-offset: 3px; }
.ag .dyp-tarih {
  display: block;
  margin-top: 4px;
  font-size: 11px; font-weight: 400;
  color: var(--ag-text-light);
}

/* --- Kategori listesi (ad + adet) --- */
.ag .blog-kat-liste li { margin: 0; }
.ag .blog-kat-liste a {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 11px 4px;
  border-bottom: 1px solid var(--ag-border);
  color: var(--ag-text);
  transition: color .25s ease, padding-left .25s ease;
}
.ag .blog-kat-liste li:last-child a { border-bottom: 0; }
.ag .blog-kat-liste a:hover { color: var(--ag-accent); padding-left: 6px; }
.ag .blog-kat-liste a em {
  font-style: normal;
  min-width: 26px; height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--ag-bg-light);
  color: var(--ag-text-light);
  font-size: 11px; font-weight: 700;
  display: inline-grid; place-items: center;
  transition: background .25s ease, color .25s ease;
}
.ag .blog-kat-liste a:hover em { background: var(--ag-primary); color: var(--ag-accent); }

@media (max-width: 1024px) {
  .ag .detay-yan { position: static; }
}

/* Blog dışı detay: içerik kapsayıcısı daha dar */
.ag-detay-dar .bolum > .kapsayici { max-width: calc(var(--ag-container) * .8); }

/* ============================================================
   PROJELER IZGARASI
   ============================================================ */
.ag-bolum--proje { padding-top: 56px; }
.ag-filtre--orta { justify-content: center; margin-bottom: 34px; }

.ag-pj-izgara { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 1000px) { .ag-pj-izgara { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ag-pj-izgara { grid-template-columns: 1fr; } }

.ag-pj {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ag-accent);
  text-decoration: none;
}
.ag-pj__gorsel { aspect-ratio: 4/3; overflow: hidden; }
.ag-pj__gorsel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.3,1);
}
.ag-pj:hover .ag-pj__gorsel img { transform: scale(1.06); }

.ag-pj__ic {
  position: absolute; inset: auto 0 0 0;
  padding: 26px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,0) 100%);
  color: #fff;
}
.ag .ag-pj__ad {
  font-family: var(--ag-font-display);
  font-size: 21px; line-height: 1.2;
  color: #fff; margin: 0 0 14px;
  transition: color .25s ease;
}
.ag-pj:hover .ag-pj__ad { color: var(--ag-primary); }

.ag-pj__alt {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.22);
  padding-top: 12px;
}
.ag-pj__meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ag-font-body);
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.75);
}
.ag-pj__meta i { font-style: normal; color: rgba(255,255,255,.45); }
.ag-pj__btn {
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--ag-font-body);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: #fff;
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.ag-pj:hover .ag-pj__btn { background: var(--ag-primary); border-color: var(--ag-primary); color: var(--ag-accent); }

/* Filtre barı: kategoriler solda, durum sağda */
.ag-filtre-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 34px;
}
.ag-filtre--orta { justify-content: flex-start; margin-bottom: 0; }

/* Kart tipografisi büyütüldü */
.ag .ag-pj__ad { font-size: 26px; margin: 0 0 16px; }
.ag-pj__meta { font-size: 12px; letter-spacing: .07em; }
.ag-pj__btn { font-size: 12px; padding: 9px 20px; }
.ag-pj__ic { padding: 30px 24px 20px; }
@media (max-width: 1200px) { .ag .ag-pj__ad { font-size: 22px; } }

/* Filtre geçiş efekti */
.ag-pj {
  opacity: 1; transform: none;
  transition: opacity .35s ease, transform .35s ease;
}
.ag-pj--gizli { opacity: 0; transform: translateY(10px) scale(.98); pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .ag-pj { transition: none; } }

/* .ag-pj { display:block } [hidden]'ı ezdiği için gizlenen kart ızgarada
   yer kaplamaya devam ediyordu. */
.ag-pj[hidden] { display: none; }

.ag .ag-pj__ad { font-size: 22px; }
@media (max-width: 1200px) { .ag .ag-pj__ad { font-size: 19px; } }
.ag-pj__ic {
  padding: 70px 24px 20px;
  background: linear-gradient(to top,
    rgba(0,0,0,.96) 0%,
    rgba(0,0,0,.88) 35%,
    rgba(0,0,0,.6) 65%,
    rgba(0,0,0,0) 100%);
}

@media (max-width: 640px) {
  .ag-filtre-bar { gap: 10px; margin-bottom: 24px; }
  .ag-filtre { gap: 4px; }
  .ag-cip { font-size: 11px; padding: 7px 12px; letter-spacing: .04em; }
  .ag-bolum--proje { padding-top: 40px; }
}
@media (max-width: 400px) {
  .ag-cip {
    font-size: 13px;
    padding: 6px 10px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }
}

@media (max-width: 640px) {
  .ag-kapsayici { padding-left: 16px; padding-right: 16px; }
  .ag-filtre-bar { margin-left: -4px; margin-right: -4px; }
}
@media (max-width: 400px) {
  .ag-kapsayici { padding-left: 12px; padding-right: 12px; }
}

.ag-bolum--logo .ag-logo__gorsel img { object-fit: contain; }

/* Logo/sertifika görselleri kare kutuda, doğal oranında, kırpılmadan */
.ag-bolum--logo .ag-logo__gorsel { aspect-ratio: 1/1; padding: 12px; }
.ag-bolum--logo .ag-logo__gorsel img {
  width: auto; height: auto;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}

/* ============================================================
   MÜŞTERİ GÖRÜŞLERİ
   ============================================================ */
.ag-bolum--gorus { padding-top: 60px; }
.ag-gr-izgara { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 1000px) { .ag-gr-izgara { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ag-gr-izgara { grid-template-columns: 1fr; } }

.ag-gr {
  position: relative;
  margin: 0;
  padding: 40px 32px 30px;
  background: var(--ag-bg-light);
  border-radius: 10px;
  display: flex; flex-direction: column;
  transition: background .3s ease, transform .3s ease;
}
.ag-gr::before {
  content: "\201C";
  position: absolute; top: 14px; right: 26px;
  font-family: var(--ag-font-display);
  font-size: 72px; line-height: 1;
  color: var(--ag-primary);
  opacity: .5;
  pointer-events: none;
}
.ag-gr:hover { transform: translateY(-3px); }

.ag-gr__puan { display: flex; gap: 3px; margin-bottom: 16px; font-size: 15px; }
.ag-gr__puan span { color: #d9d9d9; }
.ag-gr__puan span.dolu { color: var(--ag-primary); }

.ag-gr__yorum {
  margin: 0 0 26px;
  border: 0; padding: 0;
  font-family: var(--ag-font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--ag-text);
  flex: 1 1 auto;
}

.ag-gr__kisi {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
}
.ag-gr__kisi img,
.ag-gr__harf {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.ag-gr__harf {
  display: grid; place-items: center;
  background: var(--ag-accent); color: var(--ag-primary);
  font-family: var(--ag-font-display); font-size: 20px;
}
.ag-gr__bilgi { display: flex; flex-direction: column; min-width: 0; }
.ag-gr__bilgi strong {
  font-family: var(--ag-font-body);
  font-size: 16px; font-weight: 700; color: var(--ag-accent);
}
.ag-gr__bilgi em {
  font-style: normal;
  font-size: 13px; color: var(--ag-text-light);
  margin-top: 2px;
}

.ag-gr__kisi img, .ag-gr__harf { flex: 0 0 64px; width: 64px; height: 64px; }
.ag-gr__harf { font-size: 26px; }

/* ============================================================
   FİYAT PAKETLERİ
   ============================================================ */
.ag-bolum--paket { padding-top: 60px; }
.ag-pk-izgara { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
@media (max-width: 1000px) { .ag-pk-izgara { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ag-pk-izgara { grid-template-columns: 1fr; } }

.ag-pk {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ag-bg-light);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 40px 32px 32px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.ag-pk:hover { transform: translateY(-4px); border-color: var(--ag-border); }

/* Öne çıkan paket: siyah zemin, sarı vurgular */
.ag-pk--one { background: var(--ag-accent); border-color: var(--ag-accent); }
.ag-pk__rozet {
  position: absolute; top: 18px; right: 22px;
  background: var(--ag-primary); color: var(--ag-accent);
  font-family: var(--ag-font-body);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px;
}

.ag .ag-pk__ad {
  font-family: var(--ag-font-display);
  font-size: 26px; color: var(--ag-accent);
  margin: 0 0 8px;
}
.ag-pk--one .ag-pk__ad { color: #fff; }

.ag-pk__acik { margin: 0 0 22px; font-size: 15px; line-height: 1.55; color: var(--ag-text); }
.ag-pk--one .ag-pk__acik { color: rgba(255,255,255,.75); }

.ag-pk__fiyat {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid #e4e4e4;
}
.ag-pk--one .ag-pk__fiyat { border-bottom-color: rgba(255,255,255,.18); }
.ag-pk__tutar {
  font-family: var(--ag-font-display);
  font-size: 46px; line-height: 1; color: var(--ag-accent);
}
.ag-pk--one .ag-pk__tutar { color: var(--ag-primary); }
.ag-pk__bir { font-size: 14px; font-weight: 600; color: var(--ag-text-light); }
.ag-pk__bir i { font-style: normal; font-weight: 400; }
.ag-pk--one .ag-pk__bir { color: rgba(255,255,255,.65); }

.ag-pk__liste { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; flex: 1 1 auto; }
.ag-pk__liste li {
  position: relative;
  padding-left: 28px;
  font-size: 15px; line-height: 1.5; color: var(--ag-text);
}
.ag-pk__liste li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ag-primary);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.ag-pk__liste li::after {
  content: "";
  position: absolute; left: 5px; top: 9px;
  width: 5px; height: 2.5px;
  border-left: 1.5px solid var(--ag-accent);
  border-bottom: 1.5px solid var(--ag-accent);
  transform: rotate(-45deg);
}
.ag-pk--one .ag-pk__liste li { color: rgba(255,255,255,.85); }

.ag-pk__btn {
  display: block;
  text-align: center;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--ag-accent); color: #fff;
  font-family: var(--ag-font-body);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  transition: background .25s ease, color .25s ease;
}
.ag-pk__btn:hover { background: var(--ag-primary); color: var(--ag-accent); }
.ag-pk--one .ag-pk__btn { background: var(--ag-primary); color: var(--ag-accent); }
.ag-pk--one .ag-pk__btn:hover { background: #fff; }

/* ============================================================
   S.S.S — akordeon
   ============================================================ */
.ag-bolum--sss { padding-top: 60px; }
.ag-sss { max-width: 980px; margin: 0 auto; border-top: 1px solid var(--ag-border); }
.ag-sss__oge { border-bottom: 1px solid var(--ag-border); }

.ag-sss__oge summary {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
  transition: padding-left .25s ease;
}
.ag-sss__oge summary::-webkit-details-marker { display: none; }
.ag-sss__oge summary:hover { padding-left: 10px; }

.ag-sss__no {
  flex: 0 0 auto;
  font-family: var(--ag-font-body);
  font-size: 13px; font-weight: 700;
  color: var(--ag-text-light);
  letter-spacing: .04em;
  transition: color .25s ease;
}
.ag-sss__oge[open] .ag-sss__no { color: var(--ag-primary); }

.ag-sss__soru {
  flex: 1 1 auto;
  font-family: var(--ag-font-display);
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.3;
  color: var(--ag-accent);
}

/* +/− işareti */
.ag-sss__isaret {
  flex: 0 0 40px;
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ag-bg-light);
  transition: background .3s ease, transform .3s ease;
}
.ag-sss__isaret::before,
.ag-sss__isaret::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 14px; height: 1.5px;
  margin: -.75px 0 0 -7px;
  background: var(--ag-accent);
  transition: transform .3s ease, opacity .3s ease;
}
.ag-sss__isaret::after { transform: rotate(90deg); }
.ag-sss__oge[open] .ag-sss__isaret { background: var(--ag-primary); transform: rotate(180deg); }
.ag-sss__oge[open] .ag-sss__isaret::after { opacity: 0; }

.ag-sss__cevap {
  padding: 0 60px 28px 46px;
  font-size: 16px; line-height: 1.75;
  color: var(--ag-text);
  animation: ag-sss-ac .3s ease;
}
@keyframes ag-sss-ac { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

@media (max-width: 640px) {
  .ag-sss__oge summary { gap: 12px; padding: 20px 2px; }
  .ag-sss__isaret { flex: 0 0 32px; width: 32px; height: 32px; }
  .ag-sss__cevap { padding: 0 0 22px 34px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) { .ag-sss__cevap { animation: none; } }

/* ============================================================
   FAYDALI LİNKLER + DOSYALAR
   ============================================================ */
.ag-bolum--kaynak { padding-top: 60px; }

/* --- Linkler --- */
.ag-lk-izgara { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1000px) { .ag-lk-izgara { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ag-lk-izgara { grid-template-columns: 1fr; } }

.ag-lk {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: var(--ag-bg-light);
  border-radius: 10px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.ag-lk:hover { background: #ededed; transform: translateY(-2px); }
.ag-lk__ikon {
  flex: 0 0 46px; width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--ag-accent);
  font-size: 16px;
  transition: background .25s ease;
}
.ag-lk:hover .ag-lk__ikon { background: var(--ag-primary); }
.ag-lk__govde { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ag-lk__govde strong {
  font-family: var(--ag-font-body);
  font-size: 16px; font-weight: 600; color: var(--ag-accent);
  line-height: 1.35;
}
.ag-lk__govde em {
  font-style: normal; font-size: 12px; color: var(--ag-text-light);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ag-lk__ok { flex: 0 0 auto; color: var(--ag-text-light); transition: transform .25s ease, color .25s ease; }
.ag-lk:hover .ag-lk__ok { color: var(--ag-accent); transform: translateX(4px); }

/* --- Dosyalar --- */
.ag-ds-izgara { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 800px) { .ag-ds-izgara { grid-template-columns: 1fr; } }

.ag-ds {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  background: var(--ag-bg-light);
  border-radius: 10px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.ag-ds:hover { background: #ededed; transform: translateY(-2px); }
.ag-ds__ikon {
  flex: 0 0 54px; width: 54px; height: 54px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: #fff;
  font-size: 24px;
}
.ag-ds__govde { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.ag-ds__govde strong {
  font-family: var(--ag-font-body);
  font-size: 17px; font-weight: 600; color: var(--ag-accent); line-height: 1.35;
}
.ag-ds__acik { font-size: 14px; color: var(--ag-text); line-height: 1.5; }
.ag-ds__meta { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.ag-ds__meta em {
  font-style: normal;
  background: var(--ag-accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 9px; border-radius: 4px;
}
.ag-ds__meta i { font-style: normal; font-size: 12px; color: var(--ag-text-light); }
.ag-ds__indir {
  flex: 0 0 auto;
  border: 1px solid var(--ag-border);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--ag-font-body);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ag-accent);
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease;
}
.ag-ds:hover .ag-ds__indir { background: var(--ag-primary); border-color: var(--ag-primary); }
@media (max-width: 560px) {
  .ag-ds { flex-wrap: wrap; }
  .ag-ds__indir { width: 100%; text-align: center; }
}

/* ============================================================
   FOTO GALERİ + VİDEO GALERİ
   ============================================================ */
.ag-bolum--medya { padding-top: 60px; }

/* --- Albümler --- */
.ag-gl-izgara { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .ag-gl-izgara { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ag-gl-izgara { grid-template-columns: 1fr; } }

.ag-gl {
  position: relative; display: block;
  border-radius: 10px; overflow: hidden;
  background: var(--ag-accent);
  text-decoration: none;
}
.ag-gl__gorsel { aspect-ratio: 4/3; }
.ag-gl__gorsel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.3,1);
}
.ag-gl:hover .ag-gl__gorsel img { transform: scale(1.06); }
.ag-gl__ic {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 60px 22px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,0) 100%);
}
.ag .ag-gl__ic h3 {
  font-family: var(--ag-font-display);
  font-size: 21px; color: #fff; margin: 0;
  transition: color .25s ease;
}
.ag-gl:hover .ag-gl__ic h3 { color: var(--ag-primary); }
.ag-gl__ok {
  flex: 0 0 auto; color: #fff; font-size: 18px;
  transition: transform .25s ease, color .25s ease;
}
.ag-gl:hover .ag-gl__ok { color: var(--ag-primary); transform: translateX(4px); }

/* --- Videolar --- */
.ag-vd-izgara { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .ag-vd-izgara { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .ag-vd-izgara { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .ag-vd-izgara { grid-template-columns: 1fr; } }

.ag-vd {
  display: block; width: 100%;
  background: none; border: 0; padding: 0;
  cursor: pointer; text-align: left;
  font-family: inherit;
}
.ag-vd__gorsel {
  position: relative;
  border-radius: 10px; overflow: hidden;
  background: var(--ag-accent);
  aspect-ratio: 16/9;
}
.ag-vd__gorsel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1), opacity .3s ease;
}
.ag-vd:hover .ag-vd__gorsel img { transform: scale(1.05); opacity: .75; }
.ag-vd__play {
  position: absolute; left: 50%; top: 50%;
  width: 58px; height: 58px; margin: -29px 0 0 -29px;
  border-radius: 50%;
  background: var(--ag-primary);
  display: grid; place-items: center;
  transition: transform .3s ease;
}
.ag-vd__play::after {
  content: "";
  border-left: 14px solid var(--ag-accent);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.ag-vd:hover .ag-vd__play { transform: scale(1.12); }
.ag .ag-vd__ad {
  font-family: var(--ag-font-body);
  font-size: 16px; font-weight: 600; line-height: 1.4;
  color: var(--ag-accent);
  margin: 14px 0 0;
}
.ag-vd:hover .ag-vd__ad { text-decoration: underline; text-decoration-color: var(--ag-primary); text-underline-offset: 4px; }

/* --- Video modalı --- */
.ag-vm {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92);
  display: grid; place-items: center;
  padding: 30px;
}
.ag-vm[hidden] { display: none; }
.ag-vm__cerceve { width: min(1100px, 100%); aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; }
.ag-vm__cerceve iframe { width: 100%; height: 100%; border: 0; display: block; }
.ag-vm__kapat {
  position: absolute; top: 24px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ag-primary); color: var(--ag-accent);
  border: 0; cursor: pointer;
  font-size: 26px; line-height: 1;
  display: grid; place-items: center;
}
.ag-vm__kapat:hover { background: #fff; }

/* --- Galeri albüm detayı --- */
.ag-gd__acik { max-width: 70ch; margin: 0 0 34px; font-size: 17px; line-height: 1.7; color: var(--ag-text); }
.ag-gd-izgara { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .ag-gd-izgara { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .ag-gd-izgara { grid-template-columns: repeat(2, 1fr); } }

.ag-gd__oge {
  position: relative;
  display: block;
  border-radius: 8px; overflow: hidden;
  background: var(--ag-bg-light);
  aspect-ratio: 1/1;
}
.ag-gd__oge img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1), filter .3s ease;
}
.ag-gd__oge:hover img { transform: scale(1.07); filter: brightness(.72); }
.ag-gd__buyut {
  position: absolute; left: 50%; top: 50%;
  width: 46px; height: 46px; margin: -23px 0 0 -23px;
  border-radius: 50%;
  background: var(--ag-primary);
  opacity: 0; transform: scale(.7);
  transition: opacity .3s ease, transform .3s ease;
}
.ag-gd__buyut::before,
.ag-gd__buyut::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  background: var(--ag-accent);
}
.ag-gd__buyut::before { width: 16px; height: 1.5px; margin: -.75px 0 0 -8px; }
.ag-gd__buyut::after  { width: 1.5px; height: 16px; margin: -8px 0 0 -.75px; }
.ag-gd__oge:hover .ag-gd__buyut { opacity: 1; transform: scale(1); }

.ag-gd__geri { margin-top: 44px; }

/* ============================================================
   YEMEK MENÜSÜ
   ============================================================ */
.ag-bolum--yemek { padding-top: 60px; }
.ag-ym__sekmeler { justify-content: center; margin-bottom: 42px; }

.ag-ym__panel { display: none; }
.ag-ym__panel.aktif { display: block; animation: ag-ym-ac .3s ease; }
@keyframes ag-ym-ac { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .ag-ym__panel.aktif { animation: none; } }

.ag-ym__liste { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 46px; }
@media (max-width: 860px) { .ag-ym__liste { grid-template-columns: 1fr; } }

.ag-ym__oge {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 12px;
  border-radius: 10px;
  transition: background .25s ease;
}
.ag-ym__oge:hover { background: var(--ag-bg-light); }

.ag-ym__gorsel {
  flex: 0 0 78px;
  width: 78px; height: 78px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ag-bg-light);
}
.ag-ym__gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ag-ym__oge:hover .ag-ym__gorsel img { transform: scale(1.08); }

.ag-ym__govde { flex: 1 1 auto; min-width: 0; }
.ag-ym__ust { display: flex; align-items: baseline; gap: 10px; }
.ag .ag-ym__ust h3 {
  font-family: var(--ag-font-display);
  font-size: 21px; color: var(--ag-accent); margin: 0;
  white-space: nowrap;
}
/* Ad ile fiyat arasını dolduran noktalı çizgi */
.ag-ym__nokta {
  flex: 1 1 auto;
  height: 1px;
  min-width: 20px;
  background-image: linear-gradient(to right, var(--ag-border) 40%, transparent 0);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  transform: translateY(-4px);
}
.ag-ym__fiyat {
  flex: 0 0 auto;
  font-family: var(--ag-font-display);
  font-size: 21px; color: var(--ag-accent);
  white-space: nowrap;
}
.ag-ym__oge:hover .ag-ym__fiyat { color: var(--ag-primary); }
.ag-ym__ozet { margin: 6px 0 0; font-size: 14px; line-height: 1.55; color: var(--ag-text-light); }

@media (max-width: 480px) {
  .ag-ym__gorsel { flex: 0 0 62px; width: 62px; height: 62px; }
  .ag .ag-ym__ust h3, .ag-ym__fiyat { font-size: 18px; }
}

/* ============================================================
   RANDEVU
   ============================================================ */
.ag-bolum--randevu { padding-top: 70px; }
.ag-rv { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 48px; align-items: start; }
@media (max-width: 992px) { .ag-rv { grid-template-columns: 1fr; gap: 32px; } }

.ag-rv__gorsel { border-radius: 10px; overflow: hidden; background: var(--ag-bg-light); }
.ag-rv__gorsel img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ag-rv__acik { margin: 22px 0 0; font-size: 16px; line-height: 1.7; color: var(--ag-text); }
.ag-rv__bilgi {
  margin-top: 22px; padding: 18px 20px;
  background: var(--ag-bg-light); border-radius: 10px;
}
.ag-rv__bilgi-bas {
  display: block;
  font-family: var(--ag-font-body);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ag-text-light); margin-bottom: 6px;
}
.ag-rv__bilgi strong { font-family: var(--ag-font-display); font-size: 22px; color: var(--ag-accent); }

.ag-rv__kutu { background: var(--ag-bg-light); border-radius: 12px; padding: 42px 44px 44px; }
@media (max-width: 600px) { .ag-rv__kutu { padding: 28px 20px 32px; } }

/* Select ve tarih alanları: alt çizgili görünüm, etiket üstte sabit */
/* Select ve tarih alanlari: etiket sabit ustte */
.ag-form__alan--secim { display: flex; flex-direction: column; }
.ag-form__alan label.ag-form__ustetiket {
  position: static; pointer-events: auto;
  font-size: 12px; font-weight: 600;
  color: var(--ag-accent);
  margin-bottom: 2px;
}
.ag-form__alan select,
.ag-form__alan--secim input,
.ag-form__alan--secim input.form-control {
  width: 100%;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background: none;
  border: 0; border-bottom: 1px solid var(--ag-border);
  border-radius: 0;
  padding: 10px 22px 10px 0;
  font-family: var(--ag-font-body); font-size: 15px;
  color: var(--ag-accent);
  outline: none; cursor: pointer;
  transition: border-color .25s ease;
}
.ag-form__alan select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 8%27%3E%3Cpath d=%27M1 1l5 5 5-5%27 fill=%27none%27 stroke=%27%23111%27 stroke-width=%271.6%27/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; background-size: 11px;
}
.ag-form__alan select:focus,
.ag-form__alan--secim input:focus { border-bottom-color: var(--ag-primary); }
.ag-form__alan select option { color: var(--ag-accent); background: #fff; }
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: var(--ag-primary); border-color: var(--ag-primary); color: var(--ag-accent);
}
/* Gri kutu icinde etiketler okunakli olsun */
.ag-rv__kutu .ag-form__alan label { color: #5a5a5a; }
.ag-rv__kutu .ag-form__alan input:focus + label,
.ag-rv__kutu .ag-form__alan textarea:focus + label,
.ag-rv__kutu .ag-form__alan input:not(:placeholder-shown) + label,
.ag-rv__kutu .ag-form__alan textarea:not(:placeholder-shown) + label { color: var(--ag-accent); }
.ag-rv__kutu .ag-form__alan input,
.ag-rv__kutu .ag-form__alan textarea,
.ag-rv__kutu .ag-form__alan select { border-bottom-color: rgba(0,0,0,.18); }

/* ============================================================
   KARİYER
   ============================================================ */
.ag-bolum--kariyer { padding-top: 70px; }
.ag-kr__giris {
  max-width: 780px; margin: 0 auto 44px;
  text-align: center; font-size: 18px; line-height: 1.75; color: var(--ag-text);
}
.ag-kr__kutu {
  max-width: 900px; margin: 0 auto;
  background: var(--ag-bg-light); border-radius: 12px; padding: 46px 48px 48px;
}
@media (max-width: 600px) { .ag-kr__kutu { padding: 28px 20px 32px; } }

.ag-kr__blok { margin-bottom: 34px; }
.ag-kr__blok-bas {
  display: block;
  font-family: var(--ag-font-body);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ag-text-light);
  padding-bottom: 12px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

/* Pozisyon seçimi: hap görünümlü onay kutuları */
.ag-kr__pozlar { display: flex; flex-wrap: wrap; gap: 10px; }
.ag-kr__poz { position: relative; cursor: pointer; }
.ag-kr__poz input { position: absolute; opacity: 0; width: 0; height: 0; }
.ag-kr__poz span {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid rgba(0,0,0,.16); border-radius: 100px;
  font-size: 14px; color: var(--ag-text);
  background: #fff;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.ag-kr__poz:hover span { border-color: var(--ag-accent); color: var(--ag-accent); }
.ag-kr__poz input:checked + span {
  background: var(--ag-primary); border-color: var(--ag-primary);
  color: var(--ag-accent); font-weight: 600;
}
.ag-kr__poz input:focus-visible + span { outline: 2px solid var(--ag-accent); outline-offset: 2px; }

/* Dosya alanları */
.ag-kr__dosyalar { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.ag-dosya { display: block; cursor: pointer; }
.ag-dosya input[type=file] { position: absolute; opacity: 0; width: 0; height: 0; }
.ag-dosya__ad {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--ag-accent); margin-bottom: 8px;
}
.ag-dosya__kutu {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px dashed rgba(0,0,0,.22); border-radius: 8px;
  padding: 10px 12px;
  transition: border-color .2s ease;
}
.ag-dosya:hover .ag-dosya__kutu { border-color: var(--ag-primary); }
.ag-dosya__btn {
  flex: 0 0 auto;
  background: var(--ag-accent); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.ag-dosya:hover .ag-dosya__btn { background: var(--ag-primary); color: var(--ag-accent); }
.ag-dosya__isim {
  flex: 1 1 auto; min-width: 0;
  font-size: 13px; color: var(--ag-text-light);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ag-dosya__isim.dolu { color: var(--ag-accent); font-weight: 600; }
.ag-kr__ipucu { margin: 16px 0 0; font-size: 13px; color: var(--ag-text-light); }

.ag-kr__kutu .ag-form__alan label { color: #5a5a5a; }
.ag-kr__kutu .ag-form__alan input:focus + label,
.ag-kr__kutu .ag-form__alan textarea:focus + label,
.ag-kr__kutu .ag-form__alan input:not(:placeholder-shown) + label,
.ag-kr__kutu .ag-form__alan textarea:not(:placeholder-shown) + label { color: var(--ag-accent); }
.ag-kr__kutu .ag-form__alan input,
.ag-kr__kutu .ag-form__alan textarea,
.ag-kr__kutu .ag-form__alan select { border-bottom-color: rgba(0,0,0,.18); }

/* ============================================================
   ÜRÜN DETAY
   ============================================================ */
.ag-urun { padding: 46px 0 90px; }
.ag-yol--acik { margin-bottom: 34px; font-size: 14px; color: var(--ag-text-light); }
.ag-yol--acik a { color: var(--ag-text-light); }
.ag-yol--acik a:hover { color: var(--ag-accent); }
.ag-yol--acik span[aria-hidden] { margin: 0 8px; color: var(--ag-primary); }

.ag-ud { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
@media (max-width: 900px) { .ag-ud { grid-template-columns: 1fr; gap: 32px; } }

.ag-ud__buyuk {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; border-radius: 12px;
  background: var(--ag-bg-light);
  cursor: zoom-in;
}
.ag-ud__buyuk img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ag-ud__buyuk:hover img { transform: scale(1.04); }
.ag-ud__buyut {
  position: absolute; right: 16px; bottom: 16px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ag-primary);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.ag-ud__buyut::before, .ag-ud__buyut::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--ag-accent); transform: translate(-50%, -50%);
}
.ag-ud__buyut::before { width: 14px; height: 2px; }
.ag-ud__buyut::after { width: 2px; height: 14px; }
.ag-ud__buyuk:hover .ag-ud__buyut { opacity: 1; transform: translateY(0); }
.ag-ud__rozet {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  background: var(--ag-primary); color: var(--ag-accent);
  font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
}

.ag-ud__kucukler { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.ag-ud__kucuk {
  width: 80px; height: 80px; padding: 0;
  border: 2px solid transparent; border-radius: 8px;
  overflow: hidden; background: var(--ag-bg-light); cursor: pointer;
  transition: border-color .2s ease;
}
.ag-ud__kucuk img { width: 100%; height: 100%; object-fit: cover; }
.ag-ud__kucuk:hover { border-color: rgba(0,0,0,.2); }
.ag-ud__kucuk.aktif { border-color: var(--ag-primary); }

.ag-ud__kod {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ag-text-light); margin-bottom: 14px;
}
.ag .ag-ud__ad {
  font-family: var(--ag-font-display);
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.12;
  letter-spacing: 0; margin: 0 0 20px;
}
.ag-ud__fiyat { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.ag-ud__guncel { font-family: var(--ag-font-display); font-size: 34px; color: var(--ag-accent); }
.ag-ud__eski { font-size: 18px; color: var(--ag-text-light); text-decoration: line-through; }
.ag-ud__stok {
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
}
.ag-ud__stok.var { background: rgba(30,150,70,.12); color: #1e7d40; }
.ag-ud__stok.yok { background: rgba(200,40,40,.1); color: #b02a2a; }
.ag-ud__ozet {
  font-size: 16px; line-height: 1.75; color: var(--ag-text);
  padding-bottom: 26px; margin-bottom: 26px;
  border-bottom: 1px solid var(--ag-border);
}

.ag-ud__satir { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ag-ud__adet {
  display: flex; align-items: center;
  border: 1px solid rgba(0,0,0,.16); border-radius: 100px;
  overflow: hidden;
}
.ag-ud__adet button {
  width: 42px; height: 48px; border: 0; background: none;
  font-size: 18px; color: var(--ag-accent); cursor: pointer;
  transition: background .2s ease;
}
.ag-ud__adet button:hover { background: var(--ag-primary); }
.ag-ud__adet input {
  width: 40px; height: 48px; border: 0; background: none; text-align: center;
  font-family: var(--ag-font-body); font-size: 16px; font-weight: 600; color: var(--ag-accent);
  outline: none;
}
.ag-ud__toplam { margin-top: 16px; font-size: 15px; color: var(--ag-text); }
.ag-ud__toplam b { font-family: var(--ag-font-display); font-size: 20px; color: var(--ag-accent); }
.ag-ud__hemen {
  height: 50px; padding: 0 26px;
  background: none; border: 1px solid var(--ag-accent); border-radius: 100px;
  font-family: var(--ag-font-body); font-size: 15px; font-weight: 600;
  color: var(--ag-accent); cursor: pointer; white-space: nowrap;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.ag-ud__hemen:hover { background: var(--ag-accent); color: #fff; }
.ag-ud__wa {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px; padding: 12px 24px;
  border: 1px solid rgba(0,0,0,.16); border-radius: 100px;
  font-size: 15px; font-weight: 600; color: var(--ag-accent);
  transition: background .25s ease, border-color .25s ease;
}
.ag-ud__wa:hover { background: var(--ag-primary); border-color: var(--ag-primary); }

.ag-ud__aciklama { margin-top: 80px; padding-top: 46px; border-top: 1px solid var(--ag-border); }
.ag .ag-ud__acik-bas {
  font-family: var(--ag-font-display);
  font-size: clamp(26px, 2.6vw, 34px); letter-spacing: 0;
  margin: 0 0 24px; position: relative; padding-bottom: 14px;
}
.ag .ag-ud__acik-bas::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 3px; background: var(--ag-primary);
}

/* --- Benzer ürünler --- */
.ag-bolum--benzer { padding-top: 0; }
.ag .ag-benzer__bas {
  font-family: var(--ag-font-display);
  font-size: clamp(26px, 2.6vw, 34px); letter-spacing: 0;
  margin: 0 0 30px; padding-bottom: 14px; position: relative;
}
.ag .ag-benzer__bas::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 3px; background: var(--ag-primary);
}
.ag-benzer { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
@media (max-width: 1100px) { .ag-benzer { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px)  { .ag-benzer { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }

.ag-bz { display: block; }
.ag-bz__gorsel {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; border-radius: 10px; background: var(--ag-bg-light);
}
.ag-bz__gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ag-bz:hover .ag-bz__gorsel img { transform: scale(1.06); }
.ag-bz__ind {
  position: absolute; left: 12px; top: 12px;
  background: var(--ag-primary); color: var(--ag-accent);
  font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 100px;
}
.ag-bz__ic { padding-top: 14px; }
.ag .ag-bz__ic h3 {
  font-family: var(--ag-font-display); font-size: 18px; line-height: 1.3;
  letter-spacing: 0; margin: 0 0 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ag-bz__fiyat { display: block; font-size: 15px; font-weight: 600; color: var(--ag-text); }

/* ============================================================
   SEPET
   ============================================================ */
.ag-sepet { padding-bottom: 100px; }
.ag .ag-sepet__bas {
  font-family: var(--ag-font-display);
  font-size: clamp(34px, 4vw, 54px); letter-spacing: 0;
  margin: 0 0 40px;
}

.ag-sepet__bos { text-align: center; padding: 60px 0 30px; }
.ag-sepet__bos-ik {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--ag-bg-light); color: var(--ag-accent);
  font-size: 32px; margin-bottom: 24px;
}
.ag-sepet__bos p { font-size: 18px; color: var(--ag-text); margin: 0 0 26px; }

.ag-sp { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 40px; align-items: start; }
@media (max-width: 992px) { .ag-sp { grid-template-columns: 1fr; } }

.ag-sp__basliklar,
.ag-sp__satir {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 130px 44px;
  align-items: center; gap: 16px;
}
.ag-sp__basliklar {
  padding-bottom: 14px; border-bottom: 1px solid var(--ag-border);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ag-text-light);
}
.ag-sp__basliklar span:nth-child(2) { text-align: center; }
.ag-sp__basliklar span:nth-child(3) { text-align: right; }
.ag-sp__satir { padding: 22px 0; border-bottom: 1px solid var(--ag-border); }

.ag-sp__urun { display: flex; align-items: center; gap: 18px; min-width: 0; }
.ag-sp__gorsel {
  flex: 0 0 90px; width: 90px; height: 90px;
  border-radius: 8px; overflow: hidden; background: var(--ag-bg-light);
}
.ag-sp__gorsel img { width: 100%; height: 100%; object-fit: cover; }
.ag-sp__bilgi { min-width: 0; }
.ag-sp__ad {
  display: block;
  font-family: var(--ag-font-display); font-size: 19px; line-height: 1.3;
  color: var(--ag-accent); margin-bottom: 6px;
}
.ag-sp__ad:hover { color: var(--ag-primary-koyu, #8a7000); }
.ag-sp__birim { font-size: 14px; color: var(--ag-text); }
.ag-sp__birim s { color: var(--ag-text-light); margin-left: 6px; }

.ag-sp__adet { margin: 0 auto; }
.ag-sp__adet button { height: 42px; width: 36px; }
.ag-sp__adet input { height: 42px; width: 34px; }

.ag-sp__tutar {
  text-align: right;
  font-family: var(--ag-font-display); font-size: 20px; color: var(--ag-accent);
}
.ag-sp__sil { justify-self: end; }
.ag-sp__sil button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.14); background: none;
  font-size: 20px; line-height: 1; color: var(--ag-text-light); cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ag-sp__sil button:hover { background: var(--ag-accent); border-color: var(--ag-accent); color: #fff; }

.ag-sp__alt { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; }
.ag-sp__devam, .ag-sp__yenile {
  display: inline-flex; align-items: center; height: 46px; padding: 0 24px;
  border: 1px solid rgba(0,0,0,.16); border-radius: 100px; background: none;
  font-family: var(--ag-font-body); font-size: 15px; font-weight: 600;
  color: var(--ag-accent); cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.ag-sp__devam:hover, .ag-sp__yenile:hover { background: var(--ag-primary); border-color: var(--ag-primary); }

.ag-sp__ozet {
  background: var(--ag-bg-light); border-radius: 12px;
  padding: 32px 30px 34px; position: sticky; top: 110px;
}
.ag .ag-sp__ozet h2 {
  font-family: var(--ag-font-display); font-size: 24px; letter-spacing: 0;
  margin: 0 0 22px; padding-bottom: 14px; position: relative;
}
.ag .ag-sp__ozet h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 46px; height: 3px; background: var(--ag-primary);
}
.ag-sp__oz-satir {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; font-size: 15px; color: var(--ag-text);
}
.ag-sp__oz-satir--toplam {
  margin-top: 10px; padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.12);
  font-family: var(--ag-font-display); font-size: 22px; color: var(--ag-accent);
}
.ag-sp__kargo-not {
  background: rgba(0,0,0,.04); border-radius: 8px;
  padding: 10px 14px; margin: 6px 0 4px;
  font-size: 13px; color: var(--ag-text-light);
}
.ag-sp__odeme { margin-top: 24px; width: 100%; justify-content: space-between; }

@media (max-width: 700px) {
  .ag-sp__basliklar { display: none; }
  .ag-sp__satir { grid-template-columns: minmax(0, 1fr) 44px; row-gap: 18px; }
  .ag-sp__urun { grid-column: 1; }
  .ag-sp__sil { grid-column: 2; align-self: start; }
  .ag-sp__adet { grid-column: 1; margin: 0; }
  .ag-sp__tutar { grid-column: 2 / span 1; text-align: right; }
}

/* ============================================================
   ÖDEME
   ============================================================ */
.ag-od { align-items: start; }
.ag-od__sol { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.ag-od__kutu { background: var(--ag-bg-light); border-radius: 12px; padding: 34px 34px 12px; }
.ag-od__kutu:last-child { padding-bottom: 34px; }
@media (max-width: 600px) { .ag-od__kutu { padding: 26px 20px 8px; } }

.ag .ag-od__adim {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ag-font-display); font-size: 22px; letter-spacing: 0;
  margin: 0 0 28px;
}
.ag-od__adim span {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--ag-primary); color: var(--ag-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ag-font-body); font-size: 15px; font-weight: 700;
}

.ag-od__kutu .ag-form__alan label { color: #5a5a5a; }
.ag-od__kutu .ag-form__alan input:focus + label,
.ag-od__kutu .ag-form__alan textarea:focus + label,
.ag-od__kutu .ag-form__alan input:not(:placeholder-shown) + label,
.ag-od__kutu .ag-form__alan textarea:not(:placeholder-shown) + label { color: var(--ag-accent); }
.ag-od__kutu .ag-form__alan input,
.ag-od__kutu .ag-form__alan textarea { border-bottom-color: rgba(0,0,0,.18); }

/* --- Ödeme yöntemi kartları --- */
.ag-od__yontemler {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px; margin-bottom: 22px;
}
@media (max-width: 520px) { .ag-od__yontemler { grid-template-columns: 1fr; } }
.ag-oy { display: block; cursor: pointer; }
.ag-oy input { position: absolute; opacity: 0; width: 0; height: 0; }
.ag-oy { height: 100%; }
.ag-oy__ic {
  display: flex; align-items: flex-start; gap: 14px; height: 100%;
  background: #fff; border: 1px solid rgba(0,0,0,.12); border-radius: 10px;
  padding: 18px 20px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ag-oy:hover .ag-oy__ic { border-color: rgba(0,0,0,.3); }
.ag-oy input:checked + .ag-oy__ic { border-color: var(--ag-primary); box-shadow: 0 0 0 1px var(--ag-primary) inset; }
.ag-oy__isaret {
  flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px;
  border: 2px solid rgba(0,0,0,.25); border-radius: 50%;
  position: relative; transition: border-color .2s ease;
}
.ag-oy__isaret::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ag-primary);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s ease;
}
.ag-oy input:checked + .ag-oy__ic .ag-oy__isaret { border-color: var(--ag-accent); }
.ag-oy input:checked + .ag-oy__ic .ag-oy__isaret::after { transform: translate(-50%, -50%) scale(1); }
.ag-oy input:focus-visible + .ag-oy__ic { outline: 2px solid var(--ag-accent); outline-offset: 2px; }
.ag-oy__govde { min-width: 0; }
.ag-oy__ad {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 16px; font-weight: 600; color: var(--ag-accent);
}
.ag-oy__rozet {
  font-style: normal; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
}
.ag-oy__rozet.ind { background: rgba(30,150,70,.14); color: #1e7d40; }
.ag-oy__rozet.ila { background: rgba(200,120,0,.14); color: #a06400; }
.ag-oy__acik { display: block; margin-top: 6px; font-size: 14px; color: var(--ag-text-light); line-height: 1.6; }

.ag-od__havale {
  background: #fff; border-left: 3px solid var(--ag-primary); border-radius: 8px;
  padding: 18px 20px; margin-bottom: 22px;
}
.ag-od__havale strong { display: block; font-size: 15px; color: var(--ag-accent); margin-bottom: 8px; }
.ag-od__havale p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ag-text); }
.ag-od__ipucu { font-size: 15px; color: var(--ag-text-light); margin: 0 0 22px; }

/* --- Özet içindeki ürün listesi --- */
.ag-od__urunler { padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,.1); }
.ag-od__urun { display: flex; align-items: baseline; gap: 10px; padding: 7px 0; font-size: 14px; }
.ag-od__adet { flex: 0 0 auto; font-weight: 700; color: var(--ag-accent); }
.ag-od__ad { flex: 1 1 auto; min-width: 0; color: var(--ag-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ag-od__fiyat { flex: 0 0 auto; font-weight: 600; color: var(--ag-accent); }

.ag-sp__odeme[disabled] { opacity: .5; pointer-events: none; }

/* ============================================================
   SİPARİŞ SONUCU
   ============================================================ */
.ag-st { padding: 80px 0 110px; }
.ag-st__kutu {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--ag-bg-light); border-radius: 14px;
  padding: 58px 48px 54px;
}
@media (max-width: 600px) { .ag-st__kutu { padding: 40px 22px 38px; } }

.ag-st__ikon {
  display: inline-block; position: relative;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--ag-primary); margin-bottom: 28px;
}
.ag-st__ikon::after {
  content: ""; position: absolute; left: 50%; top: 46%;
  width: 32px; height: 17px;
  border-left: 4px solid var(--ag-accent); border-bottom: 4px solid var(--ag-accent);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.ag .ag-st__bas {
  font-family: var(--ag-font-display);
  font-size: clamp(30px, 3.6vw, 44px); letter-spacing: 0;
  margin: 0 0 14px;
}
.ag-st__alt { font-size: 17px; line-height: 1.7; color: var(--ag-text); margin: 0 0 34px; }

.ag-st__bilgi { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 34px; }
@media (max-width: 520px) { .ag-st__bilgi { grid-template-columns: 1fr; } }
.ag-st__kart { background: #fff; border-radius: 10px; padding: 20px 18px; }
.ag-st__kart span {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--ag-text-light); margin-bottom: 8px;
}
.ag-st__kart strong {
  font-family: var(--ag-font-display); font-size: 24px; color: var(--ag-accent);
  word-break: break-word;
}

.ag-st__havale {
  text-align: left;
  background: #fff; border-left: 3px solid var(--ag-primary); border-radius: 8px;
  padding: 20px 22px; margin-bottom: 34px;
}
.ag-st__havale strong { display: block; font-size: 15px; color: var(--ag-accent); margin-bottom: 8px; }
.ag-st__havale p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--ag-text); }

.ag-st__butonlar { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   ANASAYFA BÖLÜM BAŞLIĞI + SAYAÇLAR
   ============================================================ */
.ag-abas {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 48px;
}
.ag .ag-abas__ad {
  font-family: var(--ag-font-display);
  font-size: clamp(30px, 3.6vw, 48px); line-height: 1.1; letter-spacing: 0;
  margin: 0; padding-bottom: 16px; position: relative;
}
.ag .ag-abas__ad::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 3px; background: var(--ag-primary);
}
.ag-abas__tum {
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 24px;
  border: 1px solid rgba(0,0,0,.16); border-radius: 100px;
  font-size: 15px; font-weight: 600; color: var(--ag-accent);
  transition: background .25s ease, border-color .25s ease;
}
.ag-abas__tum i { font-style: normal; transition: transform .25s ease; }
.ag-abas__tum:hover { background: var(--ag-primary); border-color: var(--ag-primary); }
.ag-abas__tum:hover i { transform: translateX(4px); }
.ag-bolum--koyu .ag-abas__tum { border-color: rgba(255,255,255,.35); color: #fff; }
.ag-bolum--koyu .ag-abas__tum:hover { background: var(--ag-primary); border-color: var(--ag-primary); color: var(--ag-accent); }

/* --- Sayaçlar --- */
.ag-sy-izgara { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
@media (max-width: 900px) { .ag-sy-izgara { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 20px; } }
.ag-sy { text-align: center; }
.ag-sy__sayi {
  font-family: var(--ag-font-display);
  font-size: clamp(42px, 5.4vw, 72px); line-height: 1;
  color: var(--ag-primary); margin-bottom: 12px;
}
.ag-sy__etiket {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.72);
}
.ag-bolum:not(.ag-bolum--koyu) .ag-sy__sayi { color: var(--ag-accent); }
.ag-bolum:not(.ag-bolum--koyu) .ag-sy__etiket { color: var(--ag-text-light); }

.ag-ekip--uclu { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .ag-ekip--uclu { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .ag-ekip--uclu { grid-template-columns: 1fr; } }

/* --- Referans / marka logo şeridi (otomatik akan) --- */
.ag-lserit {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ag-lserit__ray {
  display: flex; align-items: center; gap: 60px; width: max-content;
  animation: ag-lkay var(--ag-lsure, 30s) linear infinite;
}
.ag-lserit:hover .ag-lserit__ray { animation-play-state: paused; }
@keyframes ag-lkay { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ag-lserit__ray { animation: none; } }

.ag-lserit__oge {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 170px; height: 100px;
}
.ag-lserit__oge img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1); opacity: .55;
  transition: filter .3s ease, opacity .3s ease;
}
.ag-lserit__oge:hover img { filter: grayscale(0); opacity: 1; }
.ag-lserit__oge span {
  font-family: var(--ag-font-display); font-size: 22px;
  color: var(--ag-text-light); white-space: nowrap;
}

/* --- Sertifikalar: anasayfada 4'lü grid --- */
.ag-logolar--dortlu { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .ag-logolar--dortlu { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ============================================================
   ANASAYFA — BÖLÜM VARYANTLARI
   ============================================================ */

/* --- Blog: 1 büyük + 3 küçük --- */
.ag-bg { display: grid; grid-template-columns: .46fr 1fr; gap: 40px; align-items: stretch; }
.ag-bg__one { display: flex; flex-direction: column; }
.ag-bg__one-ic { display: flex; flex-direction: column; flex: 0 0 auto; }

@media (max-width: 900px) { .ag-bg { grid-template-columns: 1fr; gap: 30px; } }


.ag-bg__one-gorsel {
  border-radius: 14px; overflow: hidden;
  background: var(--ag-bg-light); margin-bottom: 20px;
  flex: 1 1 auto; min-height: 200px;
}
.ag-bg__one-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ag-bg__one:hover .ag-bg__one-gorsel img { transform: scale(1.05); }
.ag .ag-bg__one-baslik {
  font-family: var(--ag-font-display);
  font-size: clamp(22px, 2vw, 27px); line-height: 1.25; letter-spacing: 0;
  margin: 10px 0 10px;
}
.ag-bg__one-ozet { font-size: 15px; line-height: 1.65; color: var(--ag-text); margin: 0 0 16px; }
.ag-bg__devam {
  display: inline-block; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ag-accent); padding-bottom: 4px;
  border-bottom: 2px solid var(--ag-primary);
}

.ag-bg__yan { display: flex; flex-direction: column; gap: 20px; }
.ag-bg__kucuk {
  display: grid; grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px; align-items: center;
  padding-bottom: 20px; border-bottom: 1px solid var(--ag-border);
}
.ag-bg__yan .ag-bg__kucuk:last-child { border-bottom: 0; padding-bottom: 0; }
.ag-bg__kucuk-gorsel { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; background: var(--ag-bg-light); }
.ag-bg__kucuk-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ag-bg__kucuk:hover .ag-bg__kucuk-gorsel img { transform: scale(1.06); }
.ag .ag-bg__kucuk-ic h3 {
  font-family: var(--ag-font-display); font-size: 19px; line-height: 1.3;
  letter-spacing: 0; margin: 6px 0 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 480px) { .ag-bg__kucuk { grid-template-columns: 96px minmax(0, 1fr); gap: 14px; } }

/* --- Duyurular: koyu zeminde tarih + satır listesi --- */
.ag-duy { border-top: 1px solid rgba(255,255,255,.16); }
.ag-duy__satir {
  display: grid; grid-template-columns: 84px minmax(0, 1fr) 44px;
  gap: 26px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.16);
  transition: padding-left .3s ease;
}
.ag-duy__satir:hover { padding-left: 12px; }
.ag-duy__tarih { text-align: center; }
.ag-duy__tarih strong {
  display: block; font-family: var(--ag-font-display);
  font-size: 38px; line-height: 1; color: var(--ag-primary);
}
.ag-duy__tarih em {
  display: block; margin-top: 4px; font-style: normal;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.ag .ag-duy__govde h3 {
  font-family: var(--ag-font-display); font-size: 22px; line-height: 1.3;
  letter-spacing: 0; margin: 0; color: #fff;
  transition: color .25s ease;
}
.ag-duy__satir:hover .ag-duy__govde h3 { color: var(--ag-primary); }
.ag-duy__govde p {
  margin: 8px 0 0; font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,.62);
}
.ag-duy__ok {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.ag-duy__satir:hover .ag-duy__ok { background: var(--ag-primary); border-color: var(--ag-primary); color: var(--ag-accent); }
@media (max-width: 620px) {
  .ag-duy__satir { grid-template-columns: 64px minmax(0, 1fr); gap: 16px; }
  .ag-duy__ok { display: none; }
  .ag-duy__tarih strong { font-size: 28px; }
}

/* --- Ürünler: 4'lü kart ızgarası --- */
.ag-benzer--ana { grid-auto-flow: row; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: visible; }
@media (max-width: 1100px) { .ag-benzer--ana { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px)  { .ag-benzer--ana { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }

/* --- Foto galeri: eşit ızgara --- */
.ag-gl-izgara--ana { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 780px) { .ag-gl-izgara--ana { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .ag-gl-izgara--ana { grid-template-columns: 1fr; } }

/* --- Koyu zeminde video kartları --- */
.ag-bolum--koyu .ag-vd__ad { color: #fff; }
.ag-bolum--koyu .ag-vd:hover .ag-vd__ad { color: var(--ag-primary); }

/* --- Sertifika / dosya ızgaraları satırı tam doldursun --- */
.ag-logolar--dortlu { grid-template-columns: repeat(var(--ag-sutun, 4), minmax(0, 1fr)); }
@media (max-width: 900px) { .ag-logolar--dortlu { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ag-ds-izgara--ana { grid-template-columns: repeat(var(--ag-sutun, 2), minmax(0, 1fr)); }
@media (max-width: 780px) { .ag-ds-izgara--ana { grid-template-columns: 1fr; } }

.ag-bz__rozet {
  position: absolute; right: 12px; top: 12px;
  background: var(--ag-primary); color: var(--ag-accent);
  font-family: var(--ag-font-body); font-size: 14px; font-weight: 700;
  padding: 7px 14px; border-radius: 100px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  white-space: nowrap;
}

/* Öne çıkan blog: yazılar görselin üstünde */
.ag-bg__one { position: relative; border-radius: 14px; overflow: hidden; min-height: 100%; }
.ag-bg__one-gorsel { position: absolute; inset: 0; margin: 0; border-radius: 0; min-height: 0; }
.ag-bg__one-gorsel img { width: 100%; height: 100%; object-fit: cover; }
.ag-bg__one::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,0) 72%);
}
.ag-bg__one-ic {
  position: relative; z-index: 2;
  margin-top: auto; padding: 28px 26px 26px;
  display: flex; flex-direction: column;
}
.ag-bg__one .ag-yazi-meta,
.ag-bg__one .ag-yazi-tarih { color: rgba(255,255,255,.78); }
.ag-bg__one .ag-rozet { background: var(--ag-primary); color: var(--ag-accent); }
.ag .ag-bg__one-baslik { color: #fff; }
.ag-bg__one:hover .ag-bg__one-baslik { color: var(--ag-primary); }
.ag-bg__one-ozet { color: rgba(255,255,255,.8); }
.ag-bg__devam { color: #fff; border-bottom-color: var(--ag-primary); }
