/* =========================
   EZANKACTA — app.css (SIFIRDAN)
   Taqwa hissi: serif başlık + amber/yeşil + premium kartlar
   ========================= */

:root{
  --bg: #ffffff;
  --ink: #121615;
  --muted: rgba(18,22,21,.68);

  --amber: #F4B323;
  --amber2: #D39C16;

  --green: #2F6B2F;
  --green2: #214B21;

  --glass: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.18);

  --container: 1200px;
  --radius: 18px;

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{ color:inherit; text-decoration:none; }
.container{
  width: min(var(--container), calc(100% - 44px));
  margin-inline:auto;
}

/* =========================
   HEADER konum (FIXED DEĞİL)
   - Home: görselin üstünde overlay (absolute)
   - Diğer sayfalar: normal akış (relative)
   ========================= */

.site-header{
  left:0; right:0; top:0;
  z-index: 80;
}

.site-header--overlay{
  position:absolute; /* hero üstüne biner ama sayfayla akar */
}

.site-header--normal{
  position:relative; /* sayfanın parçası, beyaz arka planı bozmaz */
}

/* =========================
   NAV — Ibadah tarzı yeşil bar (FIX)
   - Logo barın üstünde görünür (z-index yüksek)
   - Menü asla kapanmaz (padding-left artırıldı)
   ========================= */

.navwrap{
  position:relative;
  z-index:82;
  padding: 14px 0 0;
}

/* Logo absolute yerleşimi için referans */
.navwrap .container{
  position: relative;
}

/* Yeşil bar */
.navshell{
  position: relative;
  z-index: 92;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;

  border-radius: 14px;

  /* ✅ logo menüyü kapatmasın */
  padding: 14px 18px 14px 380px;

  background: rgba(47,107,47,.95);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

/* ✅ LOGO: barın üstünde ve barın arkasına düşmez */
.brand-float{
  position: absolute;
  left: 18px;
  top: -27px;          /* barın üstüne taşır */
  z-index: 120;        /* ✅ barın ÜSTÜNDE */
  display: inline-flex;
  align-items: center;
}

.brand-float__img{
  height: 90px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}

/* Menü */
.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}

.navlink{
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}

.navlink:hover{
  background: rgba(255,255,255,.10);
  color:#fff;
}

.navlink.active{
  background: rgba(244,179,35,.95);
  color:#1b1405 !important;
}

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

.burger{
  display:none;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.12);
  color:#fff;
  padding:10px 12px;
  border-radius: 12px;
}

/* =========================
   MOBILE MENU (FINAL)
   ========================= */

.mobilemenu{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: none;
}

.mobilemenu.active{
  display: block;
}

.mobilemenu-inner{
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #1e2d1e;
  padding: 90px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: -20px 0 50px rgba(0,0,0,.35);
  animation: slideIn .25s ease;
}

@keyframes slideIn{
  from{ transform: translateX(100%); }
  to{ transform: translateX(0); }
}

.mitem{
  color:#fff;
  font-weight: 900;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.mitem.active{
  background: var(--amber);
  color:#1b1405;
}

/* Mobile */
@media (max-width: 860px){
  .nav{ display:none; }
  .burger{ display:inline-flex; }

  .brand-float{ left: 14px; top: -22px; }
  .brand-float__img{ height: 54px; }

  .navshell{ padding: 14px 14px 14px 92px; }
}

/* =========================
   TOPBAR
   ========================= */

.topbar{
  position:relative;
  z-index:81;
  background: rgba(18,22,21,.92);
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.topbar-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}

.topbar-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size:13px;
  backdrop-filter: blur(10px);
}

.topbar-pill .dot{
  width:8px;height:8px;border-radius:99px;
  background: var(--amber);
  box-shadow:0 0 0 4px rgba(244,179,35,.18);
}

.topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.topbar-social{
  display:flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border-radius:12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.topbar-social a{
  width:24px;height:24px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background: rgba(0,0,0,.10);
  font-weight:800;
  font-size:12px;
}

/* TOPBAR'daki Bildirim Aç */
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  color:#fff;
  font-weight: 900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(244,179,35,.55);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.cta:hover{
  transform: translateY(-1px);
  background: rgba(244,179,35,.12);
  border-color: rgba(244,179,35,.78);
}
.cta--topbar{
  box-shadow: none;
}

/* =========================
   HERO (Taqwa hissi)
   ========================= */

.tq-hero{
  position: relative;
  min-height: 640px;
  overflow:hidden;
  background: #1b231f;

  /* header absolute olduğu için içerik aşağı insin */
  padding-top: 140px;
}

@media (max-width: 860px){
  .tq-hero{ padding-top: 150px; }
}

.tq-hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.55)),
    radial-gradient(900px 520px at 60% 20%, rgba(244,179,35,.14), transparent 60%),
    radial-gradient(900px 520px at 20% 85%, rgba(47,107,47,.20), transparent 60%),
    url("/assets/img/hero-bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.03);
}

.tq-hero__inner{
  position:relative; z-index:2;
  padding: 54px 0 96px;
  display:grid;
  grid-template-columns: 340px 1fr 340px;
  gap: 26px;
  align-items:center;
}

/* Kartlar */
.tq-card{
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,.30);
}
.tq-card--glass{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  color:#fff;
}
.tq-card__cap{
  padding: 16px 16px 12px;
  background: rgba(244,179,35,.95);
  color:#1b1405;
  border-bottom: 1px solid rgba(0,0,0,.10);
}
.tq-card__capTitle{ font-weight: 900; letter-spacing:.2px; }
.tq-card__capMeta{ opacity:.85; font-weight:800; font-size:13px; margin-top:4px; }

.tq-table{ padding: 10px 14px 6px; }
.tq-row{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items:center;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 14px;
}
.tq-row span{ opacity:.92; font-weight:800; }
.tq-row strong{ letter-spacing:.2px; }
.tq-row em{ font-style:normal; opacity:.72; }
.tq-row.is-active{
  background: rgba(244,179,35,.16);
  border-radius: 12px;
  border-bottom-color: transparent;
}
.tq-card__actions{
  display:flex; gap:10px; padding: 14px;
}
.tq-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--amber);
  color:#1b1405;
  font-weight: 900;
  width:100%;
}
.tq-btn--outline{
  background: transparent;
  border: 1px solid rgba(244,179,35,.55);
  color:#fff;
}

/* Orta alan */
.tq-hero__center{
  text-align:center;
  color:#fff;
  padding: 10px 10px;
}
.tq-hero__tag{
  display:inline-flex; gap:10px; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .3px;
}
.tq-dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--amber);
  box-shadow:0 0 0 4px rgba(244,179,35,.18);
}
.tq-sep{ opacity:.7; }

.tq-calligraphy{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 96px;
  letter-spacing: .6px;
  margin: 12px 0 8px;
  color: rgba(244,179,35,.95);
  text-shadow: 0 20px 60px rgba(0,0,0,.45);
  user-select:none;
}
.tq-hero__title{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 54px;
  line-height: 1.05;
  margin: 0 0 10px;
  text-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.tq-hero__desc{
  margin: 0 auto 16px;
  max-width: 58ch;
  color: rgba(255,255,255,.86);
  line-height: 1.75;
  font-size: 15px;
}
.tq-hero__ctaRow{
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
  margin-top: 10px;
}

.tq-pillBtn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--amber);
  color:#1b1405;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}
.tq-pillBtn__icon{
  width:22px; height:22px;
  display:grid; place-items:center;
  border-radius: 8px;
  background: rgba(0,0,0,.12);
}
.tq-pillBtn--ghost{
  background: rgba(255,255,255,.12);
  color:#fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}

/* Sağ kart */
.tq-card--green{
  background: rgba(47,107,47,.85);
  border: 1px solid rgba(255,255,255,.16);
  color:#fff;
  backdrop-filter: blur(10px);
}
.tq-rightHead{ padding: 18px 16px 10px; }
.tq-rightHead__title{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
}
.tq-rightHead__sub{
  opacity:.85;
  font-weight: 900;
  font-size: 12px;
  letter-spacing:.2px;
}

.tq-kpi{
  padding: 8px 16px 10px;
  display:grid;
  gap:10px;
}
.tq-kpi__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.14);
}
.tq-kpi__row span{ opacity:.88; font-weight: 800; }
.tq-kpi__row strong{ font-weight: 900; letter-spacing:.2px; }

