/* ═══════════════════════════════════════════
   KABE.COM.TR — GLOBAL STYLESHEET
   Encoding: UTF-8 (no BOM)
   ═══════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --navy: #0f2240;
  --navy-mid: #152d50;
  --navy-light: #1e3d6e;
  --gold: #b8892a;
  --gold-light: #d4a84b;
  --gold-dim: rgba(184, 137, 42, .12);
  --green: #1a6b3a;
  --green-light: #22874a;
  --cream: #f8f5ef;
  --cream-dark: #ede9e0;
  --text-dark: #1a1a2e;
  --text-mid: #3d4a5c;
  --text-muted: #6b7a8d;
  --border: #d4c9b0;
  --border-light: rgba(212, 200, 176, .4);
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(15, 34, 64, .08);
  --shadow: 0 6px 24px rgba(15, 34, 64, .14);
  --shadow-lg: 0 16px 48px rgba(15, 34, 64, .2);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Roboto Slab', serif;
  line-height: 1.25;
}

/* ── TOP BAR ── */
#topBar {
  background: var(--navy);
  padding: 8px 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

#topBar a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .2s;
}

#topBar a:hover {
  color: var(--gold-light);
}

#topBar .tb-divider {
  opacity: .3;
  margin: 0 10px;
}

/* ── NAVBAR ── */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: stretch;
  min-height: 68px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 0 28px 0 0;
  border-right: 1px solid var(--border-light);
  margin-right: 20px;
  flex-shrink: 0;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-wrap span {
  font-family: 'Amiri', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

.brand-text strong {
  display: block;
  font-family: 'Amiri', serif;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1;
}

.brand-text small {
  display: block;
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-link-item {
  color: var(--text-mid) !important;
  font-size: .85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link-item:hover,
.nav-link-item.active {
  background: var(--gold-dim);
  color: var(--navy) !important;
}

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--green-light);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 107, 58, .3);
}

.navbar-toggler-custom {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  margin-left: auto;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 999;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-mid);
  text-decoration: none;
  font-size: .86rem;
  transition: all .18s;
}

.nav-dropdown-item:hover {
  background: var(--cream);
  color: var(--navy);
}

.nav-dropdown-item .dd-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
}

/* ── LIVE BADGE ── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #dc3545;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}

.live-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.2s infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

/* ── SECTION HELPERS ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-sep {
  border: none;
  height: 1px;
  background: var(--border-light);
}

.gold-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  margin: 18px 0;
}

/* ── CARDS ── */
.corp-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  height: 100%;
}

.corp-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.corp-card .card-img {
  height: 210px;
  overflow: hidden;
}

.corp-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.corp-card:hover .card-img img {
  transform: scale(1.05);
}

.corp-card .card-body-inner {
  padding: 22px;
}

.corp-card .card-badge {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(184, 137, 42, .25);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.glass-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary-corp {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary-corp:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gold-corp {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: .88rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-gold-corp:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-corp {
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: .88rem;
  padding: 11px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-corp:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
  font-size: .88rem;
  padding: 11px 28px;
  border-radius: var(--radius);
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-gold:hover {
  background: var(--gold-dim);
  color: var(--gold);
}

/* ── FORMS ── */
.form-corp .form-control,
.form-corp .form-select,
.form-dark .form-control,
.form-dark .form-select {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}

.form-corp .form-control:focus,
.form-dark .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 34, 64, .1);
  outline: none;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  color: rgba(255, 255, 255, .8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(184, 137, 42, .2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: .88rem;
}

.trust-item span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
}

/* ── STATS ── */
.stat-box {
  text-align: center;
  padding: 28px 20px;
}

.stat-num {
  font-family: 'Amiri', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: 6px;
}

/* ── BADGES ── */
.gold-badge {
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .3px;
}

.rss-badge {
  background: rgba(220, 53, 69, .1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, .25);
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

/* ── ALERTS ── */
.flash-alert {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-left: 4px solid #28a745;
  color: #155724;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
}

/* ── PAGINATION ── */
.pagination .page-link {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  border-radius: var(--radius);
  margin: 0 3px;
  padding: 8px 14px;
  transition: all .2s;
}

.pagination .page-link:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.pagination .page-item.active .page-link {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ── FOOTER ── */
.footer-newsletter-bar {
  background: linear-gradient(135deg, #b8892a 0%, #d4a843 50%, #b8892a 100%);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.footer-newsletter-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.footer-newsletter-bar .container {
  position: relative;
  z-index: 1;
}

footer {
  background: linear-gradient(180deg, #0a1628 0%, #0f2240 40%, #0d1c38 100%);
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
}

footer h6 {
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-brand {
  font-family: 'Amiri', serif;
  font-size: 2.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), #f0c060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.footer-desc {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  line-height: 1.85;
  max-width: 290px;
}

.footer-links a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  font-size: .87rem;
  transition: all .2s;
  padding: 2px 0;
}
.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(184,137,42,.4);
  flex-shrink: 0;
  transition: background .2s;
}
.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}
.footer-links a:hover::before {
  background: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .55);
  border-radius: 50%;
  transition: all .25s;
  text-decoration: none;
  font-size: .88rem;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(184,137,42,.35);
}
.footer-social a[aria-label="Facebook"]:hover  { background:#1877f2; border-color:#1877f2; }
.footer-social a[aria-label="Instagram"]:hover { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color:#e6683c; }
.footer-social a[aria-label="YouTube"]:hover   { background:#ff0000; border-color:#ff0000; }
.footer-social a[aria-label="Twitter"]:hover   { background:#000; border-color:#000; }

.footer-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(184,137,42,.1);
  border: 1px solid rgba(184,137,42,.25);
  border-radius: 12px;
  margin-top: 24px;
}
.footer-trust-badge .icon {
  width: 36px;
  height: 36px;
  background: rgba(184,137,42,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .9rem;
  flex-shrink: 0;
}
.footer-trust-badge .text-label {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  display: block;
}
.footer-trust-badge .text-value {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  transition: border-color .2s;
}
.footer-contact-item:hover {
  border-color: rgba(184,137,42,.3);
}
.footer-contact-item .ci-icon {
  width: 38px;
  height: 38px;
  background: rgba(184,137,42,.18);
  border: 1px solid rgba(184,137,42,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .85rem;
  flex-shrink: 0;
}
.footer-contact-item .ci-label {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .87rem;
  font-weight: 500;
}
.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08) 30%, rgba(255,255,255,.08) 70%, transparent);
  margin: 50px 0 0;
}

.footer-bottom {
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-section .fade-up {
  opacity: 1;
  transform: none;
}

/* ── UTILITIES ── */
.bg-cream {
  background: var(--cream);
}

.bg-navy {
  background: var(--navy);
}

.bg-white {
  background: var(--white);
}

/* ══════════════════════════════════════════════════
   PAGE DETAIL (sayfa/{slug}) STİLLERİ
   ══════════════════════════════════════════════════ */

/* Okuma ilerleme çubuğu */
#readingProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
}

/* Hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 50%, #0d1f3c 100%);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(184, 137, 42, .12) 0%, transparent 70%),
    radial-gradient(ellipse 300px 200px at 10% 80%, rgba(184, 137, 42, .08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
  margin: 0;
}

.page-hero-kaaba-bg {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  color: rgba(255, 255, 255, .02);
  pointer-events: none;
  line-height: 1;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 137, 42, .18);
  border: 1px solid rgba(184, 137, 42, .35);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

.page-hero-meta-item i {
  color: var(--gold);
}

/* Breadcrumb */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .78rem;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
}

.page-breadcrumb a:hover {
  color: var(--gold-light);
}

.page-breadcrumb span {
  color: rgba(255, 255, 255, .35);
}

/* Makale kartı */
.page-article {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-article-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(to right, var(--cream), #fff);
}

.page-article-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(15, 34, 64, .25);
}

.page-article-header h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.3;
}

.page-article-header small {
  color: var(--text-muted);
  font-size: .76rem;
}

.page-article-body {
  padding: 32px;
}

/* Icerik tipografisi */
.page-content {
  color: var(--text-mid);
  font-size: .97rem;
  line-height: 1.85;
}

.page-content h2,
.page-content h3 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  margin: 32px 0 14px;
}

.page-content h2 {
  font-size: 1.4rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-dim);
}

.page-content h3 {
  font-size: 1.15rem;
}

.page-content p {
  margin-bottom: 18px;
}

.page-content ul,
.page-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 16px 22px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}

