/* ============================================================
   AntalyaGuru — Tasarım Sistemi (harici CSS)
   ASP.NET MVC entegrasyonu için klasik stylesheet.
   ============================================================ */

/* ---------- Tasarım Tokenları ---------- */
:root {
  /* Renk paleti */
  --ag-ink:        #0a2730;   /* ana metin / koyu */
  --ag-ink-soft:   #27383b;
  --ag-muted:      #5f7278;   /* ikincil metin */
  --ag-faint:      #9aa7a9;
  --ag-line:       #ece4d3;   /* kenarlık */
  --ag-line-soft:  #f1ece0;
  --ag-bg:         #faf6ee;   /* sayfa zemini */
  --ag-surface:    #ffffff;   /* kart zemini */

  --ag-primary:        #0c7d74;  /* turkuaz (koyu) */
  --ag-primary-bright: #1fd1c0;  /* turkuaz (parlak) */
  --ag-primary-tint:   #e3f5f2;  /* açık turkuaz zemin */
  --ag-accent:         #ff6a3d;  /* mercan / gün batımı */
  --ag-gold:           #ffb020;  /* yıldız / altın */
  --ag-whatsapp:       #25d366;

  --ag-grad: linear-gradient(135deg, var(--ag-primary), var(--ag-primary-bright));

  /* Tipografi */
  --ag-font-head: 'Bricolage Grotesque', sans-serif;
  --ag-font-body: 'Manrope', sans-serif;

  /* Biçim */
  --ag-radius-sm: 11px;
  --ag-radius:    16px;
  --ag-radius-lg: 22px;
  --ag-shadow:    0 18px 36px rgba(10,39,48,.12);
  --ag-shadow-sm: 0 6px 16px rgba(10,39,48,.22);
  --ag-maxw:      1240px;
}