.tq-liveBox{
  margin: 12px 16px 14px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.14);
  position: relative;
}
.tq-liveBadge{
  position:absolute;
  top: 12px; right: 12px;
  background: #ff3b30;
  color:#fff;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
}
.tq-liveBox__time{
  padding-right: 70px;
  font-weight: 900;
  letter-spacing:.2px;
  opacity: .95;
}

.tq-adBox{ padding: 0 16px 16px; }
.tq-adPlaceholder{
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,.10);
  border: 1px dashed rgba(255,255,255,.24);
}
.tq-adPlaceholder__title{ font-weight: 900; }
.tq-adPlaceholder__sub{ opacity:.8; font-size: 12px; margin-top: 4px; }

.tq-wave{
  position:absolute;
  left:-2%; right:-2%;
  bottom:-1px;
  height: 130px;
  background: #fff;
  border-top-left-radius: 100% 130px;
  border-top-right-radius: 100% 130px;
  transform: translateY(50%);
}

/* =========================
   SECTION “Günün Duası”
   ========================= */

.tq-section{
  padding: 70px 0 30px;
  background: #fff;
}
.tq-section__head{
  text-align:center;
  margin-bottom: 26px;
}
.tq-section__kicker{
  font-weight: 900;
  letter-spacing: .25em;
  font-size: 11px;
  color: rgba(18,22,21,.55);
}
.tq-section__title{
  margin: 10px 0 0;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: .2px;
}

.tq-packGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 26px;
}

.tq-pack{
  border-radius: 18px;
  border: 1px solid rgba(18,22,21,.08);
  background: #fbfbfb;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  overflow:hidden;
}
.tq-pack__inner{
  padding: 18px 18px 16px;
  position:relative;
}
.tq-pack__title{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  color: var(--green2);
}
.tq-pack__meta{
  color: rgba(18,22,21,.60);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}

.tq-pack__duaAr{
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(18,22,21,.06);
  font-family:
    "Noto Naskh Arabic",
    "Noto Kufi Arabic",
    "Amiri",
    "Scheherazade New",
    "Geeza Pro",
    serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(18,22,21,.86);
}
.tq-pack__duaTr{
  margin-top: 12px;
  color: rgba(18,22,21,.72);
  line-height: 1.75;
  font-weight: 700;
}
.tq-pack__text{
  color: rgba(18,22,21,.70);
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 12px;
}

.tq-pack__chip{
  position:absolute;
  left: 18px;
  bottom: 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--green);
  color:#fff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}
.tq-pack__chip--soft{
  background: rgba(47,107,47,.12);
  border: 1px solid rgba(47,107,47,.22);
  color: rgba(47,107,47,.95);
  box-shadow:none;
}

.tq-pack--featured{
  background: var(--amber);
  border-color: rgba(0,0,0,.06);
}
.tq-pack--featured .tq-pack__title{ color:#1b1405; }
.tq-pack--featured .tq-pack__meta{ color: rgba(27,20,5,.70); }
.tq-pack--featured .tq-pack__duaAr{
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.28);
}
.tq-pack--featured .tq-pack__duaTr{ color: rgba(27,20,5,.74); }
.tq-pack--featured .tq-pack__chip{
  background: rgba(0,0,0,.18);
  color: #fff;
}

.tq-pack__ad{
  min-height: 120px;
  display:flex;
  align-items:center;
}

/* =========================
   Footer (mevcut footer.php class’ları)
   ========================= */

.site-footer{
  position:relative;
  background:#f6f6f6;
  overflow:hidden;
  padding-top: 46px;
}
.footer-bg{
  position:absolute; inset:0;
  background-image: url("/assets/img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity:.50;
  filter: grayscale(.85) contrast(1.08);
}
.footer-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:24px;
  padding: 10px 0 34px;
}
.footer-title{
  font-family: var(--serif);
  font-size: 44px;
  line-height:1.05;
  margin:0 0 12px;
}
.footer-title span{
  display:block;
  color: var(--green);
  font-weight:900;
}
.footer-sub{
  margin:0 0 18px;
  color: rgba(0,0,0,.65);
  max-width: 520px;
}
.footer-col h4{ margin: 8px 0 12px; font-weight:900; }
.footer-col a{
  display:block;
  padding: 8px 0;
  color: rgba(0,0,0,.70);
}
.footer-contact{
  color: rgba(0,0,0,.72);
  display:grid;
  gap:8px;
}