.page-content strong {
  color: var(--navy);
}

.page-content a {
  color: var(--gold);
  text-decoration: underline;
}

.page-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 16px 0;
  box-shadow: var(--shadow-sm);
}

/* Paylasim */
.page-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 32px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}

.share-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.share-wa {
  background: #25d366;
  color: #fff;
}

.share-wa:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-2px);
}

.share-fb {
  background: #1877f2;
  color: #fff;
}

.share-fb:hover {
  background: #1369e0;
  color: #fff;
  transform: translateY(-2px);
}

/* Sidebar */
.page-sidebar-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.page-sidebar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  padding: 14px 20px;
  font-family: 'Roboto Slab', serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.page-sidebar-body {
  padding: 12px;
}

.page-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: .86rem;
  transition: all .18s;
  border: 1px solid transparent;
}

.page-sidebar-link:hover {
  background: var(--cream);
  border-color: var(--border-light);
  color: var(--navy);
  transform: translateX(3px);
}

.page-sidebar-link.active-link {
  background: var(--gold-dim);
  border-color: rgba(184, 137, 42, .25);
  color: var(--gold);
  font-weight: 600;
}

/* CTA kutusu */
.page-cta-box {
  background: linear-gradient(145deg, var(--navy) 0%, #1a3a6e 100%);
  border: 1px solid rgba(184, 137, 42, .25);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(184, 137, 42, .15), transparent 70%);
  pointer-events: none;
}

/* Icerik listesi (TOC) */
.page-toc {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.page-toc-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-toc a {
  display: block;
  color: var(--text-mid);
  text-decoration: none;
  font-size: .85rem;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all .15s;
}

.page-toc a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
  padding-left: 6px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4px;
  }

  .nav-links.show {
    display: flex;
  }

  .navbar-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .navbar-brand {
    border-right: none;
    margin-right: 0;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .page-article-header {
    padding: 20px;
  }

  .page-article-body {
    padding: 20px;
  }

  .page-share {
    padding: 16px 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 0 !important;
  }

  #topBar .d-md-flex {
    display: none !important;
  }

  .page-hero {
    padding: 48px 0 36px;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }
}

/* ══════════════════════════════════════════════════
   NAMAZ VAKİTLERİ SAYFASI STİLLERİ
   ══════════════════════════════════════════════════ */

/* Hero */
.namaz-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 60%, #0d1f3c 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.namaz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 90% 50%, rgba(184, 137, 42, .1) 0%, transparent 65%),
    radial-gradient(ellipse 400px 300px at 5% 80%, rgba(184, 137, 42, .07) 0%, transparent 60%);
  pointer-events: none;
}

.namaz-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.namaz-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
  margin: 0 0 14px;
}

.namaz-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0;
}

.namaz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* Hızlı şehirler */
.quick-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-city-btn {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .75);
  font-size: .8rem;
  text-decoration: none;
  transition: all .2s;
}

.quick-city-btn:hover {
  background: rgba(184, 137, 42, .25);
  border-color: var(--gold);
  color: var(--gold-light);
}

.quick-city-btn.active-city {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
}

/* Şehir formu */
.city-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.city-select {
  flex: 1;
  min-width: 160px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: .9rem;
  cursor: pointer;
}

.city-select option {
  background: var(--navy);
  color: #fff;
}

.city-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.city-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 137, 42, .35);
}

/* Saat */
.namaz-clock {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  padding: 36px 44px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
}

.namaz-clock::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at top, rgba(184, 137, 42, .1), transparent 60%);
  pointer-events: none;
}

.clock-city {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

#liveClock {
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 4px;
  font-family: 'Roboto Slab', serif;
  text-shadow: 0 0 40px rgba(184, 137, 42, .5);
  line-height: 1;
}

.clock-date {
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
  margin-top: 10px;
}

.clock-hijri {
  color: rgba(184, 137, 42, .7);
  font-size: .75rem;
  margin-top: 4px;
}

/* Vakitler wrap */
.vakitler-wrap {
  background: var(--cream);
  padding: 48px 0 64px;
}

/* Tarih başlığı */
.date-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.date-bar-city {
  font-family: 'Roboto Slab', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.date-bar-hijri {
  font-size: .8rem;
  color: var(--text-muted);
}

.date-bar-miladi {
  font-size: .88rem;
  color: var(--text-mid);
}

/* Vakit grid */
.vakit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.vakit-cell {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 22px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  cursor: default;
}

.vakit-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 137, 42, .3);
}

.vakit-cell.active {
  background: linear-gradient(145deg, var(--navy), #1a3a6e);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(15, 34, 64, .3);
  transform: translateY(-4px);
}

.vakit-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  background: var(--gold-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all .25s;
}

.vakit-cell.active .vakit-icon-wrap {
  background: rgba(184, 137, 42, .25);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(184, 137, 42, .3);
}

.vakit-aktif-badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--gold);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
}