/* ---------- Reset & Temel ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--ag-font-body);
  color: var(--ag-ink);
  background: var(--ag-bg);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--ag-primary-bright); color: #fff; }
input, select, textarea { font-family: var(--ag-font-body); }
input::placeholder, textarea::placeholder { color: var(--ag-faint); }

.ag-container { max-width: var(--ag-maxw); margin: 0 auto; padding: 0 24px; }
.ag-head { font-family: var(--ag-font-head); font-weight: 800; letter-spacing: -.02em; }

/* ---------- Üst Bilgi Barı ---------- */
.ag-utilbar { background: var(--ag-ink); color: #cfe6e3; font-size: 13px; font-weight: 500; }
.ag-utilbar__inner { height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ag-utilbar a { color: #fff; opacity: .8; font-weight: 700; }
.ag-utilbar .ag-region { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Header ---------- */
.ag-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,246,238,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ag-line);
}
.ag-header__inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ag-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ag-logo__mark {
  width: 46px; height: 46px; border-radius: 14px; background: var(--ag-grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(17,179,164,.4);
}
.ag-logo__name { font-family: var(--ag-font-head); font-weight: 800; font-size: 22px; letter-spacing: -.02em; line-height: 1; }
.ag-logo__name span { color: var(--ag-primary); }
.ag-logo__tag { display: block; font-size: 11px; font-weight: 600; color: var(--ag-muted); letter-spacing: .13em; margin-top: 3px; text-transform: uppercase; }
.ag-nav { display: flex; align-items: center; gap: 2px; font-weight: 600; font-size: 14.5px; }
.ag-nav a { padding: 9px 12px; border-radius: 10px; }
.ag-nav a:hover { background: #efe8d8; }
.ag-nav a.is-active { color: var(--ag-primary); background: var(--ag-primary-tint); }
.ag-header__actions { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.ag-iconbtn {
  width: 42px; height: 42px; border-radius: 11px; border: 1px solid #ddd2bd;
  background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.ag-iconbtn:hover { border-color: var(--ag-primary); }
.ag-burger { display: none; }

/* ---------- Butonlar ---------- */
.ag-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--ag-radius-sm); cursor: pointer;
  font-family: var(--ag-font-body); font-weight: 700; font-size: 14px;
  padding: 11px 18px; transition: filter .15s, background .15s;
}
.ag-btn--dark { background: var(--ag-ink); color: #fff; box-shadow: var(--ag-shadow-sm); }
.ag-btn--dark:hover { background: var(--ag-primary); }
.ag-btn--primary { background: var(--ag-grad); color: #fff; font-weight: 800; box-shadow: 0 10px 24px rgba(17,179,164,.4); }
.ag-btn--primary:hover { filter: brightness(1.06); }
.ag-btn--lg { padding: 16px 30px; font-size: 16px; border-radius: 13px; }
.ag-btn--soft { background: var(--ag-primary-tint); color: var(--ag-primary); font-weight: 700; }
.ag-btn--soft:hover { background: var(--ag-primary); color: #fff; }

/* ---------- Sayfa Hero (koyu) ---------- */
.ag-pagehero { position: relative; overflow: hidden; background: var(--ag-ink); }
.ag-pagehero__glow { position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(31,209,192,.4), transparent 70%); }
.ag-pagehero__inner { position: relative; padding: 48px 24px 52px; text-align: center; }
.ag-pagehero h1 { font-family: var(--ag-font-head); font-weight: 800; font-size: 42px; letter-spacing: -.025em; color: #fff; line-height: 1.05; text-wrap: balance; }
.ag-pagehero p { color: rgba(255,255,255,.85); font-size: 17px; font-weight: 500; margin: 14px auto 0; max-width: 560px; text-wrap: pretty; }
.ag-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 100px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-weight: 600; font-size: 13px; margin-bottom: 18px;
}

/* ---------- Form düzeni ---------- */
.ag-form-layout { padding: 36px 24px 0; display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.ag-card { background: var(--ag-surface); border: 1px solid var(--ag-line); border-radius: var(--ag-radius-lg); }
.ag-card--pad { padding: 34px; }

.ag-step { margin-bottom: 34px; }
.ag-step + .ag-step { padding-top: 30px; border-top: 1px solid var(--ag-line-soft); }
.ag-step__head { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.ag-step__num { width: 30px; height: 30px; border-radius: 50%; background: var(--ag-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; font-family: var(--ag-font-head); }
.ag-step__title { font-family: var(--ag-font-head); font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.ag-step__hint { color: var(--ag-muted); font-size: 14px; font-weight: 500; margin: 0 0 18px 41px; }

/* Form alanları */
.ag-field-stack { display: flex; flex-direction: column; gap: 18px; }
.ag-label { display: block; font-size: 13px; font-weight: 700; color: #3c4f53; margin-bottom: 7px; }
.ag-req { color: var(--ag-accent); }
.ag-input, .ag-textarea, .ag-select {
  width: 100%; border: 1px solid #ddd2bd; border-radius: 12px; padding: 13px 15px;
  font-size: 15px; font-weight: 500; color: var(--ag-ink); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.ag-select { font-weight: 600; cursor: pointer; }
.ag-textarea { resize: vertical; }
.ag-input:focus, .ag-textarea:focus, .ag-select:focus, .ag-inputgroup:focus-within {
  outline: none; border-color: var(--ag-primary); box-shadow: 0 0 0 3px rgba(12,125,116,.12);
}
.ag-inputgroup { display: flex; align-items: center; gap: 10px; border: 1px solid #ddd2bd; border-radius: 12px; padding: 0 15px; }
.ag-inputgroup input { flex: 1; border: none; outline: none; padding: 13px 0; font-size: 15px; font-weight: 500; color: var(--ag-ink); background: transparent; }
.ag-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ag-col-span-2 { grid-column: 1 / 3; }

/* Kategori seçim kartları */
.ag-choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.ag-choice { cursor: pointer; border: 2px solid var(--ag-line); background: #fff; border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 9px; }
.ag-choice:hover { border-color: #bfe9e3; }
.ag-choice.is-selected { border-color: var(--ag-primary); background: var(--ag-primary-tint); }
.ag-choice input { display: none; }
.ag-choice span { font-weight: 700; font-size: 14px; }

/* Dropzone */
.ag-dropzone { border: 2px dashed #cfd9d0; border-radius: var(--ag-radius); padding: 38px; text-align: center; background: #fbfaf6; cursor: pointer; }
.ag-dropzone:hover { border-color: var(--ag-primary); background: #f4f9f8; }
.ag-dropzone__icon { display: inline-flex; width: 56px; height: 56px; border-radius: var(--ag-radius); background: var(--ag-primary-tint); align-items: center; justify-content: center; margin-bottom: 14px; }
.ag-dropzone__title { display: block; font-family: var(--ag-font-head); font-weight: 700; font-size: 17px; margin-bottom: 5px; }
.ag-dropzone__sub { display: block; color: var(--ag-muted); font-size: 14px; font-weight: 500; }

/* Onay & gönder */
.ag-check { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; font-weight: 600; color: #3c4f53; margin-bottom: 18px; cursor: pointer; }
.ag-check input { width: 18px; height: 18px; accent-color: var(--ag-primary); margin-top: 1px; }
.ag-check a { color: var(--ag-primary); text-decoration: underline; }
.ag-submit-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ag-note { color: var(--ag-muted); font-size: 13.5px; font-weight: 600; }

/* ---------- Sidebar ---------- */
.ag-aside { position: sticky; top: 98px; display: flex; flex-direction: column; gap: 18px; }
.ag-promo { background: var(--ag-ink); border-radius: 20px; padding: 24px; color: #fff; }
.ag-promo h3 { font-family: var(--ag-font-head); font-weight: 800; font-size: 18px; margin-bottom: 18px; }
.ag-promo__list { display: flex; flex-direction: column; gap: 16px; }
.ag-promo__item { display: flex; gap: 13px; }
.ag-promo__ico { flex: 0 0 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; }
.ag-promo__item b { display: block; font-weight: 700; font-size: 14.5px; }
.ag-promo__item p { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; margin-top: 2px; line-height: 1.45; }
.ag-help { background: #fff; border: 1px solid var(--ag-line); border-radius: 20px; padding: 22px; }
.ag-help b { display: block; font-family: var(--ag-font-head); font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.ag-help p { color: var(--ag-muted); font-size: 13.5px; font-weight: 500; line-height: 1.5; margin-bottom: 14px; }

/* ---------- Footer ---------- */
.ag-footer { background: #081f25; color: #a9c8c4; margin-top: 64px; }
.ag-footer__inner { padding: 48px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ag-footer__brand { display: flex; align-items: center; gap: 12px; }
.ag-footer__mark { width: 42px; height: 42px; border-radius: 12px; background: var(--ag-grad); display: flex; align-items: center; justify-content: center; }
.ag-footer__name { font-family: var(--ag-font-head); font-weight: 800; font-size: 20px; color: #fff; }
.ag-footer__name span { color: var(--ag-primary-bright); }
.ag-footer__copy { font-size: 13px; font-weight: 500; color: #7da3a0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ag-form-layout { grid-template-columns: 1fr; }
  .ag-aside { position: static; }
}
@media (max-width: 940px) {
  .ag-nav, .ag-header__actions { display: none; }
  .ag-burger { display: flex; }
}
@media (max-width: 600px) {
  .ag-pagehero h1 { font-size: 30px; }
  .ag-grid-2 { grid-template-columns: 1fr; }
  .ag-col-span-2 { grid-column: 1; }
  .ag-card--pad { padding: 22px; }
}

/* ============================================================
   HEADER — megamenu / arama / mobil çekmece
   ============================================================ */
.ag-nav__btn { display: inline-flex; align-items: center; gap: 5px; padding: 9px 12px; border-radius: 10px; border: none; background: none; cursor: pointer; font-family: var(--ag-font-body); font-weight: 600; font-size: 14.5px; color: var(--ag-ink); }
.ag-nav__btn:hover, .ag-nav__btn.is-open { background: var(--ag-primary-tint); color: var(--ag-primary); }
.ag-panel { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--ag-line); box-shadow: 0 24px 44px rgba(8,32,38,.14); z-index: 65; display: none; }
.ag-panel.is-open { display: block; }
.ag-mega { max-width: var(--ag-maxw); margin: 0 auto; padding: 30px 24px; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 40px; }
.ag-mega__title { display: block; font-family: var(--ag-font-head); font-weight: 800; font-size: 16px; letter-spacing: -.01em; margin-bottom: 14px; }
.ag-mega__subs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.ag-mega__subs a, .ag-mega__regions a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 11px; border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--ag-ink-soft); }
.ag-mega__regions a { justify-content: flex-start; gap: 9px; }
.ag-mega__subs a:hover, .ag-mega__regions a:hover { background: #f4f9f8; color: var(--ag-primary); }
.ag-mega__subs span { color: var(--ag-faint); font-size: 12.5px; }
.ag-mega__feat { position: relative; border-radius: var(--ag-radius); overflow: hidden; min-height: 200px; display: flex; align-items: flex-end; background: #0c5b63; }
.ag-mega__feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ag-mega__feat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,32,38,0) 35%, rgba(8,32,38,.82) 100%); }
.ag-mega__feat > div { position: relative; padding: 20px; z-index: 1; }
.ag-tag { display: inline-block; padding: 4px 11px; border-radius: 100px; background: var(--ag-accent); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 9px; }
.ag-mega__feat b { display: block; font-family: var(--ag-font-head); font-weight: 700; font-size: 18px; color: #fff; line-height: 1.2; }
.ag-mega__feat p { color: rgba(255,255,255,.82); font-size: 13px; font-weight: 500; margin-top: 4px; }
.ag-search { max-width: 760px; margin: 0 auto; padding: 26px 24px; }
.ag-search__bar { display: flex; align-items: center; gap: 8px; background: var(--ag-bg); border: 1px solid #ddd2bd; border-radius: 14px; padding: 7px; }
.ag-search__bar > div { flex: 1; display: flex; align-items: center; gap: 11px; padding: 9px 14px; min-width: 0; }
.ag-search__bar input { flex: 1; min-width: 0; border: none; outline: none; font-size: 16px; font-weight: 600; color: var(--ag-ink); background: transparent; font-family: var(--ag-font-body); }
.ag-chips { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 16px; }
.ag-chips > span { font-size: 13px; font-weight: 700; color: var(--ag-muted); }
.ag-chips a { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 100px; background: #f4f1e8; font-size: 13px; font-weight: 600; color: #3c4f53; }
.ag-chips a:hover { background: var(--ag-primary-tint); color: var(--ag-primary); }
.ag-backdrop { position: fixed; inset: 0; z-index: 45; display: none; }
.ag-backdrop.is-open { display: block; }
.ag-drawer { position: fixed; inset: 0; z-index: 90; display: none; }
.ag-drawer.is-open { display: block; }
.ag-drawer__scrim { position: absolute; inset: 0; background: rgba(8,32,38,.5); }
.ag-drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: var(--ag-bg); display: flex; flex-direction: column; box-shadow: -12px 0 40px rgba(8,32,38,.3); }
.ag-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--ag-line); }
.ag-drawer__body { flex: 1; overflow-y: auto; padding: 18px 20px; }
.ag-drawer__body a { display: flex; align-items: center; justify-content: space-between; padding: 13px 12px; border-radius: 11px; font-size: 15.5px; font-weight: 700; color: var(--ag-ink); }
.ag-drawer__body a:hover { background: var(--ag-line); }
.ag-drawer__foot { padding: 18px 20px; border-top: 1px solid var(--ag-line); }
.ag-eyebrow-mob { display: block; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ag-faint); margin: 6px 0 8px; }
/* Mobil kategori akordeonu */
.ag-macc__head { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 13px 12px; border: none; background: none; cursor: pointer; border-radius: 11px; font-family: var(--ag-font-body); font-size: 15.5px; font-weight: 700; color: var(--ag-ink); }
.ag-macc__head:hover { background: var(--ag-line); }
.ag-macc__chev { transition: transform .2s ease; flex: none; }
.ag-macc.is-open > .ag-macc__head .ag-macc__chev { transform: rotate(180deg); }
.ag-macc__body { display: none; padding: 2px 0 6px 12px; margin-left: 8px; border-left: 2px solid var(--ag-line); }
.ag-macc.is-open > .ag-macc__body { display: block; }
.ag-macc__body a { padding: 10px 12px; font-size: 14.5px; font-weight: 600; color: var(--ag-ink-soft); }
.ag-macc__body a.ag-macc__all { color: var(--ag-primary); font-weight: 700; }
.ag-macc__count { color: var(--ag-faint); font-size: 12.5px; font-weight: 600; }

/* ============================================================
   ANASAYFA
   ============================================================ */
.ag-hero { position: relative; overflow: hidden; background: #0c5b63; }
.ag-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: agZoom 12s ease-out forwards; }
@keyframes agZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.ag-hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,32,38,.5) 0%, rgba(8,32,38,.2) 35%, rgba(8,32,38,.8) 100%); }
.ag-hero__inner { position: relative; padding: 80px 24px 0; }
.ag-hero__copy { max-width: 740px; }
.ag-hero h1 { font-family: var(--ag-font-head); font-weight: 800; color: #fff; font-size: 60px; line-height: 1.02; letter-spacing: -.03em; margin-top: 22px; text-wrap: balance; }
.ag-hero p { color: rgba(255,255,255,.9); font-size: 19px; line-height: 1.55; margin-top: 20px; max-width: 580px; text-wrap: pretty; }
.ag-hero__search { margin-top: 38px; background: rgba(255,255,255,.97); border-radius: 18px; padding: 10px; display: flex; align-items: center; gap: 8px; max-width: 920px; box-shadow: 0 24px 60px rgba(8,32,38,.35); }
.ag-hero__search .ag-seg { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-right: 1px solid var(--ag-line); }
.ag-hero__search select, .ag-hero__search input { border: none; outline: none; background: transparent; font-family: var(--ag-font-body); font-size: 15px; color: var(--ag-ink); width: 100%; }
.ag-hero__search select { font-weight: 700; cursor: pointer; }
.ag-hero__search .ag-seg--cat { flex: 0 0 200px; }
.ag-hero__search .ag-seg--reg { flex: 0 0 170px; }
.ag-hero__search .ag-seg--q { flex: 1; border-right: none; }
.ag-hero__search button { flex: 0 0 auto; padding: 15px 30px; border: none; border-radius: 12px; background: var(--ag-grad); color: #fff; font-family: var(--ag-font-body); font-weight: 800; font-size: 15px; cursor: pointer; box-shadow: 0 8px 20px rgba(17,179,164,.45); }
.ag-hero__pop { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.ag-hero__pop > span { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600; }
.ag-hero__pop a { padding: 6px 14px; border-radius: 100px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 13px; font-weight: 600; }
.ag-hero__pop a:hover { background: rgba(255,255,255,.25); }
.ag-stats { position: relative; background: rgba(8,32,38,.55); border-top: 1px solid rgba(255,255,255,.12); margin-top: 84px; }
.ag-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.ag-stat { padding: 22px 12px; display: flex; align-items: center; gap: 14px; border-right: 1px solid rgba(255,255,255,.1); }
.ag-stat:last-child { border-right: none; }
.ag-stat b { font-family: var(--ag-font-head); font-weight: 800; font-size: 34px; color: #fff; }
.ag-stat span { color: rgba(255,255,255,.75); font-size: 14px; font-weight: 600; line-height: 1.25; }

.ag-section { padding: 64px 24px 0; }
.ag-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.ag-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--ag-primary); margin-bottom: 10px; }
.ag-eyebrow--accent { color: var(--ag-accent); }
.ag-section h2 { font-family: var(--ag-font-head); font-weight: 800; font-size: 38px; letter-spacing: -.02em; line-height: 1.05; }
.ag-seemore { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ag-primary); font-size: 15px; white-space: nowrap; }

.ag-cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ag-cat { background: #fff; border: 1px solid var(--ag-line); border-radius: 18px; padding: 22px 18px; display: flex; flex-direction: column; gap: 14px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.ag-cat:hover { transform: translateY(-5px); box-shadow: var(--ag-shadow); border-color: #bfe9e3; }
.ag-cat__ico { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.ag-cat b { display: block; font-family: var(--ag-font-head); font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.ag-cat span { display: block; color: var(--ag-muted); font-size: 13px; font-weight: 600; margin-top: 4px; }
/* Arkaplan görselli kategori kartı (anasayfa) */
.ag-cat--photo { position: relative; padding: 0; min-height: 168px; border: none; background-size: cover; background-position: center; display: flex; align-items: flex-end; overflow: hidden; }
.ag-cat--photo .ag-cat__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,32,38,.85), rgba(8,32,38,.25) 52%, rgba(8,32,38,.05)); }
.ag-cat--photo .ag-cat__cap { position: relative; padding: 16px 18px; width: 100%; }
.ag-cat--photo .ag-cat__cap b { display: block; font-family: var(--ag-font-head); font-weight: 700; font-size: 17px; letter-spacing: -.01em; color: #fff; }
.ag-cat--photo .ag-cat__cap span { display: block; margin-top: 3px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.ag-cat--photo:hover { border-color: transparent; }

.ag-banner { position: relative; border-radius: var(--ag-radius-lg); overflow: hidden; height: 248px; background: var(--ag-ink); }
.ag-banner__slide { position: absolute; inset: 0; display: none; align-items: center; }
.ag-banner__slide.is-active { display: flex; }
.ag-banner__slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ag-banner__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,32,38,.88) 0%, rgba(8,32,38,.5) 52%, rgba(8,32,38,.08) 100%); }
.ag-banner__copy { position: relative; z-index: 1; padding: 0 52px; max-width: 580px; }
.ag-banner__copy h3 { font-family: var(--ag-font-head); font-weight: 800; font-size: 28px; color: #fff; letter-spacing: -.02em; line-height: 1.08; }
.ag-banner__copy p { color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500; margin-top: 7px; }
.ag-banner__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; }
.ag-banner__nav--prev { left: 14px; } .ag-banner__nav--next { right: 14px; }
.ag-banner__dots { position: absolute; bottom: 16px; right: 24px; display: flex; gap: 7px; z-index: 2; }
.ag-banner__dots button { width: 8px; height: 8px; border-radius: 100px; border: none; background: rgba(255,255,255,.45); cursor: pointer; transition: all .25s; padding: 0; }
.ag-banner__dots button.is-active { width: 24px; background: #fff; }
.ag-adlabel { display: block; text-align: right; font-size: 11px; font-weight: 600; color: var(--ag-faint); margin-top: 7px; padding-right: 4px; }

/* Sponsorlu üst banner — JS'siz şerit (kategori/bölge/faceted) */
.ag-spbanner { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.ag-spbanner__card { display: flex; align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--ag-line); border-radius: 16px; overflow: hidden; min-height: 116px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.ag-spbanner__card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(10,39,48,.13); border-color: var(--ag-primary-bright); }
.ag-spbanner__img { flex: 0 0 116px; position: relative; overflow: hidden; }
.ag-spbanner__img img { width: 100%; height: 100%; object-fit: cover; }
.ag-spbanner__ph { display: block; width: 100%; height: 100%; background: var(--ag-grad); }
.ag-spbanner__body { flex: 1; min-width: 0; padding: 13px 16px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.ag-spbanner__tag { display: inline-block; align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ag-accent); }
.ag-spbanner__name { font-family: var(--ag-font-head); font-weight: 800; font-size: 17px; color: var(--ag-ink); line-height: 1.15; }
.ag-spbanner__desc { font-size: 13px; font-weight: 500; color: var(--ag-ink-soft); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* Sponsorlu satır (arama üst sıra) + tekil sponsorlu kart sargısı (benzer işletmeler) */
.ag-sponsored-row { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px dashed var(--ag-line); }
.ag-sponsored-row__label, .ag-spwrap__label { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ag-accent); margin-bottom: 8px; }
.ag-spwrap { display: flex; flex-direction: column; }

.ag-cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.ag-spcard { display: block; background: #fff; border: 1px solid var(--ag-line); border-radius: 20px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.ag-spcard:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(10,39,48,.15); }
.ag-spcard__img { position: relative; height: 140px; overflow: hidden; background: #0c5b63; }
.ag-spcard__img img { width: 100%; height: 100%; object-fit: cover; }
.ag-badge-sp { position: absolute; top: 11px; left: 11px; padding: 4px 10px; border-radius: 7px; background: rgba(10,39,48,.78); color: #ffd23f; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.ag-spcard__body { padding: 16px 18px 18px; position: relative; }
.ag-spcard__logo { position: absolute; top: -22px; left: 18px; width: 44px; height: 44px; border-radius: 12px; color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ag-font-head); font-weight: 800; font-size: 18px; border: 3px solid #fff; }
.ag-rating { display: inline-flex; align-items: center; gap: 4px; color: #c07f15; font-weight: 800; font-size: 13px; }
.ag-spcard h3 { font-family: var(--ag-font-head); font-weight: 700; font-size: 16.5px; letter-spacing: -.01em; line-height: 1.25; margin: 6px 0 8px; }
.ag-spcard__area { display: inline-flex; align-items: center; gap: 6px; color: var(--ag-muted); font-size: 13px; font-weight: 600; }

/* Yatay carousel (öne çıkan işletmeler) */
.ag-carousel { position: relative; }
.ag-carousel__track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 6px 2px 8px; scrollbar-width: none; }
.ag-carousel__track::-webkit-scrollbar { display: none; }
.ag-carousel__track > .ag-spcard { flex: 0 0 calc((100% - 54px) / 4); scroll-snap-align: start; display: flex; flex-direction: column; }
.ag-carousel__track > .ag-spcard > .ag-spcard__img { flex: 0 0 140px; }
.ag-carousel__track > .ag-spcard > .ag-spcard__body { flex: 1 1 auto; }
.ag-carousel__nav { display: flex; gap: 10px; }
.ag-carbtn { width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border: 1px solid var(--ag-line); background: #fff; color: #0a2730; transition: background .2s, color .2s, border-color .2s, opacity .2s; }
.ag-carbtn:hover:not(:disabled) { border-color: #0a2730; }
.ag-carbtn--next { background: #0a2730; color: #fff; border-color: #0a2730; }
.ag-carbtn--next:hover:not(:disabled) { background: #103642; }
.ag-carbtn:disabled { opacity: .35; cursor: default; }
@media (max-width: 1024px) { .ag-carousel__track > .ag-spcard { flex: 0 0 calc((100% - 18px) / 2); } }
@media (max-width: 640px) { .ag-carousel__track > .ag-spcard { flex: 0 0 84%; } }

/* Blog / rehber kartları (anasayfa + /blog) */
.ag-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.ag-blogcard { display: block; }
.ag-blogcard__img { position: relative; display: block; height: 210px; border-radius: 18px; overflow: hidden; background: #0c5b63; }
.ag-blogcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.ag-blogcard:hover .ag-blogcard__img img { transform: scale(1.04); }
.ag-blogcard__tag { position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.92); color: #0a2730; font-size: 12px; font-weight: 700; }
.ag-blogcard__body { padding: 16px 2px 0; }
.ag-blogcard__meta { display: block; color: var(--ag-muted); font-size: 12.5px; font-weight: 600; }
.ag-blogcard h3 { font-family: var(--ag-font-head); font-weight: 700; font-size: 19px; letter-spacing: -.01em; line-height: 1.25; margin: 8px 0 8px; color: var(--ag-ink, #0a2730); }
.ag-blogcard p { color: var(--ag-muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) { .ag-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ag-blog-grid { grid-template-columns: 1fr; } }

.ag-band { position: relative; border-radius: 26px; overflow: hidden; background: #0c5b63; }
.ag-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.ag-band__inner { position: relative; padding: 54px 48px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.ag-band h2 { font-family: var(--ag-font-head); font-weight: 800; font-size: 34px; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.ag-band p { color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.6; margin-top: 14px; max-width: 440px; text-wrap: pretty; }
.ag-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ag-perk { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 20px; }
.ag-perk__ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }
.ag-perk b { display: block; font-family: var(--ag-font-head); font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 5px; }
.ag-perk span { display: block; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 500; line-height: 1.45; }

.ag-mosaic { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; height: 430px; }
.ag-mosaic a { position: relative; border-radius: 18px; overflow: hidden; background: #0c5b63; }
.ag-mosaic a:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.ag-mosaic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ag-mosaic a:hover img { transform: scale(1.06); }
.ag-mosaic a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,32,38,0) 40%, rgba(8,32,38,.8) 100%); }
.ag-mosaic__cap { position: absolute; left: 18px; bottom: 16px; z-index: 1; }
.ag-mosaic__cap b { display: block; font-family: var(--ag-font-head); font-weight: 700; font-size: 20px; color: #fff; }
.ag-mosaic__cap span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; margin-top: 3px; }

.ag-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ag-post { display: block; }
.ag-post__img { position: relative; height: 220px; border-radius: 18px; overflow: hidden; background: #0c5b63; margin-bottom: 16px; }
.ag-post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ag-post:hover .ag-post__img img { transform: scale(1.05); }
.ag-post__cat { position: absolute; top: 13px; left: 13px; padding: 6px 12px; border-radius: 100px; background: rgba(255,255,255,.94); color: var(--ag-primary); font-size: 12px; font-weight: 700; }
.ag-post__meta { display: block; color: var(--ag-muted); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.ag-post h3 { font-family: var(--ag-font-head); font-weight: 700; font-size: 21px; letter-spacing: -.01em; line-height: 1.25; text-wrap: balance; }
.ag-post:hover h3 { color: var(--ag-primary); }
.ag-post p { color: var(--ag-muted); font-size: 14px; line-height: 1.55; font-weight: 500; margin-top: 9px; text-wrap: pretty; }

.ag-cta { border-radius: 26px; background: var(--ag-ink); padding: 54px 48px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.ag-cta__glow { position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(31,209,192,.35), transparent 70%); }
.ag-cta h2 { font-family: var(--ag-font-head); font-weight: 800; font-size: 34px; color: #fff; letter-spacing: -.02em; line-height: 1.1; text-wrap: balance; position: relative; }
.ag-cta p { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.6; margin-top: 14px; max-width: 480px; text-wrap: pretty; position: relative; }
.ag-cta__steps { position: relative; display: flex; flex-direction: column; gap: 12px; }
.ag-cta__step { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 16px 18px; }
.ag-cta__step b { font-family: var(--ag-font-head); font-weight: 800; font-size: 24px; color: var(--ag-primary-bright); }
.ag-cta__step span { color: #fff; font-weight: 600; font-size: 15px; }

/* Zengin footer (çok sütun) */
.ag-footer--rich .ag-footer__inner { padding: 64px 24px 0; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; align-items: start; }
.ag-footer--rich .ag-footer__brand { margin-bottom: 18px; }
.ag-footer__about { font-size: 14px; line-height: 1.6; max-width: 300px; color: #85aaa5; }
.ag-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.ag-footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: #cfe6e3; }
.ag-footer__social a:hover { background: var(--ag-primary); color: #fff; }
.ag-footer__col b { display: block; color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.ag-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 14px; font-weight: 500; }
.ag-footer__col a:hover { color: #fff; }
.ag-footer__cta { display: flex; flex-direction: column; gap: 10px; }
.ag-footer__cta .ag-btn { width: 100%; justify-content: center; }
.ag-footer__login { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.ag-footer__login:hover { background: rgba(255,255,255,.16); }
.ag-footer__bar { max-width: var(--ag-maxw); margin: 48px auto 0; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; font-weight: 500; color: #7da3a0; }
.ag-footer__bar a:hover { color: #fff; }

@media (max-width: 940px) { .ag-mega { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .ag-hero h1 { font-size: 44px; }
  .ag-hero__search { flex-wrap: wrap; }
  .ag-hero__search .ag-seg { border-right: none; }
  .ag-band__inner, .ag-cta { grid-template-columns: 1fr; }
  .ag-cards-4 { grid-template-columns: repeat(2,1fr); }
  .ag-cat-grid { grid-template-columns: repeat(3,1fr); }
  .ag-footer--rich .ag-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .ag-stats__grid { grid-template-columns: repeat(2,1fr); }
  .ag-blog-grid { grid-template-columns: 1fr; }
  .ag-cat-grid { grid-template-columns: repeat(2,1fr); }
  .ag-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .ag-mosaic a { min-height: 180px; }
  .ag-mosaic a:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
  .ag-banner__copy { padding: 0 24px; }
}
/* ============================================================
   KATEGORİ LİSTE
   ============================================================ */
.ag-listhero { position: relative; overflow: hidden; background: #0c5b63; }
.ag-listhero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.ag-listhero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,32,38,.4), rgba(8,32,38,.78)); }
.ag-listhero__inner { position: relative; padding: 30px 24px 34px; }
/* Varsayılan: açık arka plan (Blog/Arama/Yorumlar/Değerlendir/EntityPage) — koyu okunur metin */
.ag-crumb { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ag-muted); margin-bottom: 16px; }
.ag-crumb a { color: var(--ag-ink-soft); }
.ag-crumb a:hover { color: var(--ag-primary); }
.ag-crumb .sep { opacity: .5; }
.ag-crumb .cur { color: var(--ag-ink); }
/* Koyu hero içinde (Kategori/Bölge/Faceted _Breadcrumb) — beyaz metin */
.ag-listhero .ag-crumb { color: rgba(255,255,255,.8); }
.ag-listhero .ag-crumb a { color: rgba(255,255,255,.8); }
.ag-listhero .ag-crumb a:hover, .ag-listhero .ag-crumb .cur { color: #fff; }
.ag-listhero h1 { font-family: var(--ag-font-head); font-weight: 800; font-size: 42px; letter-spacing: -.025em; color: #fff; line-height: 1.05; }
.ag-listhero p { color: rgba(255,255,255,.88); font-size: 17px; font-weight: 500; margin-top: 10px; max-width: 640px; text-wrap: pretty; }
.ag-chipbar { border-bottom: 1px solid var(--ag-line); background: #fbf6ed; }
.ag-chipbar__inner { padding: 16px 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.ag-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 100px; background: #fff; border: 1px solid #e2d9c7; color: var(--ag-ink); font-size: 14px; font-weight: 700; }
.ag-chip:hover { border-color: var(--ag-primary); }
.ag-chip.is-active { background: var(--ag-ink); color: #fff; border-color: var(--ag-ink); }
.ag-chip span { color: var(--ag-faint); font-weight: 600; }
.ag-chip.is-active span { color: rgba(255,255,255,.7); }

.ag-featrow { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ag-featcard { position: relative; display: flex; background: #fff; border: 1px solid #ffd9b0; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 28px rgba(255,106,61,.1); transition: transform .25s, box-shadow .25s; }
.ag-featcard:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(255,106,61,.18); }
.ag-featcard__img { flex: 0 0 118px; position: relative; background: #0c5b63; }
.ag-featcard__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ag-featcard__body { flex: 1; min-width: 0; padding: 14px 16px; display: flex; flex-direction: column; }
.ag-featcard h3 { font-family: var(--ag-font-head); font-weight: 700; font-size: 15.5px; letter-spacing: -.01em; line-height: 1.25; margin-bottom: auto; }

.ag-results { padding: 32px 24px 0; display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.ag-filters { position: sticky; top: 98px; background: #fff; border: 1px solid var(--ag-line); border-radius: 20px; padding: 22px; }
.ag-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ag-filters__head b { font-family: var(--ag-font-head); font-weight: 800; font-size: 18px; }
.ag-filters__head a { font-size: 13px; font-weight: 700; color: var(--ag-primary); }
.ag-fgroup { padding: 20px 0; border-bottom: 1px solid var(--ag-line-soft); }
.ag-fgroup:first-of-type { padding-top: 0; }
.ag-fgroup:last-child { border-bottom: none; }
.ag-fgroup > b { display: block; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.ag-fopt { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #3c4f53; cursor: pointer; margin-bottom: 10px; }
.ag-fopt:last-child { margin-bottom: 0; }
.ag-fopt input { width: 17px; height: 17px; accent-color: var(--ag-primary); }
.ag-fopt .count { margin-left: auto; color: var(--ag-faint); font-size: 13px; }
.ag-range { width: 100%; margin-bottom: 10px; accent-color: var(--ag-primary); }
.ag-range-labels { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: #3c4f53; }

/* Filtre çekmecesi tetik/kapat/scrim — masaüstünde gizli, mobilde görünür */
.ag-filterbtn { display: none; }
.ag-filters__close { display: none; background: none; border: none; cursor: pointer; font-size: 20px; line-height: 1; color: var(--ag-muted); padding: 2px 6px; }
.ag-filters__scrim { position: fixed; inset: 0; background: rgba(8,32,38,.5); z-index: 95; display: none; }
.ag-filters__scrim.is-open { display: block; }

.ag-results__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.ag-results__count { font-size: 15px; font-weight: 600; color: var(--ag-muted); }
.ag-results__count b { color: var(--ag-ink); font-weight: 800; }
.ag-sort { display: flex; align-items: center; gap: 8px; border: 1px solid #ddd2bd; border-radius: 11px; padding: 9px 14px; background: #fff; }
.ag-sort span { font-size: 13px; font-weight: 600; color: var(--ag-muted); }
.ag-sort select { border: none; outline: none; background: transparent; font-size: 14px; font-weight: 700; color: var(--ag-ink); cursor: pointer; font-family: var(--ag-font-body); }
.ag-results__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.ag-bizcard { background: #fff; border: 1px solid var(--ag-line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.ag-bizcard:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(10,39,48,.15); }
.ag-bizcard__img { display: block; position: relative; height: 190px; overflow: hidden; background: #0c5b63; }
.ag-bizcard__img img { width: 100%; height: 100%; object-fit: cover; }
.ag-bizcard__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,32,38,0) 50%, rgba(8,32,38,.5) 100%); }
.ag-badge { position: absolute; top: 13px; left: 13px; padding: 6px 12px; border-radius: 100px; color: #fff; font-size: 12px; font-weight: 700; z-index: 1; }
.ag-bizcard__loc { position: absolute; bottom: 12px; left: 13px; z-index: 1; display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: 13px; font-weight: 600; text-shadow: 0 1px 5px rgba(0,0,0,.5); }
.ag-bizcard__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.ag-bizcard__rate { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.ag-bizcard__rate .ag-star { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 7px; background: #fff6e6; color: #c07f15; font-weight: 800; font-size: 13px; }
.ag-bizcard__rate .rev { color: var(--ag-muted); font-size: 13px; font-weight: 600; }
.ag-bizcard__name { display: block; font-family: var(--ag-font-head); font-weight: 700; font-size: 18px; letter-spacing: -.01em; line-height: 1.25; margin-bottom: 8px; }
.ag-bizcard__name:hover { color: var(--ag-primary); }
.ag-bizcard__desc { color: var(--ag-muted); font-size: 13.5px; line-height: 1.5; font-weight: 500; margin-bottom: 14px; text-wrap: pretty; }
.ag-bizcard__foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--ag-line-soft); }
.ag-price small { display: block; color: var(--ag-muted); font-size: 12px; font-weight: 600; }
.ag-price b { font-family: var(--ag-font-head); font-weight: 800; font-size: 18px; color: var(--ag-ink); }
.ag-contact-btns { display: flex; gap: 8px; }
.ag-call { width: 40px; height: 40px; border-radius: 11px; background: var(--ag-ink); display: flex; align-items: center; justify-content: center; color: #fff; }
.ag-call:hover { background: var(--ag-primary); }
.ag-wa { display: inline-flex; align-items: center; gap: 7px; padding: 0 16px; height: 40px; border-radius: 11px; background: var(--ag-whatsapp); color: #fff; font-weight: 700; font-size: 14px; }
.ag-wa:hover { filter: brightness(1.05); }

.ag-pager { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 44px 0 8px; }
.ag-pager a, .ag-pager span { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.ag-pager a { border: 1px solid #ddd2bd; background: #fff; color: var(--ag-ink); }
.ag-pager a:hover { border-color: var(--ag-primary); }
.ag-pager a.is-active { background: var(--ag-ink); color: #fff; border-color: var(--ag-ink); }
.ag-pager a.is-disabled { color: var(--ag-faint); }
.ag-pager .dots { color: var(--ag-faint); }

@media (max-width: 900px) {
  .ag-results { grid-template-columns: 1fr; }
  /* Mobilde liste önce görünür; filtre sağdan açılan çekmece olur */
  .ag-filterbtn { display: inline-flex; align-items: center; gap: 8px; justify-self: start;
    padding: 11px 18px; border-radius: 12px; border: 1px solid var(--ag-line); background: #fff;
    font-family: var(--ag-font-body); font-weight: 800; font-size: 14.5px; color: var(--ag-ink);
    cursor: pointer; margin-bottom: 18px; box-shadow: var(--ag-shadow-sm); }
  .ag-filters { position: fixed; top: 0; right: 0; bottom: 0; z-index: 96; width: min(88vw, 360px);
    border-radius: 0; border: none; overflow-y: auto; transform: translateX(100%);
    transition: transform .28s ease; box-shadow: -12px 0 40px rgba(8,32,38,.3); }
  .ag-filters.is-open { transform: translateX(0); }
  .ag-filters__close { display: inline-flex; }
  .ag-featrow { grid-template-columns: 1fr; }
  .ag-listhero h1 { font-size: 32px; }
}
@media (max-width: 620px) {
  .ag-results__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .ag-hero h1 { font-size: 34px; }
  .ag-section h2, .ag-band h2, .ag-cta h2 { font-size: 27px; }
  .ag-cards-4, .ag-cat-grid, .ag-perks { grid-template-columns: 1fr; }
  .ag-banner__copy h3 { font-size: 21px; }
  .ag-section__head { flex-direction: column; align-items: flex-start; }
}

/* Mobilde hero quick search alt alta (kategori / bölge / arama / Ara) */
@media (max-width: 640px) {
  .ag-hero__search { flex-direction: column; align-items: stretch; gap: 6px; padding: 12px; }
  .ag-hero__search .ag-seg { flex: none; width: 100%; border-right: none; border-bottom: 1px solid var(--ag-line); }
  .ag-hero__search .ag-seg--q { border-bottom: none; }
  .ag-hero__search button { width: 100%; padding: 14px; }
}

/* Anasayfa: Bölgeler ve Blog — mobilde yatay kaydırmalı carousel (yan yana kart, kaydır) */
@media (max-width: 640px) {
  .ag-mosaic {
    display: flex; height: auto; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .ag-mosaic::-webkit-scrollbar { display: none; }
  .ag-mosaic > a { flex: 0 0 80%; scroll-snap-align: start; min-height: 220px; }

  .ag-blog-grid {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .ag-blog-grid::-webkit-scrollbar { display: none; }
  .ag-blog-grid > .ag-blogcard { flex: 0 0 82%; scroll-snap-align: start; }
}

/* Hızlı bilgiler (özgün içerik şeridi — kategori/bölge/faceted) */
.ag-factbar { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 4px; }
.ag-fact { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 100px; background: #fff; border: 1px solid var(--ag-line); font-size: 13.5px; font-weight: 600; color: var(--ag-ink-soft); }
.ag-fact b { color: var(--ag-ink); font-weight: 800; }
.ag-fact__star { color: #ffb020; }

/* Faceted iç linkleme (SEO silo) */
.ag-crosslinks { margin-top: 28px; }
.ag-crosslinks h2 { font-family: var(--ag-font-head); font-weight: 800; font-size: 18px; margin: 0 0 12px; }
.ag-crosslinks__row { display: flex; flex-wrap: wrap; gap: 8px; }
.ag-crosslinks__row a {
    display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 100px;
    background: #fff; border: 1px solid var(--ag-line); font-size: 13.5px; font-weight: 600; color: var(--ag-ink-soft);
}
.ag-crosslinks__row a:hover { border-color: var(--ag-primary); color: var(--ag-primary); background: var(--ag-primary-tint); }