.footer-bottom{
  position:relative; z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(0,0,0,.10);
  color: rgba(0,0,0,.70);
}
.footer-links{ display:flex; gap:14px; }
.footer-links a{ color: rgba(0,0,0,.72); }

/* =========================
   Global Responsive
   ========================= */

@media (max-width: 1100px){
  .tq-hero__inner{
    grid-template-columns: 1fr;
    padding: 44px 0 86px;
  }
  .tq-calligraphy{ font-size: 82px; }
  .tq-hero__title{ font-size: 46px; }
  .tq-packGrid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .topbar-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .topbar-right{
    width:100%;
    justify-content:space-between;
  }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .tq-section__title{ font-size: 36px; }
}

/* Gaziantep satırına konum ikonu */
.tq-city{
  display:flex;
  align-items:center;
  gap:8px;
}
.tq-city__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: rgba(27,20,5,.88); /* kapak yazısı ile uyumlu */
}

/* İmsak satırı: 2 kolonlu versiyon */
.tq-row--2{
  grid-template-columns: 1fr auto; /* em yok */
}

/* Sağ sayaç: asla alt satıra düşmesin */
.tq-nowrap{
  white-space: nowrap;
}

/* SOL tablo: 2 kolon (etiket + saat) */
.tq-row--2{
  grid-template-columns: 1fr auto;
}

/* SAĞ sayaç: tek satır + CANLI taşma yok */
.tq-liveBox{
  display:flex;
  align-items:center;
  gap:12px;
}

.tq-liveBox__time{
  padding-right: 0;     /* eskiden 70px idi, artık gerek yok */
  flex: 1;
  min-width: 0;
}

.tq-nowrap{
  white-space: nowrap;
}

/* CANLI rozet artık absolute değil */
.tq-liveBadge{
  position: static;
  margin-left: 0;
  flex: 0 0 auto;
}

/* Sponsor alanı: 300x100 görseli düzgün otursun */
.tq-adBox{
  display:flex;
  justify-content:center;
}
.tq-adCreative img{
  display:block;
  border-radius:14px;
}

/* =========================
   LIVE (CANLI) — FINAL
   - Gün kaldırıldı
   - Tek satır
   - Taşma yok
   ========================= */

.tq-liveBox.tq-liveBox--row{
  display:flex;
  align-items:center;
  gap:10px;

  margin: 12px 16px 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.14);
}

.tq-liveBox__time{
  flex: 1;
  font-weight: 900;
  letter-spacing: .15px;
  white-space: nowrap;
  font-size: clamp(13px, 2.4vw, 15px);
}

.tq-liveBadge{
  margin-left: auto;
  white-space: nowrap;
  background: #ff3b30;
  color:#fff;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
}

/* SECTION içi: Üstte sponsor, altta ince/geniş ayet */
.tq-dailyAd{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* slot_b görseli/picture taşmasın */
.tq-dailyAd img{
  display:block;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

/* =========================
   ADS RESPONSIVE SWITCH
   Desktop: slot_b (970x90)
   Mobile/Tablet: slot_c (300x100)
========================= */

.ad-desktop{ display:block; }
.ad-mobile{ display:none; }

@media (max-width: 1100px){
  .ad-desktop{ display:none; }
  .ad-mobile{ display:block; }
}

/* Ad creative img ortak premium görünüm */
.tq-adCreative img{
  display:block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0,0,0,.10);
  border: 1px solid rgba(18,22,21,.08);
  margin-inline: auto;
}

/* İnce-geniş “Günün Ayeti” kartı */
.tq-verseWide{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(18,22,21,.08);
  background: #fbfbfb;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  padding: 16px 18px;
  position: relative;
}

.tq-verseWide__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.tq-verseWide__title{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--green2);
}