.vakit-name {
  font-family: 'Roboto Slab', serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.vakit-cell.active .vakit-name {
  color: rgba(255, 255, 255, .75) !important;
}

.vakit-saat {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Roboto Slab', serif;
  font-variant-numeric: tabular-nums;
}

.vakit-cell.active .vakit-saat {
  color: var(--gold-light) !important;
  font-size: 1.65rem;
}

.vakit-cell.active {
  animation: activeGlow 3s ease-in-out infinite;
}

@keyframes activeGlow {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(15, 34, 64, .3);
  }

  50% {
    box-shadow: 0 8px 40px rgba(184, 137, 42, .25), 0 0 0 3px rgba(184, 137, 42, .15);
  }
}

/* Countdown bar */
.countdown-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  border: 1px solid rgba(184, 137, 42, .25);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.countdown-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 4px;
}

.countdown-value {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

#countdownTimer {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(184, 137, 42, .4);
}

/* Ek vakitler */
.ek-vakitler {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.ek-vakit-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: .85rem;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

.ek-vakit-pill strong {
  color: var(--navy);
  font-family: 'Roboto Slab', serif;
}

/* Bilgi kartları */
.namaz-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.namaz-info-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

.namaz-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 137, 42, .25);
}

.namaz-info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.namaz-info-card h6 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: 8px;
}

.namaz-info-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Responsive — Namaz */
@media (max-width: 991px) {
  .vakit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .namaz-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-bar {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .namaz-clock {
    padding: 24px 28px;
  }

  #liveClock {
    font-size: 2.4rem;
  }
}

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

  .namaz-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .namaz-hero {
    padding: 48px 0 40px;
  }

  .city-form {
    flex-direction: column;
  }

  .city-select {
    width: 100%;
  }

  .city-btn {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════
   UMRE REHBERİ SAYFASI STİLLERİ
   ══════════════════════════════════════════════════ */

/* Hero */
.umre-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.umre-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 85% 40%, rgba(184, 137, 42, .12) 0%, transparent 65%),
    radial-gradient(ellipse 400px 300px at 5% 85%, rgba(184, 137, 42, .07) 0%, transparent 55%);
  pointer-events: none;
}

.umre-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.umre-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
  margin: 0 0 18px;
}

.umre-hero h1 span {
  color: var(--gold-light);
}

.umre-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.umre-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* Hero stat grid */
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all .25s;
}

.hero-stat:hover {
  background: rgba(184, 137, 42, .12);
  border-color: rgba(184, 137, 42, .3);
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: .95rem;
  margin-bottom: 4px;
}

.hero-stat small {
  color: rgba(255, 255, 255, .45);
  font-size: .75rem;
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Timeline wrap */
.timeline-wrap {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
  transform: translateX(-50%);
}

.timeline-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(15, 34, 64, .25);
  border: 2px solid var(--gold);
}

.timeline-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

.timeline-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(184, 137, 42, .25);
}

.timeline-emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.timeline-card h5 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}

.timeline-card p {
  color: var(--text-mid);
  font-size: .87rem;
  line-height: 1.7;
  margin: 0;
}

/* Kategori kartları */
.umre-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 28px 24px;
  text-decoration: none;
  height: 100%;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--cat-color, var(--gold));
}

.umre-cat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--cat-color, var(--gold));
}

.cat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .81rem;
  padding: 4px 0;
  margin-top: 4px;
}

.sub-link span {
  transition: color .15s;
}

.umre-cat-card:hover .sub-link span {
  color: var(--text-mid);
}

/* Video */
.video-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 34, 64, .25);
  border: 2px solid var(--border-light);
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 3D Tur arka plan */
.tour-bg {
  background: linear-gradient(145deg, var(--navy) 0%, #0d1f3c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tour-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 137, 42, .08), transparent 70%);
  pointer-events: none;
}

.tour-feature {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all .25s;
}

.tour-feature:hover {
  background: rgba(184, 137, 42, .12);
  border-color: rgba(184, 137, 42, .3);
}

/* CTA kutusu */
.umre-cta {
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  border: 1px solid rgba(184, 137, 42, .25);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.umre-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(184, 137, 42, .15), transparent 60%);
  pointer-events: none;
}

/* Responsive — Umre */
@media (max-width: 991px) {
  .hero-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .umre-hero {
    padding: 56px 0 48px;
  }
}

@media (max-width: 576px) {
  .hero-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .umre-hero h1 {
    font-size: 2rem;
  }

  .umre-cta {
    padding: 36px 20px;
  }
}

/* ══════════════════════════════════════════════════
   UMRE KATEGORİ SAYFASI (category.blade.php)
   ══════════════════════════════════════════════════ */

.cat-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}

.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 80% 50%, rgba(184, 137, 42, .12) 0%, transparent 65%);
  pointer-events: none;
}

.cat-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.cat-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
  margin: 0 0 12px;
}

.cat-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cat-breadcrumb a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.cat-breadcrumb a:hover {
  color: var(--gold-light);
}

.cat-breadcrumb span {
  color: rgba(255, 255, 255, .25);
}

.cat-breadcrumb strong {
  color: rgba(255, 255, 255, .85);
}

/* Alt kategori bölümü */
.subcat-section {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.subcat-section h6 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Makale kartı (guide-card) */
.guide-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}

.guide-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-color: rgba(184, 137, 42, .3);
}

.guide-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-size: .85rem;
  font-weight: 700;
}

.guide-card h5 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: .97rem;
  margin: 0 0 5px;
  line-height: 1.35;
}

.guide-card p {
  color: var(--text-muted);
  font-size: .83rem;
  margin: 0;
  line-height: 1.55;
}

.guide-arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .8rem;
  transition: all .2s;
}

.guide-card:hover .guide-arrow {
  background: var(--gold);
  color: #fff;
}

/* Sidebar ortak */
.sidebar-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.sidebar-box h6 {
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  color: rgba(255, 255, 255, .85);
  font-family: 'Roboto Slab', serif;
  font-size: .85rem;
  font-weight: 600;
  margin: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: background .18s;
}

.sidebar-cat-link:last-child {
  border-bottom: none;
}

.sidebar-cat-link:hover {
  background: var(--cream);
}

.sidebar-cat-link.active-cat,
.sidebar-cat-link.is-active {
  background: var(--gold-dim);
}

/* ══════════════════════════════════════════════════
   UMRE GUIDE SAYFASI (guide.blade.php)
   ══════════════════════════════════════════════════ */

.guide-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}

.guide-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(184, 137, 42, .1) 0%, transparent 65%);
  pointer-events: none;
}

.guide-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.guide-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
  margin: 14px 0 0;
}

.guide-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.guide-breadcrumb a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
}

.guide-breadcrumb a:hover {
  color: var(--gold-light);
}

.guide-breadcrumb span {
  color: rgba(255, 255, 255, .25);
}

.guide-breadcrumb strong {
  color: rgba(255, 255, 255, .8);
}

.guide-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
}

.guide-cat-pill:hover {
  background: rgba(184, 137, 42, .3);
  color: var(--gold-light);
}