.tq-verseWide__ref{
  color: rgba(18,22,21,.60);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.tq-verseWide__tr{
  color: rgba(18,22,21,.70);
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 10px;
}

.tq-verseWide__ar{
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(18,22,21,.06);
  font-family:
    "Noto Naskh Arabic",
    "Noto Kufi Arabic",
    "Amiri",
    "Scheherazade New",
    "Geeza Pro",
    serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(18,22,21,.86);
}

/* “Oku” mini buton */
.tq-verseWide__cta{
  position:absolute;
  right: 16px;
  bottom: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(47,107,47,.12);
  border: 1px solid rgba(47,107,47,.22);
  color: rgba(47,107,47,.95);
  font-weight: 900;
}

/* Mobilde ref alta insin, buton taşmasın */
@media (max-width: 860px){
  .tq-verseWide__head{
    flex-direction:column;
    align-items:flex-start;
  }
  .tq-verseWide__cta{
    position: static;
    margin-top: 12px;
  }
}

/* =========================
   DAILY (Sponsor üstte + Şık Ayet kartı)
   ========================= */

.tq-section.tq-section--daily{
  padding: 44px 0 36px;   /* daha kompakt */
  background:#fff;
}

/* Sponsor: başlıksız, üstte, daha yukarı */
.tq-dailyAd.tq-dailyAd--top{
  margin-top: 0;
  margin-bottom: 16px;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* slot_b img taşmasın + premium otursun */
.tq-dailyAd.tq-dailyAd--top img{
  display:block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0,0,0,.10);
  border: 1px solid rgba(18,22,21,.08);
}

/* Ayet kartı: daha kibar/premium */
.tq-verseCard{
  border-radius: 20px;
  border: 1px solid rgba(18,22,21,.08);
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: 0 18px 46px rgba(0,0,0,.07);
  padding: 18px 18px 16px;
  position: relative;
  overflow:hidden;
}

/* çok hafif üst şerit (taqwa hissi) */
.tq-verseCard::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(244,179,35,.95), rgba(47,107,47,.85));
  opacity:.9;
}

/* header */
.tq-verseCard__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding-top: 6px;
  margin-bottom: 10px;
}

.tq-verseCard__title{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  color: var(--green2);
  line-height: 1.05;
}

.tq-verseCard__ref{
  margin-top: 6px;
  color: rgba(18,22,21,.55);
  font-weight: 800;
  font-size: 13px;
}

/* sağ üst AR meta */
.tq-verseCard__right{
  color: rgba(18,22,21,.65);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .4px;
  white-space: nowrap;
  padding-top: 4px;
}

/* TR metin */
.tq-verseCard__tr{
  color: rgba(18,22,21,.74);
  line-height: 1.8;
  font-weight: 700;
  font-size: 15px;
  margin: 10px 0 12px;
}

/* AR panel (daha zarif) */
.tq-verseCard__arWrap{
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(18,22,21,.03);
  border: 1px solid rgba(18,22,21,.07);
}

.tq-verseCard__ar{
  font-family:
    "Noto Naskh Arabic",
    "Noto Kufi Arabic",
    "Amiri",
    "Scheherazade New",
    "Geeza Pro",
    serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 2.0;
  color: rgba(18,22,21,.88);
}

/* Aksiyon */
.tq-verseCard__actions{
  display:flex;
  justify-content:flex-end;
  margin-top: 12px;
}

.tq-verseBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(47,107,47,.12);
  border: 1px solid rgba(47,107,47,.24);
  color: rgba(47,107,47,.95);
  font-weight: 900;
  box-shadow:none;
}

.tq-verseBtn:hover{
  background: rgba(47,107,47,.16);
}

/* Mobil düzen */
@media (max-width: 860px){
  .tq-verseCard__head{
    flex-direction:column;
    align-items:flex-start;
  }
  .tq-verseCard__right{
    padding-top: 0;
    white-space: normal;
  }
  .tq-verseCard__ar{
    font-size: 18px;
  }
}

/* Basit sayfalar: header absolute olmasın */
.is-simple{
  padding-top: 180px;
}

/* =========================
   SIMPLE PAGES (Konum Seç vb.)
   ========================= */
.simple-page{
  padding: 44px 0 70px;
}