.guide-hero-summary {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 12px 0 0;
}

/* Guide layout */
.guide-layout {
  background: var(--cream);
  padding: 52px 0 80px;
}

/* Guide article */
.guide-article {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guide-article-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 32px 22px;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(to right, var(--cream), #fff);
}

.guide-article-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(15, 34, 64, .25);
}

.guide-article-header h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.3;
}

.guide-article-header small {
  color: var(--text-muted);
  font-size: .75rem;
}

.guide-article-body {
  padding: 32px;
}

/* Özet kutusu */
.guide-summary-box {
  background: linear-gradient(135deg, var(--cream), #fff);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin-bottom: 28px;
}

.guide-summary-box p {
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

/* İçerik tipografisi */
.guide-content {
  color: var(--text-mid);
  font-size: .97rem;
  line-height: 1.85;
}

.guide-content h2,
.guide-content h3 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  margin: 28px 0 12px;
}

.guide-content h2 {
  font-size: 1.35rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-dim);
}

.guide-content h3 {
  font-size: 1.1rem;
}

.guide-content p {
  margin-bottom: 16px;
}

.guide-content ul,
.guide-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.guide-content li {
  margin-bottom: 8px;
}

.guide-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--navy);
}

.guide-content strong {
  color: var(--navy);
}

.guide-content a {
  color: var(--gold);
  text-decoration: underline;
}

.guide-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 14px 0;
  box-shadow: var(--shadow-sm);
}

/* Paylaşım */
.guide-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 32px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.share-btn-wa {
  background: #25d366;
  color: #fff;
}

.share-btn-wa:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-2px);
}

.share-btn-fb {
  background: #1877f2;
  color: #fff;
}

.share-btn-fb:hover {
  background: #1369e0;
  color: #fff;
  transform: translateY(-2px);
}

.share-btn-copy {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--navy);
}

.share-btn-copy:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* İlgili makale */
.related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}

.related-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(184, 137, 42, .3);
  transform: translateX(3px);
}

.related-card-num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
}

.related-card-title {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  line-height: 1.45;
}

.related-card-arrow {
  color: var(--text-muted);
  font-size: .75rem;
  transition: color .2s;
}

.related-card:hover .related-card-arrow {
  color: var(--gold);
}

/* Yorum bölümü */
.comment-section {
  margin-top: 52px;
}

.comment-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.comment-section-label {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.comment-section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.comment-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}

.comment-item:hover {
  border-color: rgba(184, 137, 42, .25);
  transform: translateY(-2px);
}

.comment-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold-light);
}

.comment-name {
  font-family: 'Roboto Slab', serif;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

.comment-date {
  color: var(--text-muted);
  font-size: .72rem;
  background: var(--cream);
  padding: 2px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.comment-body {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.75;
  margin: 0;
}

.comment-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-size: .9rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.comment-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #c3e6cb;
  border-left: 4px solid #28a745;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #155724;
  font-size: .9rem;
  margin-bottom: 20px;
}

.comment-form-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.comment-form-head {
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  font-family: 'Roboto Slab', serif;
  font-size: .92rem;
  font-weight: 600;
}

.comment-form-body {
  padding: 24px 28px;
}

.comment-form-body .form-label {
  color: var(--text-mid);
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.comment-form-body .form-control {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}

.comment-form-body .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 34, 64, .1);
  outline: none;
}

.btn-comment-submit {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
}

.btn-comment-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* Guide sidebar */
.guide-sidebar-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.guide-sidebar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  padding: 14px 18px;
  font-family: 'Roboto Slab', serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.guide-sidebar-body {
  padding: 10px;
}

.guide-cta-box {
  background: linear-gradient(145deg, var(--navy), #1a3a6e);
  border: 1px solid rgba(184, 137, 42, .25);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.guide-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(184, 137, 42, .15), transparent 65%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .guide-article-header {
    padding: 18px 20px;
  }

  .guide-article-body {
    padding: 20px;
  }

  .guide-share {
    padding: 14px 20px;
  }

  .comment-form-body {
    padding: 18px 20px;
  }

  .cat-hero,
  .guide-hero {
    padding: 44px 0 36px;
  }
}

/* ══════════════════════════════════════════════════
   HUTBELER SAYFASI (hutbes/index & detail)
   ══════════════════════════════════════════════════ */

/* ── HERO (index) ── */
.hutbe-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.hutbe-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 85% 40%, rgba(184, 137, 42, .12) 0%, transparent 65%),
    radial-gradient(ellipse 300px 200px at 5% 80%, rgba(184, 137, 42, .07) 0%, transparent 55%);
  pointer-events: none;
}

.hutbe-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.hutbe-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
  margin: 0 0 16px;
}

.hutbe-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .97rem;
  line-height: 1.8;
  margin: 0;
}

.hutbe-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hutbe-hero-stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all .25s;
}

.hutbe-hero-stat:hover {
  background: rgba(184, 137, 42, .12);
  border-color: rgba(184, 137, 42, .3);
}

.hutbe-hero-stat strong {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.hutbe-hero-stat small {
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
}

/* ── Section header ── */
.hutbe-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hutbe-section-label {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hutbe-section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
}

/* ── Featured hutbe ── */
.hutbe-featured {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}

.hutbe-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 1;
}

.hutbe-featured-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.hutbe-featured-date {
  color: var(--text-muted);
  font-size: .82rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hutbe-featured-body h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.hutbe-featured-excerpt {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hutbe-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  padding: 11px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .25s;
}

.hutbe-featured-cta:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.hutbe-featured-side {
  background: linear-gradient(145deg, var(--navy), #1a3a6e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
  min-height: 260px;
}

.hutbe-arabic {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, .85);
  direction: rtl;
  line-height: 1.6;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(184, 137, 42, .3);
  font-family: 'Amiri', serif;
}

.hutbe-side-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .5px;
  font-style: italic;
}

/* ── Hutbe kartları (arşiv) ── */
.hutbe-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  height: 100%;
}

.hutbe-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(184, 137, 42, .25);
}

.hutbe-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px 14px;
  border-bottom: 1px solid var(--border-light);
}

.hutbe-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
}

.hutbe-card-date {
  color: var(--text-muted);
  font-size: .74rem;
  margin-bottom: 6px;
}

.hutbe-card-title {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hutbe-card-body {
  padding: 14px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hutbe-card-excerpt {
  color: var(--text-muted);
  font-size: .83rem;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.hutbe-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.hutbe-card-read {
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.hutbe-card:hover .hutbe-card-read {
  color: var(--gold);
}

.hutbe-card-source {
  color: var(--text-muted);
  font-size: .74rem;
  background: var(--cream);
  padding: 3px 9px;
  border-radius: 6px;
}

/* ── Bilgi kartları ── */
.hutbe-info-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

.hutbe-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 137, 42, .25);
}

.hutbe-info-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ── Detail Hero ── */
.hutbe-detail-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.hutbe-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 70% 50%, rgba(184, 137, 42, .1) 0%, transparent 65%);
  pointer-events: none;
}

.hutbe-detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.hutbe-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hutbe-breadcrumb a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
}

.hutbe-breadcrumb a:hover {
  color: var(--gold-light);
}

.hutbe-breadcrumb span {
  color: rgba(255, 255, 255, .25);
}

.hutbe-breadcrumb strong {
  color: rgba(255, 255, 255, .82);
}

.hutbe-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── Detail content ── */
.hutbe-content-wrap {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.hutbe-content-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 40px;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(to right, var(--cream), #fff);
  flex-wrap: wrap;
}

.hutbe-content-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(15, 34, 64, .25);
}

.hutbe-content-body {
  padding: 36px 48px;
  color: var(--text-mid);
  font-size: .97rem;
  line-height: 2;
}

.hutbe-content-body p {
  margin-bottom: 18px;
}

.hutbe-content-body strong {
  color: var(--navy);
}

/* Kaynak kutusu */
.hutbe-source-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  border-top: 1px solid var(--border-light);
  background: var(--cream);
  font-size: .85rem;
}

/* Related hutbeler */
.related-hutbe-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 16px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.related-hutbe-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(184, 137, 42, .25);
}

.related-hutbe-card h6 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: .87rem;
  line-height: 1.4;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive — Hutbeler */
@media (max-width: 991px) {
  .hutbe-featured-body {
    padding: 26px 24px;
    min-height: auto;
  }

  .hutbe-hero {
    padding: 52px 0 44px;
  }
}

@media (max-width: 768px) {
  .hutbe-content-body {
    padding: 24px 20px;
  }

  .hutbe-content-header {
    padding: 18px 20px;
  }

  .hutbe-source-box {
    padding: 12px 20px;
  }

  .hutbe-detail-hero {
    padding: 40px 0 36px;
  }
}

/* ══════════════════════════════════════════════════
   HUTBE DETAIL — GÜNCELLENMİŞ STİLLER
   ══════════════════════════════════════════════════ */

/* Hero güçlendirme */
.hutbe-detail-hero {
  padding: 64px 0 100px;
}

.hutbe-detail-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

.hutbe-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hutbe-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
}

.hutbe-meta-item i {
  color: var(--gold-light);
}

.hutbe-meta-sep {
  color: rgba(255, 255, 255, .2);
  font-size: .7rem;
}

/* Dekoratif Arapça arka plan motifi */
.hutbe-hero-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  color: rgba(255, 255, 255, .025);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  font-family: 'Amiri', serif;
}

/* Layout */
.hutbe-detail-layout {
  background: var(--cream);
  padding-bottom: 80px;
  margin-top: -52px;
  position: relative;
  z-index: 1;
}

/* Content wrap güçlendirme */
.hutbe-content-wrap {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 34, 64, .14);
  margin-bottom: 28px;
}

.hutbe-content-supertitle {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.hutbe-content-subtitle {
  font-family: 'Roboto Slab', serif;
  font-size: .97rem;
  color: var(--navy);
  font-weight: 600;
}

/* İndirme/Aksiyon butonları */
.hutbe-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.hutbe-dl-pdf {
  background: rgba(220, 53, 69, .1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, .25);
}

.hutbe-dl-pdf:hover {
  background: #dc3545;
  color: #fff;
}

.hutbe-dl-audio {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(184, 137, 42, .3);
}

.hutbe-dl-audio:hover {
  background: var(--gold);
  color: #fff;
}

.hutbe-dl-copy {
  background: var(--cream);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.hutbe-dl-copy:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* Audio bar */
.hutbe-audio-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

/* Bismillah dekorasyon */
.hutbe-bismillah-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 48px 10px;
}

.hutbe-bismillah-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}

.hutbe-bismillah-bar .hutbe-bismillah-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}

.hutbe-bismillah-text {
  font-family: 'Amiri', serif;
  font-size: 1.6rem;
  color: var(--gold);
  direction: rtl;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(184, 137, 42, .2);
}

/* Hutbe metin alanı */
.hutbe-content-body {
  padding: 20px 48px 36px;
}

.hutbe-text {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 2.1;
  font-family: 'Roboto', sans-serif;
}

.hutbe-text br+br {
  display: block;
  margin: 4px 0;
}

/* Footer bar (paylaşım + kaynak) */
.hutbe-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 40px;
  border-top: 1px solid var(--border-light);
  background: linear-gradient(to right, var(--cream), #fff);
}

.hutbe-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hutbe-share-label {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
}

.hutbe-source-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--text-muted);
}

.hutbe-source-item a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.hutbe-source-item a:hover {
  text-decoration: underline;
}

/* Nav row */
.hutbe-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

/* İlgili hutbeler section */
.hutbe-related-section {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
}

.hutbe-archive-link {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.hutbe-archive-link:hover {
  color: var(--navy);
}

/* İlgili hutbe kartları güçlendirme */
.related-hutbe-card {
  position: relative;
  border-top: 3px solid var(--gold-dim);
  transition: all .3s;
}

.related-hutbe-card:hover {
  border-top-color: var(--gold);
}

.related-hutbe-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 12px;
  transition: all .25s;
}

.related-hutbe-card:hover .related-hutbe-icon {
  background: var(--gold);
  color: #fff;
}

.related-hutbe-date {
  color: var(--text-muted);
  font-size: .73rem;
  margin-top: 6px;
}

.related-hutbe-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  margin-top: 12px;
  transition: gap .2s;
}

.related-hutbe-card:hover .related-hutbe-cta {
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hutbe-bismillah-bar {
    padding: 20px 20px 8px;
  }

  .hutbe-bismillah-text {
    font-size: 1.2rem;
  }

  .hutbe-content-body {
    padding: 16px 20px 28px;
  }

  .hutbe-audio-bar {
    padding: 12px 20px;
  }

  .hutbe-footer-bar {
    padding: 14px 20px;
  }

  .hutbe-detail-hero {
    padding: 44px 0 80px;
  }

  .hutbe-hero-deco {
    display: none;
  }
}

/* ══════════════════════════════════════════════════
   HABERLER SAYFASI (blogs/index & detail)
   ══════════════════════════════════════════════════ */

/* ── Hero (index) ── */
.haber-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.haber-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 85% 40%, rgba(184, 137, 42, .12) 0%, transparent 65%),
    radial-gradient(ellipse 300px 200px at 5% 80%, rgba(184, 137, 42, .07) 0%, transparent 55%);
  pointer-events: none;
}

.haber-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.haber-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

.haber-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .97rem;
  line-height: 1.8;
  margin: 0;
}

.haber-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.haber-hero-stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all .25s;
}