.simple-page h1{
  font-family: var(--serif);
  font-size: 44px;
  margin: 0 0 16px;
  color: var(--green2);
}

.location-box{
  max-width: 520px;
  border-radius: 18px;
  border: 1px solid rgba(18,22,21,.08);
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: 0 18px 46px rgba(0,0,0,.07);
  padding: 18px;
}

.lbl{
  display:block;
  font-weight: 900;
  margin-bottom: 8px;
  color: rgba(18,22,21,.78);
}

.inp{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(18,22,21,.12);
  background: #fff;
  font-weight: 700;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--amber);
  color:#1b1405;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.hint{
  margin-top: 10px;
  color: rgba(18,22,21,.60);
  font-weight: 700;
  font-size: 13px;
}

.backlink{
  display:inline-block;
  margin-top: 14px;
  color: rgba(18,22,21,.70);
  font-weight: 800;
}

/* =========================
   MODAL (WEB only)
   ========================= */
.modal[hidden]{ display:none; }

.modal{
  position: fixed;
  inset: 0;
  z-index: 999;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}

.modal-card{
  position: relative;
  width: min(520px, calc(100% - 32px));
  margin: 120px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
  padding: 16px;
  color: #fff;
}

.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.modal-title{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
}

.modal-x{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.20);
  color:#fff;
  font-size: 22px;
  cursor:pointer;
}

.modal-actions{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  align-items:center;
}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}

/* Header fixed olduğu için, HERO olmayan sayfalar header altından başlasın */
.page-pad{
  padding-top: 190px; /* topbar + logo/nav toplamına göre */
}

@media (max-width: 860px){
  .page-pad{ padding-top: 210px; }
}

/* Konum sayfası: header boşluğu daha az (uçurumu al) */
.loc-page.page-pad{
  padding-top: 90px; /* 190 yerine */
}

@media (max-width: 860px){
  .loc-page.page-pad{
    padding-top: 110px; /* 210 yerine */
  }
}

/* =========================
   HOME — En Çok Aranan Şehirler
   ========================= */
.tq-section.tq-section--cities{
  padding: 26px 0 54px;
  background:#fff;
}

.tq-citiesTitle{
  text-align:center;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 26px;
  color: var(--green2);
}

.tq-citiesGrid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.tq-cityPill{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,22,21,.10);
  background: rgba(0,0,0,.02);
  color: rgba(18,22,21,.82);
  font-weight: 900;
  font-size: 13px;
  text-decoration:none;
}

.tq-cityPill:hover{
  background: rgba(0,0,0,.03);
}

.tq-citiesCta{
  text-align:center;
  margin-top: 12px;
}

/* =========================
   HOME — En Çok Aranan Şehirler
   ========================= */
.tq-section--cities{
  padding: 28px 0 44px;
  background:#fff;
}
.tq-citiesTitle{
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  color: var(--green2);
}
.tq-citiesGrid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tq-cityPill{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,22,21,.10);
  background: rgba(0,0,0,.02);
  color: rgba(18,22,21,.80);
  font-weight: 900;
  font-size: 13px;
}
.tq-cityPill:hover{ background: rgba(0,0,0,.03); }

/* =========================
   TOPBAR — Mobile’da sosyal ikonları gizle
========================= */
@media (max-width: 860px){
  .topbar-right{ display:none !important; }

  /* ortada boşluk kalmasın */
  .topbar-row{
    justify-content:flex-start;
  }
}

/* =========================
   HOME HERO GAP FIX (MOBILE)
   - Logo ile içerik arası uçurumu al
========================= */
@media (max-width: 860px){
  .tq-hero{
    padding-top: 85px; /* 150 çok fazlaydı */
  }
  .tq-hero__inner{
    padding-top: 20px;  /* 54 çok fazlaydı */
  }
}

@media (min-width: 861px){
  .tq-hero{
    padding-top: 125px; /* 140 yerine */
  }
}


body{ padding-bottom: 0; }

/* Desktop/tablet: bottomnav kapalı */
.bottomnav{ display:none; }

/* Sadece mobile: aç */
@media (max-width: 860px){
  .bottomnav{ display:flex; }
  body{ padding-bottom: 80px; }
}