.haber-hero-stat:hover {
  background: rgba(184, 137, 42, .12);
  border-color: rgba(184, 137, 42, .3);
}

.haber-hero-stat strong {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.haber-hero-stat small {
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
}

/* ── Ana bölüm ── */
.haber-main-section {
  background: var(--cream);
  padding: 60px 0 80px;
}

/* ── Filtre butonları ── */
.haber-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.haber-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-mid);
  text-decoration: none;
  transition: all .2s;
}

.haber-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.haber-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 34, 64, .25);
}

.haber-filter-count {
  background: rgba(0, 0, 0, .08);
  border-radius: 50px;
  padding: 1px 7px;
  font-size: .72rem;
}

.haber-filter-btn.active .haber-filter-count {
  background: rgba(255, 255, 255, .2);
}

/* ── Öne çıkan haber ── */
.haber-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all .3s;
}

.haber-featured:hover {
  box-shadow: 0 24px 64px rgba(15, 34, 64, .2);
  transform: translateY(-3px);
}

.haber-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.haber-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.haber-featured:hover .haber-featured-img img {
  transform: scale(1.04);
}

.haber-featured-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.haber-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.haber-featured-title {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.haber-featured-excerpt {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.haber-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.haber-featured-meta span:first-child {
  color: var(--text-muted);
  font-size: .8rem;
}

.haber-read-more {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 700;
  transition: gap .2s;
}

/* ── Haber kartları ── */
.haber-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  height: 100%;
}

.haber-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(184, 137, 42, .2);
}

.haber-card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}

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

.haber-card:hover .haber-card-img img {
  transform: scale(1.05);
}

/* Kategori & RSS rozetleri */
.haber-cat-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.haber-rss-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 34, 64, .7);
  color: #fff;
  backdrop-filter: blur(4px);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* index pill (non-absolute) */
div.haber-rss-pill,
span.haber-rss-pill.mb-3 {
  position: static;
  background: rgba(184, 137, 42, .15);
  color: var(--gold);
  border: 1px solid rgba(184, 137, 42, .3);
}

.haber-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.haber-card-date {
  color: var(--text-muted);
  font-size: .74rem;
  margin-bottom: 8px;
}

.haber-card-title {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: .97rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.haber-card-excerpt {
  color: var(--text-muted);
  font-size: .83rem;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.haber-card-footer {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.haber-card-read {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.haber-card:hover .haber-card-read {
  gap: 10px;
}

/* ── Detail Hero ── */
.haber-detail-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.haber-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(184, 137, 42, .1) 0%, transparent 65%);
  pointer-events: none;
}

.haber-detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.haber-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.haber-breadcrumb a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s;
}

.haber-breadcrumb a:hover {
  color: var(--gold-light);
}

.haber-breadcrumb span {
  color: rgba(255, 255, 255, .25);
}

.haber-breadcrumb strong {
  color: rgba(255, 255, 255, .82);
}

.haber-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 14px;
  transition: all .2s;
}

.haber-cat-pill:hover {
  background: rgba(184, 137, 42, .3);
  color: var(--gold-light);
}

.haber-detail-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

.haber-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.haber-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
}

.haber-meta-item i {
  color: var(--gold-light);
}

.haber-meta-sep {
  color: rgba(255, 255, 255, .25);
}

/* ── Detail layout ── */
.haber-detail-layout {
  background: var(--cream);
  padding-bottom: 80px;
  margin-top: -52px;
  position: relative;
  z-index: 1;
}

.haber-content-wrap {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 34, 64, .14);
  margin-bottom: 28px;
}

.haber-cover-img {
  overflow: hidden;
  max-height: 460px;
}

.haber-cover-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.haber-content-body {
  padding: 36px 48px;
}

.haber-article-text {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 28px;
}

.haber-article-text h2,
.haber-article-text h3 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  margin: 28px 0 12px;
}

.haber-article-text h2 {
  font-size: 1.35rem;
  border-bottom: 2px solid var(--gold-dim);
  padding-bottom: 10px;
}

.haber-article-text p {
  margin-bottom: 16px;
}

.haber-article-text img {
  max-width: 100%;
  border-radius: 12px;
  margin: 12px 0;
}

.haber-article-text a {
  color: var(--gold);
}

.haber-article-text blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
  font-style: italic;
}

.haber-source-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 12px 18px;
  margin-bottom: 24px;
  font-size: .85rem;
  color: var(--text-mid);
}

.haber-source-box a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.haber-share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.haber-share-label {
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 600;
}

/* ── İlgili haberler ── */
.haber-related-section {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
}

.haber-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.haber-section-label {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.haber-section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), transparent);
}

.haber-archive-link {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.haber-archive-link:hover {
  color: var(--navy);
}

/* Responsive */
@media (max-width: 991px) {
  .haber-featured {
    grid-template-columns: 1fr;
  }

  .haber-featured-img {
    min-height: 240px;
  }

  .haber-featured-body {
    padding: 24px;
  }

  .haber-hero {
    padding: 52px 0 44px;
  }
}

@media (max-width: 768px) {
  .haber-content-body {
    padding: 20px;
  }

  .haber-detail-hero {
    padding: 44px 0 80px;
  }
}

/* ══════════════════════════════════════════════════
   HABERLER — SIDEBAR & LİSTE KARTI
   ══════════════════════════════════════════════════ */

/* Öne çıkan haber — tek sütun (index sidebar layout) */
.haber-featured {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  background: #fff;
  transition: all .3s;
}

.haber-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(15, 34, 64, .2);
}

.haber-featured-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.haber-featured:hover .haber-featured-img img {
  transform: scale(1.04);
}

/* Liste kartı (yatay) */
.haber-list-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

.haber-list-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-color: rgba(184, 137, 42, .25);
}

.haber-list-img {
  width: 130px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.haber-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.haber-list-card:hover .haber-list-img img {
  transform: scale(1.07);
}

.haber-list-rss {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(15, 34, 64, .7);
  color: #fff;
  font-size: .6rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.haber-list-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.haber-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.haber-list-cat {
  background: var(--gold-dim);
  color: var(--gold);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}

.haber-list-date {
  color: var(--text-muted);
  font-size: .73rem;
}

.haber-list-title {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}

.haber-list-card:hover .haber-list-title {
  color: var(--gold);
}

.haber-list-excerpt {
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.haber-list-read {
  color: var(--gold);
  font-size: .77rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  transition: gap .2s;
}

.haber-list-card:hover .haber-list-read {
  gap: 8px;
}

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

.haber-sb-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.haber-sb-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  padding: 15px 18px;
  font-family: 'Roboto Slab', serif;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.haber-sb-head i {
  color: var(--gold-light);
}

.haber-sb-body {
  padding: 8px 0;
}

/* Kategori linkleri */
.haber-sb-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: background .18s;
}

.haber-sb-cat:last-child {
  border-bottom: none;
}

.haber-sb-cat:hover {
  background: var(--cream);
}

.haber-sb-cat.active {
  background: var(--gold-dim);
}

.haber-sb-cat-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
}

.haber-sb-cat-name {
  flex: 1;
  font-size: .86rem;
  color: var(--navy);
  font-weight: 500;
  transition: color .15s;
}

.haber-sb-cat:hover .haber-sb-cat-name {
  color: var(--gold);
}

.haber-sb-cat.active .haber-sb-cat-name {
  color: var(--gold);
  font-weight: 600;
}

.haber-sb-cat-count {
  background: var(--cream);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  min-width: 28px;
  text-align: center;
}

.haber-sb-cat.active .haber-sb-cat-count {
  background: var(--gold);
  color: #fff;
}

/* CTA kutusu */
.haber-sb-cta {
  background: linear-gradient(145deg, var(--navy), #1a3a6e);
  border: 1px solid rgba(184, 137, 42, .25);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.haber-sb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(184, 137, 42, .15), transparent 60%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
  .haber-sidebar {
    position: static;
  }

  .haber-list-img {
    width: 100px;
    height: 75px;
  }
}

@media (max-width: 576px) {
  .haber-list-card {
    flex-direction: column;
  }

  .haber-list-img {
    width: 100%;
    height: 160px;
  }
}

/* ── CONTEXTUAL SUB-NAV WRAP ── */
#subNavWrap {
  position: relative;
  z-index: 998;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
  opacity: 0;
  pointer-events: none;
}

#subNavWrap.open {
  max-height: 60px;
  opacity: 1;
  pointer-events: auto;
}

.sub-nav-panel {
  display: none;
  background: linear-gradient(90deg, var(--navy) 0%, #1a2f4e 50%, var(--navy) 100%);
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.sub-nav-panel.active {
  display: block;
}

.sub-nav-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184, 137, 42, .12), transparent 60%);
  pointer-events: none;
}

.sub-nav-inner {
  padding: 10px 0;
  gap: 0 !important;
}

.sub-nav-link {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: all .2s;
  padding: 6px 20px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  white-space: nowrap;
  position: relative;
}

.sub-nav-link:last-child {
  border-right: none;
}

.sub-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all .25s ease;
}

.sub-nav-link:hover,
.sub-nav-link.active {
  color: var(--gold-light);
}

.sub-nav-link:hover::after,
.sub-nav-link.active::after {
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  #subNavWrap.open {
    max-height: 48px;
  }

  .sub-nav-panel {
    overflow-x: auto;
  }

  .sub-nav-inner {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    padding: 6px 0;
  }

  .sub-nav-link {
    font-size: .7rem;
    padding: 5px 14px;
  }
}

/* ══════════════════════════════════════════════════
   UMRE KAMPANYALARI SAYFASI STİLLERİ
   ══════════════════════════════════════════════════ */

/* ── Hero ── */
.camp-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.camp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 450px at 85% 40%, rgba(184, 137, 42, .13) 0%, transparent 65%),
    radial-gradient(ellipse 400px 300px at 5% 85%, rgba(184, 137, 42, .07) 0%, transparent 55%);
  pointer-events: none;
}

.camp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* Hex pattern overlay */
.camp-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='30,1 59,15 59,45 30,59 1,45 1,15' fill='none' stroke='rgba(184,137,42,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.camp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
  margin: 0 0 16px;
}

.camp-hero p {
  color: rgba(255, 255, 255, .62);
  font-size: .97rem;
  line-height: 1.8;
  margin: 0;
}

.camp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 137, 42, .2);
  border: 1px solid rgba(184, 137, 42, .4);
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.camp-hero-cta {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  position: relative;
}

.camp-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at top, rgba(184, 137, 42, .12), transparent 60%);
  pointer-events: none;
}

/* ── Section Wrap ── */
.camp-section {
  background: var(--cream);
  padding: 64px 0 80px;
}

/* ── Kampanya Kartı ── */
.camp-card {
  background: #fff;
  border: 1.5px solid var(--cream-dark);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.camp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 34, 64, .16);
  border-color: rgba(184, 137, 42, .4);
}

/* Görsel */
.camp-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.camp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.camp-card:hover .camp-card-img img {
  transform: scale(1.07);
}

/* Fiyat rozeti */
.camp-price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(184, 137, 42, .4);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Kart gövdesi */
.camp-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.camp-card-date {
  font-size: .76rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.camp-card-title {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.camp-card-desc {
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 18px;
}

.camp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--cream-dark);
  padding-top: 14px;
  margin-top: auto;
}

.camp-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .25s;
}

.camp-card-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  transform: translateX(3px);
}

.camp-card-price {
  font-family: 'Roboto Slab', serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ── Detay Sayfası ── */
.camp-detail-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 55%, #0d1f3c 100%);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}

.camp-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 90% 40%, rgba(184, 137, 42, .13) 0%, transparent 65%),
    radial-gradient(ellipse 400px 300px at 5% 85%, rgba(184, 137, 42, .07) 0%, transparent 55%);
  pointer-events: none;
}

.camp-detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.camp-detail-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
  margin: 0 0 14px;
}

.camp-detail-price {
  display: inline-block;
  font-family: 'Roboto Slab', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(212, 168, 75, .4);
  letter-spacing: .5px;
}

.camp-detail-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  border: 2px solid rgba(184, 137, 42, .3);
}

.camp-detail-img-wrap img {
  width: 100%;
  display: block;
}

/* Breadcrumb */
.camp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: .78rem;
}

.camp-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
}

.camp-breadcrumb a:hover {
  color: var(--gold-light);
}

.camp-breadcrumb span {
  color: rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
}

.camp-breadcrumb strong {
  color: rgba(255, 255, 255, .9);
}

/* Layout */
.camp-detail-layout {
  background: var(--cream);
  padding: 56px 0 72px;
}

/* Detay kutusu */
.camp-detail-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.camp-detail-box-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  background: linear-gradient(to right, var(--cream), #fff);
  border-bottom: 1px solid var(--border-light);
}

.camp-detail-box-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(15, 34, 64, .2);
}

.camp-detail-content {
  padding: 28px 32px;
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.85;
}

.camp-detail-content h2,
.camp-detail-content h3 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  margin: 26px 0 12px;
}

.camp-detail-content h2 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--gold-dim);
  padding-bottom: 8px;
}

.camp-detail-content p {
  margin-bottom: 16px;
}

.camp-detail-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}

.camp-detail-content ul li {
  padding: 6px 0 6px 8px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: .92rem;
  color: var(--text-mid);
}

.camp-detail-content ul li:last-child {
  border-bottom: none;
}

.camp-detail-content strong {
  color: var(--navy);
}

/* Lead Formu */
.camp-lead-form {
  background: linear-gradient(145deg, var(--navy) 0%, #1a3a6e 100%);
  border: 1px solid rgba(184, 137, 42, .25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 90px;
}

.camp-lead-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
}

.camp-lead-body {
  padding: 24px;
}

.camp-label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.camp-input {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: .9rem;
  transition: border-color .2s, background .2s;
  outline: none;
}

.camp-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.camp-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 3px rgba(184, 137, 42, .2);
}

.camp-input.is-invalid {
  border-color: #e74c3c;
}

.camp-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(184, 137, 42, .35);
}

.camp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 137, 42, .45);
}

.camp-kvkk-note {
  text-align: center;
  margin: 14px 0 0;
  font-size: .76rem;
  color: rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.camp-success-msg {
  background: rgba(39, 174, 96, .2);
  border: 1px solid rgba(39, 174, 96, .4);
  color: #2ecc71;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .camp-hero {
    padding: 52px 0 44px;
  }

  .camp-hero-cta {
    margin-top: 24px;
  }

  .camp-lead-form {
    position: static;
    margin-top: 28px;
  }

  .camp-detail-layout {
    padding: 40px 0 56px;
  }
}

@media (max-width: 767px) {
  .camp-hero h1 {
    font-size: 1.9rem;
  }

  .camp-detail-title {
    font-size: 1.7rem;
  }

  .camp-card-img {
    height: 190px;
  }

  .camp-section {
    padding: 44px 0 60px;
  }

  .camp-detail-content {
    padding: 20px;
  }

  .camp-detail-box-head {
    padding: 18px 20px;
  }
}

/* ── DUALAR SAYFA İÇERİK STİLLERİ ── */
.dua-block {
  background: #fff;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

.dua-block:hover {
  box-shadow: var(--shadow);
  border-left-color: var(--navy);
  transform: translateX(4px);
}

.dua-block h3 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.arabic-text {
  font-family: 'Amiri', serif;
  font-size: 1.5rem;
  color: var(--navy);
  direction: rtl;
  text-align: right;
  line-height: 2.2;
  background: linear-gradient(135deg, var(--cream), #f0ebe0);
  border-right: 3px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px 14px 14px;
  margin-bottom: 14px;
}

.dua-block p {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.dua-block p em {
  color: var(--text-muted);
  font-size: .82rem;
}

.dua-block strong {
  color: var(--navy);
}

.lead-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 36px;
}

.dualar-page-content h2 {
  font-family: 'Roboto Slab', serif;
  color: var(--navy);
  font-size: 1.35rem;
  margin: 40px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-dim);
}

.dualar-page-content ul {
  padding-left: 0;
  list-style: none;
}

.dualar-page-content ul li {
  padding: 8px 0 8px 12px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
  font-size: .92rem;
}

.dualar-page-content ul li:last-child {
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   MOBILE DRAWER — Premium Slide-In Navigation
   ═══════════════════════════════════════════ */

/* Overlay (karartma) */
#drawerOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.65);
  z-index: 1099;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#drawerOverlay.open {
  display: block;
  opacity: 1;
}

/* Drawer Panel */
#mobileDrawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 88vw;
  height: 100dvh;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 40px rgba(15, 34, 64, 0.28);
  overflow: hidden;
}
#mobileDrawer.open {
  transform: translateX(0);
}

/* Body scroll lock */
body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

/* ── Drawer Header ── */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  flex-shrink: 0;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Amiri', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

#drawerClose {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
#drawerClose:hover {
  background: rgba(212, 168, 75, 0.3);
  border-color: var(--gold-light);
  color: #fff;
  transform: rotate(90deg);
}

/* ── Drawer Body ── */
.drawer-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}
.drawer-body::-webkit-scrollbar {
  width: 3px;
}
.drawer-body::-webkit-scrollbar-track {
  background: #f4f5f7;
}
.drawer-body::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

/* ── Live Banner ── */
.drawer-live-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: filter 0.2s;
}
.drawer-live-banner:hover {
  filter: brightness(1.08);
  color: #fff;
}

.drawer-live-dot {
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 1.2s infinite;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* ── Section Titles ── */
.drawer-section-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 18px 20px 8px;
  border-bottom: 1px solid rgba(212, 200, 176, 0.35);
  margin-bottom: 4px;
}

/* ── Nav Links ── */
.drawer-nav {
  display: flex;
  flex-direction: column;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-left: 3px solid transparent;
  position: relative;
}
.drawer-link:hover {
  background: var(--cream);
  color: var(--navy);
  padding-left: 24px;
  border-left-color: var(--gold);
}
.drawer-link.active {
  background: rgba(184, 137, 42, 0.1);
  color: var(--navy);
  font-weight: 700;
  border-left-color: var(--gold);
}
.drawer-link.active .drawer-link-icon {
  background: var(--gold-dim);
  color: var(--gold);
}

/* Link Icon Badge */
.drawer-link-icon {
  width: 34px;
  height: 34px;
  background: #f4f5f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .85rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.drawer-link:hover .drawer-link-icon {
  background: rgba(184, 137, 42, 0.12);
  color: var(--gold);
}

/* ── CTA Buttons ── */
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #fff;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.22s;
  letter-spacing: 0.2px;
}
.drawer-cta:hover {
  background: linear-gradient(135deg, var(--green-light) 0%, #2a9e58 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 107, 58, 0.35);
}

.drawer-cta-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: all 0.2s;
}
.drawer-cta-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--cream);
}

/* Drawer sadece mobilde görünür */
@media (min-width: 992px) {
  #mobileDrawer,
  #drawerOverlay {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════
   MOBİL ALT NAVİGASYON BARI — Bottom Tab Bar
   ═══════════════════════════════════════════ */

#mobileBottomBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--white);
  border-top: 1px solid rgba(212, 200, 176, 0.5);
  box-shadow: 0 -4px 24px rgba(15, 34, 64, 0.12);
  display: flex;
  align-items: stretch;
  height: 62px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mbb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px 6px;
  transition: color 0.18s;
  position: relative;
  min-width: 0;
}

.mbb-item:active {
  transform: scale(0.92);
}

.mbb-item.active {
  color: var(--navy);
}

.mbb-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
}

.mbb-icon {
  position: relative;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
}

.mbb-label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .3px;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Canlı Yayın — özel kırmızı */
.mbb-item.mbb-live .mbb-icon,
.mbb-item.mbb-live .mbb-label {
  color: #c0392b;
}
.mbb-item.mbb-live.active::before {
  background: #c0392b;
}

.mbb-live-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 7px;
  height: 7px;
  background: #e74c3c;
  border-radius: 50%;
  border: 1.5px solid #fff;
  animation: livePulse 1.2s infinite;
}

/* İçeriğin altında gizlenmemesi için */
@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 992px) {
  #mobileBottomBar {
    display: none !important;
  }
}