/* =============================================
   ASİR GENÇLİĞİNİN İHYA VE İNŞASI DERNEĞİ
   Custom Styles
   ============================================= */

:root {
  --color-navy:   #1E3A5F;
  --color-gold:   #e8a020;
  --color-gold-dark: #c4861a;
  --color-green-light: #c8e6c9;
  --color-green-mid:   #a5d6a7;
  --color-bg:     #f8f9fa;
}

/* ── GLOBAL ── */
body {
  font-family: 'Inter', 'Nunito', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  background-color: var(--color-bg);
  color: #2d2d2d;
}

a { text-decoration: none; }

/* ── TOP BAR ── */
.topbar-old {
  background: #2DC8C8;
  padding: .55rem 0;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar-item {
  color: rgba(255,255,255,.9);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 400;
  transition: color .2s;
}

.topbar-item:hover { color: #fff; }

.topbar-label {
  font-weight: 700;
  color: #fff;
}

.topbar-item svg {
  width: 14px; height: 14px;
  stroke: #64748b;
  stroke-width: 1.8; fill: none;
  flex-shrink: 0;
}

.topbar-social {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}

.topbar-social:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }

.topbar-social svg {
  width: 15px; height: 15px;
  stroke: rgba(255,255,255,.9);
  stroke-width: 1.8; fill: none;
}

/* ── NAVBAR (white) ── */
.navbar-white {
  background: #fff;
  padding: .7rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.04);
  border-bottom: 2px solid #2DC8C8;
}

.logo-square {
  width: 48px; height: 48px;
  background: #2DC8C8;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,46,74,.25);
}

.logo-kisa {
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.brand-ana {
  font-size: .9rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
}

.brand-alt {
  font-size: .6rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ── MASAÜSTÜ MENÜ LINKLERI ── */
.navbar-white .navbar-nav .nav-link {
  font-size: .82rem;
  font-weight: 700;
  color: #475569 !important;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .5rem .85rem !important;
  border-radius: 6px;
  transition: all .2s ease;
  white-space: nowrap;
  position: relative;
}

.navbar-white .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #2DC8C8;
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}

.navbar-white .navbar-nav .nav-link:hover::after {
  width: 60%;
  left: 20%;
}

.navbar-white .navbar-nav .nav-link:hover {
  color: var(--color-navy) !important;
  background: rgba(45,200,200,.07);
  transform: translateY(-1px);
}

.navbar-white .navbar-nav .nav-link.active,
.navbar-white .navbar-nav .nav-item.active > .nav-link {
  color: var(--color-navy) !important;
  background: rgba(26,46,74,.06);
  font-weight: 800;
}

.navbar-white .navbar-nav .nav-link.active::after,
.navbar-white .navbar-nav .nav-item.active > .nav-link::after {
  width: 60%;
  left: 20%;
}

/* Dropdown menü */
.navbar-white .dropdown-menu {
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 12px 36px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.04);
  border-radius: 10px;
  padding: .4rem;
  min-width: 220px;
  margin-top: 8px;
  animation: dropdownFadeIn .2s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar-white .dropdown-item {
  font-size: .82rem;
  font-weight: 600;
  color: #475569;
  padding: .6rem 1rem;
  letter-spacing: .02em;
  border-radius: 6px;
  transition: all .15s ease;
}

.navbar-white .dropdown-item:hover,
.navbar-white .dropdown-item:focus {
  background: rgba(26,46,74,.06);
  color: var(--color-navy);
  padding-left: 1.2rem;
}

.navbar-white .dropdown-item.active,
.navbar-white .dropdown-item:active {
  background: #e9ecef;
  color: #1a2e4a;
  font-weight: 700;
}

/* nav-link-white (eski uyumluluk) */
.nav-link-white {
  font-size: .82rem;
  font-weight: 700;
  color: #475569 !important;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .5rem .85rem !important;
  border-radius: 6px;
  transition: all .2s ease;
}

.nav-link-white:hover,
.nav-link-white.active-white {
  color: var(--color-navy) !important;
  background: rgba(26,46,74,.06);
}

.navbar-toggler-dark {
  border-color: rgba(0,0,0,.15);
  border-radius: 6px;
}

/* ── MOBİL DRAWER MENÜ ── */
.mobile-drawer {
  width: 290px !important;
  background: #1a2e4a;
}

.mobile-drawer-header {
  background: #0f1e35;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  justify-content: space-between;
}

.drawer-brand-tc {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2DC8C8;
  margin-bottom: 3px;
}

.drawer-brand-name {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.drawer-close {
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
  transition: background .2s;
}

.drawer-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.drawer-close svg { width: 16px; height: 16px; }

.mobile-drawer-body {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.drawer-nav li a {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.4rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  border-left: 3px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}

.drawer-nav li a:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
  border-left-color: var(--color-gold);
}

.drawer-nav li a svg {
  width: 17px; height: 17px;
  stroke: rgba(255,255,255,.5);
  stroke-width: 1.8; fill: none;
  flex-shrink: 0;
  transition: stroke .2s;
}

.drawer-nav li a:hover svg { stroke: var(--color-gold); }

/* Mobil drawer alt menü (Hizmetlerimiz, Multimedya) */
.drawer-has-sub > a {
  justify-content: space-between;
}

.drawer-has-sub > a::after {
  content: '›';
  font-size: 1.1rem;
  opacity: .5;
  margin-left: auto;
}

.drawer-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0,0,0,.15);
  display: none;
}

.drawer-has-sub.open > .drawer-sub { display: block; }

.drawer-sub li a {
  padding: .6rem 1.4rem .6rem 2.8rem;
  font-size: .8rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.drawer-has-sub > a { cursor: pointer; }

.drawer-footer {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: auto;
}

.drawer-bagis-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: #7dbfa0;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 8px;
  padding: .7rem 1rem;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: background .2s;
}

.drawer-bagis-btn:hover { background: #62a888; color: #fff; }
.drawer-bagis-btn svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2; fill: none; }

.drawer-social {
  display: flex;
  gap: .5rem;
  justify-content: center;
}

.drawer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}

.drawer-social a:hover { background: rgba(255,255,255,.15); }

.drawer-social svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,.7); stroke-width: 1.8; fill: none;
}

/* ── HERO SLIDER ── */

/* ── HERO SLIDER ── */
.hero-carousel {
  margin-top: 0;
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: 0;
}

.hero-mosque-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.mosque-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.carousel-slide {
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Slayt arka plan resimleri */
.slide-1 {
  background: url('../../uploads/slider/slide1.jpg') center center / cover no-repeat;
}
.slide-2 {
  background: url('../../uploads/slider/slide2.jpg') center center / cover no-repeat;
}
.slide-3 {
  background: url('../../uploads/slider/slide3.jpg') center center / cover no-repeat;
}
.slide-4 {
  background: url('../../uploads/slider/slide4.jpg') center center / cover no-repeat;
}

/* İslami kubbe motifi — slayt arka plan dekor */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,35,.58);
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
}

.slide-ustbaslik {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}

.slide-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  margin-bottom: 1rem;
}

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Slide CTA butonları */
.slide-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.slide-btn-primary {
  background: #5aac8a;
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  border-radius: 30px;
  padding: .75rem 2rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.slide-btn-primary:hover {
  background: #469174;
  color: #fff;
  transform: translateY(-2px);
}

.slide-btn-outline {
  background: transparent;
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 30px;
  padding: .73rem 2rem;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
  display: inline-block;
}

.slide-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Sol dikey göstergeler */
.slide-vert-indicators {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vert-ind {
  width: 4px;
  height: 28px;
  background: rgba(255,255,255,.35);
  border: none;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: background .3s, height .3s;
}

.vert-ind.active {
  background: #fff;
  height: 40px;
}

/* Eski carousel-indicators ve controls gizle */
.hero-carousel .carousel-indicators { display: none; }
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.hero-carousel .carousel-control-prev { left: 14px; }
.hero-carousel .carousel-control-next { right: 14px; }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0);
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}

/* ── HIZLI ERİŞİM BANDI ── */
.hizli-erisim-wrap {
  background: transparent;
  padding: .5rem 0;
}

.hizli-erisim-band {
  display: flex;
  padding: 0;
  gap: .5rem;
}

.he-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  text-decoration: none;
  border-radius: 10px;
  transition: filter .2s, transform .15s;
  position: relative;
}

.he-item::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%;
  width: 1px;
  background: rgba(255,255,255,.2);
}

.he-item:last-child::after { display: none; }

.he-item:hover { filter: brightness(1.12); transform: translateY(-2px); }

.he-1 { background: #1a7a6e; }
.he-2 { background: #2e8b57; }
.he-3 { background: #1a5c8a; }
.he-4 { background: #4a6fa5; }
.he-5 { background: #7a5c8a; }

.he-ikon { flex-shrink: 0; opacity: .9; }
.he-ikon svg { stroke: #fff; display: block; width: 32px; height: 32px; }

.he-metin strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: .15rem;
}

.he-metin span {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.78);
}

@media (max-width: 1199px) {
  .hizli-erisim-band { flex-wrap: wrap; gap: 0; }
  .he-item { flex: 0 0 33.333%; border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 767px) {
  .hizli-erisim-wrap { background: transparent; padding: 8px 12px 4px; margin-top: 6px; }
  .hizli-erisim-wrap .container { max-width: 100%; padding: 0; }
  .hizli-erisim-band { flex-wrap: wrap; gap: 6px; }
  .he-item { flex: 0 0 calc(50% - 3px); border-radius: 10px; padding: .9rem 1rem; gap: .65rem; border: none; }
  .he-item:nth-child(4) { flex: 0 0 calc(50% - 3px); }
  .he-item::after { display: none; }
  .he-metin strong { font-size: .73rem; }
  .he-metin span { font-size: .66rem; }
  .he-ikon svg { width: 22px; height: 22px; }
}

/* ── ACİL BANNER ── */
.acil-banner {
  background: #d32f2f;
  padding: 1.1rem 0;
}

.acil-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.acil-icon svg {
  width: 22px; height: 22px;
}

.acil-baslik {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .15rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.acil-alt {
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}

.acil-btn {
  background: #fff;
  color: #d32f2f;
  font-size: .85rem;
  font-weight: 800;
  border-radius: 30px;
  padding: .6rem 1.4rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.acil-btn:hover {
  background: #ffebee;
  color: #c62828;
  transform: translateY(-1px);
}

.acil-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 1.8; fill: none;
}

/* Responsive slider */
@media (max-width: 768px) {
  .carousel-slide { height: 100svh; min-height: 600px; }
  .hero-carousel { height: 100svh; min-height: 600px; }
  .slide-title { font-size: 2rem; }
  .slide-vert-indicators { left: 10px; }
}

@media (max-width: 576px) {
  .carousel-slide { height: 100svh; min-height: 580px; }
  .hero-carousel { height: 100svh; min-height: 580px; }
  .slide-title { font-size: 1.5rem; }
  .slide-desc { font-size: .9rem; }
  .topbar-left .topbar-item:last-child { display: none; }
}

/* ── SECTION TITLES ── */
.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: .4rem;
}

.section-underline {
  width: 60px;
  height: 4px;
  background: #2DC8C8;
  border-radius: 2px;
  margin: 0 auto 2rem;
}

/* ── FAAALİYETLER ── */
.faaliyetler-section {
  padding: 4rem 0 3rem;
  background: #fff;
}

/* ── Faaliyet Slider ── */
.faaliyet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fs-kart {
  background: #fff;
  border: 1px solid #f0f4f8;
  border-radius: 14px;
  padding: 1.6rem 1.4rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}

.fs-kart:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.11);
}

.fs-ikon {
  width: 60px;
  height: 60px;
  background: rgba(45,200,200,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fs-ikon svg { stroke: #2DC8C8; }

.fs-baslik {
  font-size: .85rem;
  font-weight: 800;
  color: #1E3A5F;
  letter-spacing: .02em;
  line-height: 1.3;
}

.fs-aciklama {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991px) {
  .faaliyet-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 767px) {
  .faaliyet-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fs-kart { padding: 1.2rem 1rem; }
}

@media (max-width: 480px) {
  .faaliyet-grid { grid-template-columns: 1fr; gap: 10px; }
}

.faaliyet-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
  cursor: default;
}

.faaliyet-card:hover {
  box-shadow: 0 8px 30px rgba(26,46,74,.12);
  transform: translateY(-4px);
}

.faaliyet-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: #eef3fa;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faaliyet-icon svg {
  width: 32px;
  height: 32px;
  stroke: #1E3A5F;
  stroke-width: 1.8;
  fill: none;
}

.faaliyet-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: .5rem;
}

.faaliyet-card p {
  font-size: .875rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767px) {
  .faaliyetler-section { padding: 2.5rem 0; }
  .faaliyet-col { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
  .faaliyet-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    gap: 1rem;
  }
  .faaliyet-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    margin: 0;
    flex-shrink: 0;
  }
  .faaliyet-icon svg { width: 26px; height: 26px; }
  .faaliyet-card h5 { font-size: .9rem; margin-bottom: .2rem; }
  .faaliyet-card p { font-size: .8rem; line-height: 1.5; }
}

/* ── BİZ KİMİZ ── */
.biz-kimiz-section {
  padding: 5rem 0;
  background: #fff;
}

.bkz-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.bkz-img-placeholder {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
  line-height: 0;
  max-height: none;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.bkz-real-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(2.0);
  transform-origin: center 55%;
}

.bkz-badge {
  position: absolute;
  bottom: -18px;
  right: -16px;
  background: #2DC8C8;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: .65rem 1.1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: .45rem;
  box-shadow: 0 6px 20px rgba(26,46,74,.25);
}

.bkz-ustbas {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  color: #2DC8C8;
  border: 1.5px solid #2DC8C8;
  border-radius: 20px;
  padding: .3rem .9rem;
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}

.bkz-baslik {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.bkz-alinti {
  border-left: 4px solid #2DC8C8;
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: #374151;
  font-size: .95rem;
  line-height: 1.7;
  font-style: normal;
}

.bkz-aciklama {
  font-size: .88rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.bkz-hadis {
  background: #f8f5ec;
  border-left: 3px solid #c9a227;
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.2rem 1rem 3.2rem;
  position: relative;
  margin-bottom: 1.4rem;
}

.bkz-hadis::before {
  content: '\201C';
  position: absolute;
  top: -.1rem;
  left: .8rem;
  font-size: 4rem;
  line-height: 1;
  color: #c9a227;
  font-family: Georgia, serif;
  opacity: .7;
}

.bkz-hadis-metin {
  font-size: .9rem;
  font-style: italic;
  color: #3a4a5c;
  line-height: 1.6;
  margin-bottom: .4rem;
}

.bkz-hadis-kaynak {
  font-size: .75rem;
  font-weight: 700;
  color: #a07e18;
  text-transform: uppercase;
}

.bkz-liste {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .8rem;
}

.bkz-liste li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .84rem;
  color: #3a4a5c;
}

.bkz-liste li svg {
  stroke: #c9a227;
  flex-shrink: 0;
}

.bkz-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e8ecf0;
}

.bkz-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: .8rem .5rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e8ecf0;
}

.bkz-stat-icon {
  width: 40px;
  height: 40px;
  background: #eef3fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bkz-stat-icon svg {
  width: 18px;
  height: 18px;
}

.bkz-stat-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-navy);
}

.bkz-stat-item span {
  display: block;
  font-size: .72rem;
  color: #64748b;
}

.bkz-stat-divider {
  display: none;
}

@media (max-width: 991px) {
  .bkz-badge { right: 10px; bottom: -14px; }
  .bkz-baslik { font-size: 1.6rem; }
  .bkz-img-wrap { margin-bottom: 2rem; }
}

@media (max-width: 767px) {
  .biz-kimiz-section { padding: 3rem 0; }

  /* Görsel: mobilde küçük ölçek */
  .bkz-img-placeholder { min-height: 220px; }
  .bkz-img-placeholder img.bkz-real-img { height: auto; object-fit: unset; transform: scale(1.25); }
  .bkz-badge { font-size: .75rem; padding: .45rem .85rem; }

  /* Metin kutusu: hafif kart arka plan */
  .biz-kimiz-section .col-12.col-lg-7 {
    background: #fff;
    border-radius: 16px;
    padding: 1.6rem 1.2rem;
    box-shadow: 0 4px 20px rgba(26,46,74,.08);
    border: 1px solid #e8ecf0;
  }

  .bkz-ustbas { margin-bottom: .9rem; }
  .bkz-baslik { font-size: 1.35rem; line-height: 1.3; margin-bottom: .9rem; }

  /* Blockquote: arka plan bantlı */
  .bkz-alinti {
    background: #f0f4fa;
    border-left-width: 3px;
    border-radius: 0 8px 8px 0;
    padding: .75rem 1rem;
    font-size: .88rem;
    margin-bottom: .9rem;
  }

  .bkz-aciklama { font-size: .83rem; margin-bottom: 1.2rem; }

  /* Stats: 3 eşit sütun */
  .bkz-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    padding-top: 1rem;
  }

  .bkz-stat-divider { display: none; }

  .bkz-stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .4rem;
    background: #f8f9fa;
    border-radius: 0;
    padding: .75rem .5rem;
  }

  .bkz-stat-icon { width: 38px; height: 38px; }
  .bkz-stat-icon svg { width: 18px; height: 18px; }
  .bkz-stat-item strong { font-size: .75rem; }
  .bkz-stat-item span { font-size: .68rem; }
}

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

/* ══════════════════════════════════════════════════════
   BAĞIŞ BÖLÜMÜ — v2
══════════════════════════════════════════════════════ */

.bagis-section {
  position: relative;
  padding: 5rem 0 0;
  background: #2c4a63;
  overflow: hidden;
}
.bagis-deco-c1, .bagis-deco-c2 { display: none; }

/* Başlık */
.bagis-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.bagis-ust-etiket {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,162,39,.15);
  color: #c9a227;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 20px;
  padding: .35rem .9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(201,162,39,.3);
}
.bagis-baslik {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.2;
}
.bagis-alt-baslik {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Tablar */
.bagis-kategori-tabs { margin-bottom: 2rem; }
.bagis-tab {
  display: inline-block;
  padding: .4rem 1.2rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  user-select: none;
}
.bagis-tab:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.bagis-tab.active-tab {
  background: #c9a227;
  color: #2c4a63;
  border-color: #c9a227;
  font-weight: 700;
}

/* Kartlar */
.bagis-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e6ea;
  padding: 1.6rem 1.6rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
  box-shadow: none;
}
.bagis-card::before { display: none; }
.bagis-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.bagis-card-ikon {
  width: 54px;
  height: 54px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,39,.13);
  color: #c9a227;
  margin-bottom: 1rem;
}
.bagis-card-ikon svg {
  width: 26px; height: 26px;
  stroke: #c9a227;
  fill: none;
}

.bagis-etiket {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 20px;
  padding: .2rem .8rem;
  margin-bottom: .6rem;
  background: rgba(201,162,39,.12);
  color: #a07e18;
}
.bagis-card-baslik {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: .4rem;
  text-align: center;
}
.bagis-card-aciklama {
  font-size: .84rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
  text-align: center;
  align-self: stretch;
}
.btn-bagis-card {
  display: flex;
  align-items: center;
  gap: .45rem;
  justify-content: center;
  width: 100%;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: #c9a227;
  border: none;
  border-radius: 8px;
  padding: .65rem 1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
  margin-top: auto;
  align-self: stretch;
}
.btn-bagis-card:hover {
  background: #b8911f;
  color: #fff;
}

/* Tüm kategoriler linki */
.bagis-tum-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.bagis-tum-link:hover { color: var(--color-gold); border-color: var(--color-gold); }

/* IBAN */
.bagis-iban-wrap {
  margin-top: 3.5rem;
  margin-bottom: 0;
  padding: 0 0 3rem;
}
.bagis-iban-ic {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  backdrop-filter: blur(6px);
}
.bagis-iban-sol {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.bagis-iban-ikon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(201,162,39,.2);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bagis-iban-banka {
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
}
.bagis-iban-hesap {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.bagis-iban-orta {
  flex: 1;
  min-width: 0;
}
.bagis-iban-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-bottom: .35rem;
}
.iban-number {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  font-family: 'Courier New', monospace;
  word-break: break-all;
}
.bagis-iban-sag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .4rem;
  flex-shrink: 0;
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #2DC8C8;
  color: #1E3A5F;
  font-weight: 700;
  font-size: .85rem;
  border: none;
  border-radius: 8px;
  padding: .55rem 1.3rem;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.btn-copy:hover { background: var(--color-gold-dark); color: #fff; }
.btn-copy svg {
  width: 16px; height: 16px;
  stroke: #fff; stroke-width: 2; fill: none;
}

.copy-feedback {
  display: none;
  font-size: .8rem;
  color: var(--color-green-mid);
  margin-left: .75rem;
  vertical-align: middle;
}

/* ── HABERLER ── */
.haberler-section {
  padding: 5rem 0;
  background: #fff;
}

.haberler-ust {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.haberler-ustbas {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  border-radius: 20px;
  padding: .28rem .9rem;
  margin-bottom: .6rem;
  letter-spacing: .04em;
}

.haberler-baslik {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
}

.btn-tum-yazilar {
  background: #2DC8C8;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: .6rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.btn-tum-yazilar:hover {
  background: #1aabab;
  color: #fff;
  transform: translateY(-1px);
}

.btn-tum-yazilar svg {
  width: 15px; height: 15px;
  stroke: #fff; stroke-width: 2.2; fill: none;
}

/* Haber Kartı */
.haber-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}

.haber-card:hover {
  box-shadow: 0 10px 35px rgba(26,46,74,.12);
  transform: translateY(-4px);
}

.haber-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}

.haber-img-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

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

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

.haber-tarih-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #2DC8C8;
  color: #fff;
  text-align: center;
  padding: .5rem .75rem;
  border-bottom-left-radius: 10px;
  line-height: 1.2;
}

.haber-tarih-badge .gun {
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
}

.haber-tarih-badge .ay-yil {
  font-size: .7rem;
  font-weight: 600;
  opacity: .85;
}

.haber-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.haber-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: #64748b;
  margin-bottom: .75rem;
}

.haber-meta-item {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.haber-meta-item svg {
  width: 13px; height: 13px;
  stroke: #64748b; stroke-width: 1.8; fill: none;
}

.haber-card h5 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: .6rem;
}

.haber-card p {
  font-size: .83rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.btn-devami {
  background: #2DC8C8;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: .5rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  align-self: flex-start;
  transition: background .2s;
}

.btn-devami:hover { background: #1aabab; color: #fff; }
.btn-devami svg {
  width: 13px; height: 13px;
  stroke: #fff; stroke-width: 2.5; fill: none;
}

/* ── E-BÜLTEN ── */
.ebulten-section {
  background: linear-gradient(120deg, #0f1e35 0%, #1E3A5F 60%, #1e3a5f 100%);
  padding: 2.8rem 0;
}

.ebulten-baslik {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .3rem;
}

.ebulten-alt {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.ebulten-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: .25rem .25rem .25rem 1.2rem;
  max-width: 520px;
  margin-left: auto;
}

.ebulten-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: .9rem;
  min-width: 0;
}

.ebulten-input::placeholder { color: rgba(255,255,255,.45); }

.ebulten-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .55rem 1.3rem;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}

.ebulten-btn:hover { background: #1d4ed8; }
.ebulten-btn svg {
  width: 15px; height: 15px;
}

@media (max-width: 767px) {
  .ebulten-input-wrap { margin-left: 0; }
  .haberler-ust { flex-direction: column; align-items: flex-start; }
}

/* ── FOOTER ── */
.footer-main {
  background: linear-gradient(to bottom, #0e2d3d 0%, #0d2233 50%, #0a1b27 100%);
}

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(45,200,200,.15);
}

/* Logo */
.footer-logo-sq {
  width: 50px; height: 50px;
  background: var(--color-teal);
  border: 2px solid rgba(45,200,200,.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.footer-logo-ana {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.footer-logo-alt {
  font-size: .62rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

/* Sosyal medya */
.footer-social-row {
  display: flex;
  gap: .5rem;
}

.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}

.footer-social-btn:hover {
  background: #2DC8C8;
  border-color: #2DC8C8;
}

.footer-social-btn svg {
  width: 15px; height: 15px;
  stroke: rgba(255,255,255,.8);
  stroke-width: 1.8; fill: none;
}

.footer-social-btn:hover svg { stroke: #fff; }

/* Kolonlar */
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-gold);
  margin-bottom: 1.1rem;
}

.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-links li {
  margin-bottom: .55rem;
}

.footer-col-links a {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer-col-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* İletişim */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.footer-contact-ic {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.footer-contact-ic svg {
  width: 15px; height: 15px;
  stroke: var(--color-gold); stroke-width: 1.8; fill: none;
}

.footer-contact-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.35);
  margin-bottom: .1rem;
}

.footer-contact-val {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.75);
}

/* Alt bar */
.footer-bottom {
  padding: 1.1rem 0;
  background: rgba(0,0,0,.2);
  border-top: none;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,.7);
}

/* ── FOOTER MOBİL ── */
@media (max-width: 991px) {
  .footer-logo-wrap img { display: none; }
}

@media (max-width: 767px) {
  .footer-top { padding: 2.5rem 0 2rem; }

  /* İletişim kartları yatay */
  .footer-contact-list { gap: .6rem; }

  .footer-contact-row {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
    padding: .75rem 1rem;
    align-items: center;
    gap: .75rem;
  }

  .footer-contact-ic {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    flex-shrink: 0;
  }

  .footer-contact-label {
    font-size: .65rem;
    margin-bottom: .05rem;
  }

  .footer-contact-val {
    font-size: .88rem;
    color: rgba(255,255,255,.9);
    font-weight: 600;
  }

  .footer-col-title { margin-bottom: .8rem; }

  /* Alt bar ortala */
  .footer-bottom .d-flex {
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    text-align: center;
  }
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 768px) {
  .slide-title { font-size: 1.7rem; }
  .slide-desc  { font-size: .9rem; }
  .carousel-slide { height: 460px; }
  .hero-carousel { height: 460px; }
  .bagis-iban-ic { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding: 1.4rem 1.2rem; }
  .bagis-iban-sag { align-items: flex-start; width: 100%; }
  .iban-number { font-size: .95rem; letter-spacing: .06em; word-break: break-all; }
  .btn-copy { width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
  .slide-title { font-size: 1.35rem; }
  .carousel-slide { height: 380px; }
  .hero-carousel { height: 380px; }
  .navbar-brand-text { font-size: .78rem; max-width: 200px; }
}

/* ── SITE HEADER BAND ── */
.site-header-band {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #e8edf2;
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
}

.header-brand-link:hover {
  color: #fff;
  text-decoration: none;
}

.header-logo-img {  width: auto;  height: 100px;  border-radius: 0;  object-fit: contain;  flex-shrink: 0;  background: transparent;}









.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-brand-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1E3A5F;
  letter-spacing: .03em;
  line-height: 1.2;
}

.header-brand-slogan {
  font-size: .72rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

.header-contact-item {
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 500;
  transition: color .2s;
  text-decoration: none;
}
.header-contact-item:hover { color: #2DC8C8; }
.header-contact-item svg {
  width: 14px; height: 14px;
  stroke: #64748b;
  stroke-width: 1.8; fill: none;
  flex-shrink: 0;
}

.header-social-icons {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.header-social-icon {
  width: 32px; height: 32px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.header-social-icon:hover {
  background: rgba(45,200,200,.1);
  border-color: #2DC8C8;
}
.header-social-icon svg {
  width: 15px; height: 15px;
  stroke: #475569;
  stroke-width: 1.8; fill: none;
}

/* ── Responsive header ── */
@media (max-width: 767.98px) {
  .site-header-band {
    padding: .75rem 0;
  }
  .header-logo-img {
    width: auto;
    height: 70px;
    border-radius: 0;
  }
  .header-brand-title {
    font-size: 1.1rem;
  }
  .header-brand-slogan {
    font-size: .6rem;
  }
}

/* ── AUTH PAGES (giris, kayit, sifremi-unuttum) ── */
.page-giris #main-content,
.page-kayit #main-content,
.page-sifremi-unuttum #main-content,
.page-sifre-yenile #main-content {
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.page-giris .card-body,
.page-kayit .card-body,
.page-sifremi-unuttum .card-body,
.page-sifre-yenile .card-body {
  font-size: .85rem;
}
.page-giris .form-label,
.page-kayit .form-label,
.page-sifremi-unuttum .form-label,
.page-sifre-yenile .form-label {
  font-size: .8rem;
  margin-bottom: .25rem;
}
.page-giris .form-control,
.page-kayit .form-control,
.page-sifremi-unuttum .form-control,
.page-sifre-yenile .form-control {
  font-size: .82rem;
  padding: .4rem .65rem;
}
.page-giris .btn,
.page-kayit .btn,
.page-sifremi-unuttum .btn,
.page-sifre-yenile .btn {
  font-size: .82rem;
}
.page-giris h5, .page-giris h4,
.page-kayit h5, .page-kayit h4,
.page-sifremi-unuttum h5, .page-sifremi-unuttum h4,
.page-sifre-yenile h5, .page-sifre-yenile h4 {
  font-size: 1rem !important;
}

/* ── FOOTER LOGO - header ile aynı stil ── */
.footer-logo-wrap img {
  height: 52px !important;
  width: auto !important;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.footer-logo-sq { display: none !important; }
.footer-logo-ana {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: .03em;
  line-height: 1.2;
}
.footer-logo-alt {
  font-size: .65rem !important;
  color: rgba(255,255,255,.6) !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ── Hizmet Kartları Grid ── */
.hizmet-kartlar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .hizmet-kartlar-grid {
    display: block;
  }
  .hizmet-kartlar-grid a {
    display: none;
    min-height: 220px !important;
    border-radius: 16px !important;
    width: 100% !important;
  }
  .hizmet-kartlar-grid a:first-child {
    display: block;
  }
  .hizmet-slider-nav { display: flex !important; }
}

@media (min-width: 992px) {
  .hizmet-kartlar-grid a { display: block !important; }
  .hizmet-slider-nav { display: none !important; }
}

/* ══════════════════════════════════════════════════════
   HİZMET KATEGORİ SAYFASI (hk-*) — misvak tarzı tasarım
══════════════════════════════════════════════════════ */

/* ── Hero ── */
.hk-hero {
  position: relative;
  height: 420px;
  background: linear-gradient(135deg, #121e30 0%, #1E3A5F 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,32,.85) 0%, rgba(10,18,32,.45) 60%, rgba(10,18,32,.2) 100%);
}
.hk-hero-icerik {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
}
.hk-hero-baslik {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  margin-bottom: 10px;
  line-height: 1.2;
}
.hk-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.hk-breadcrumb .breadcrumb-item a:hover { color: #c9a227; }
.hk-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.45); }
.hk-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Sol İçerik ── */
.hk-alt-baslik {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2c44;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 3px solid #c9a227;
  display: inline-block;
}
.hk-aciklama {
  font-size: 1.02rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── Kampanya ── */
.hk-kampanya {
  background: #f0f7f4;
  border: 1px solid #c8e6d8;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.hk-kampanya-ust {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #1e6b4f;
  font-size: .85rem;
  margin-bottom: .75rem;
}
.hk-progress {
  height: 8px;
  background: #d4ebe0;
  border-radius: 8px;
  overflow: hidden;
}
.hk-progress-ic {
  height: 100%;
  background: linear-gradient(90deg, #1e6b4f, #5aac8a);
  border-radius: 8px;
  transition: width .6s ease;
}

/* ── Banka Hesapları ── */
.hk-banka-wrap {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.hk-banka-baslik {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2c44;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #eef0f4;
}
.hk-banka-satir {
  padding: .9rem 0;
  border-bottom: 1px solid #f0f2f5;
}
.hk-banka-satir:last-child { border-bottom: none; padding-bottom: 0; }
.hk-banka-isim {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .5rem;
  font-size: .9rem;
  color: #333;
}
.hk-iban-satir {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f5f7fa;
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  padding: .55rem .9rem;
}
.hk-iban-no {
  font-size: .88rem;
  letter-spacing: .04em;
  color: #1a2c44;
  flex: 1;
}
.hk-kopyala-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #1e3a5f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .35rem .75rem;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.hk-kopyala-btn:hover { background: #152b48; }

/* ── Bağış Formu Kartı ── */
.hk-form-kart {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.hk-form-baslik {
  background: linear-gradient(135deg, #1a2c44 0%, #1E3A5F 100%);
  color: #fff;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 3px solid #c9a227;
}
.hk-form-icerik {
  padding: 1.75rem 1.5rem;
}
.hk-form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Tutar Butonları ── */
.hk-tutar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hk-tutar-btn {
  background: #f5f7fa;
  border: 1.5px solid #dde1e8;
  border-radius: 8px;
  padding: .55rem .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.hk-tutar-btn:hover {
  border-color: #1e3a5f;
  color: #1e3a5f;
  background: #eef2f8;
}
.hk-tutar-btn.aktif {
  background: #1e3a5f;
  border-color: #1e3a5f;
  color: #fff;
}

/* ── Ödeme Seçenekleri ── */
.hk-odeme-secenekler {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hk-odeme-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem;
  border: 1.5px solid #dde1e8;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .15s;
  font-size: .9rem;
  font-weight: 500;
}
.hk-odeme-item:has(input:checked) {
  border-color: #1e3a5f;
  background: #eef2f8;
}
.hk-odeme-item input { flex-shrink: 0; accent-color: #1e3a5f; }

/* ── Bağış Gönder Butonu ── */
.hk-bagis-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: linear-gradient(135deg, #c9a227 0%, #e0b93d 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 10px;
  padding: .9rem;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  letter-spacing: .02em;
}
.hk-bagis-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,.35);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .hk-hero { height: 280px; }
  .hk-hero-baslik { font-size: 1.6rem; }
  .hk-hero-icerik { padding-bottom: 24px; }
  .hk-tutar-grid { grid-template-columns: repeat(2, 1fr); }
  .hk-form-kart { position: static; }
}

/* ── hk-zengin-icerik içi bloklar ── */
.hk-zengin-icerik { margin-bottom: 2rem; }
.hk-icerik-blok p { font-size:1.02rem; color:#444; line-height:1.85; margin-bottom:1.25rem; }
.hk-hadis {
  border-left: 4px solid #c9a227;
  background: #fdf8ec;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #5a4a1a;
  border-radius: 0 8px 8px 0;
  font-size: .98rem;
  line-height: 1.7;
}
.hk-hadis-kaynak { font-style: normal; font-size: .82rem; color: #9a7c30; display:block; margin-top:.4rem; }
.hk-icerik-baslik { font-size:1.15rem; font-weight:700; color:#1a2c44; margin:1.5rem 0 .75rem; padding-bottom:.4rem; border-bottom:2px solid #eef0f4; }
.hk-liste { padding-left:1.2rem; color:#444; line-height:1.9; }
.hk-liste li { margin-bottom:.4rem; }
.hk-istatistik-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:1.5rem 0; }
.hk-stat-kart { background:#f5f7fa; border:1px solid #e5e9ef; border-radius:10px; padding:1rem .75rem; text-align:center; }
.hk-stat-sayi { display:block; font-size:1.35rem; font-weight:800; color:#1e3a5f; line-height:1.2; }
.hk-stat-aciklama { display:block; font-size:.75rem; color:#666; margin-top:.3rem; line-height:1.4; }
@media(max-width:767px){ .hk-istatistik-grid{ grid-template-columns:1fr 1fr; } }

/* ═══════════════════════════════════════════════════════
   FAALİYET DETAY SAYFASI (fd-*)
═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.fd-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #0d1e32 0%, #1E3A5F 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.fd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,26,.92) 0%, rgba(8,14,26,.55) 50%, rgba(8,14,26,.25) 100%);
}
.fd-hero-icerik {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  padding-top: 80px;
}
.fd-hero-etiket {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
  border: 1.5px solid;
  margin-bottom: 1rem;
}
.fd-hero-baslik {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .85rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  max-width: 700px;
}
.fd-hero-ozet {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.25rem;
  max-width: 620px;
  line-height: 1.65;
}
.fd-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.fd-breadcrumb .breadcrumb-item a:hover { color: #c9a227; }
.fd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.4); }
.fd-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── İçerik Alanı ── */
.fd-icerik-wrap .fd-icerik { font-size: 1.01rem; color: #3a3a3a; }
.fd-giris {
  font-size: 1.12rem;
  color: #222;
  line-height: 1.85;
  margin-bottom: 1.75rem;
  padding-left: 1.1rem;
  border-left: 4px solid #c9a227;
}
.fd-icerik p { line-height: 1.85; color: #444; margin-bottom: 1.1rem; }

/* ── İstatistik Kartları ── */
.fd-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 1.75rem 0 2rem;
}
.fd-stat {
  background: #f5f7fa;
  border: 1px solid #e4e8ef;
  border-top: 3px solid #1e3a5f;
  border-radius: 10px;
  padding: 1.1rem .9rem;
  text-align: center;
}
.fd-stat-n {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1.2;
  margin-bottom: .35rem;
}
.fd-stat span:last-child {
  font-size: .78rem;
  color: #666;
  line-height: 1.4;
}

/* ── Başlıklar ── */
.fd-baslik {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2c44;
  margin: 2rem 0 .9rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #eef0f4;
}

/* ── Liste ── */
.fd-liste {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.25rem;
}
.fd-liste li {
  padding: .5rem 0 .5rem 1.6rem;
  position: relative;
  color: #444;
  line-height: 1.65;
  border-bottom: 1px solid #f2f4f7;
}
.fd-liste li:last-child { border-bottom: none; }
.fd-liste li::before {
  content: '';
  position: absolute;
  left: .35rem;
  top: .95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a227;
}

/* ── Hadis Alıntısı ── */
.fd-hadis {
  background: linear-gradient(135deg, #fdf8ec 0%, #fef9f0 100%);
  border-left: 5px solid #c9a227;
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: #5a4010;
  font-size: 1rem;
  line-height: 1.8;
  box-shadow: 0 2px 12px rgba(201,162,39,.1);
}
.fd-hadis span {
  display: block;
  margin-top: .6rem;
  font-style: normal;
  font-size: .8rem;
  color: #9a7c30;
  font-weight: 600;
}

/* ── CTA Kutusu ── */
.fd-cta-kutu {
  background: linear-gradient(135deg, #1a2c44 0%, #1E3A5F 100%);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fd-cta-kutu p {
  color: rgba(255,255,255,.9);
  margin: 0;
  flex: 1;
  font-size: .97rem;
  line-height: 1.6;
}
.fd-cta-btn {
  background: linear-gradient(135deg, #c9a227 0%, #e0b93d 100%);
  color: #1a1a1a;
  font-weight: 800;
  font-size: .88rem;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
  display: inline-block;
}
.fd-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,162,39,.35); color: #1a1a1a; }

/* ── Alt Gezinme ── */
.fd-alt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eef0f4;
  flex-wrap: wrap;
  gap: .75rem;
}
.fd-geri-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #555;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color .15s;
}
.fd-geri-btn:hover { color: #1e3a5f; }
.fd-bagis-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #c9a227;
  color: #1a1a1a;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: 8px;
  transition: background .15s;
}
.fd-bagis-btn:hover { background: #b8911f; color: #1a1a1a; }

/* ── Sidebar ── */
.fd-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }
.fd-sidebar-kart {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.fd-sidebar-baslik {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #888;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid #f0f2f5;
}
.fd-durum-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .84rem;
  font-weight: 700;
  padding: .45rem .9rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}
.fd-durum-badge.aktif { background: #e8f5ee; color: #1e6b4f; }
.fd-durum-badge.tamamlandi { background: #eef0f4; color: #555; }
.fd-durum-badge.pasif { background: #fff8e1; color: #b8860b; }
.fd-sidebar-satir { display: flex; justify-content: space-between; align-items: center; font-size: .88rem; margin-top: .5rem; }
.fd-sidebar-etiket { color: #888; }
.fd-sidebar-deger { font-weight: 600; color: #333; }

/* ── Bağış Kutusu (Sidebar) ── */
.fd-bagis-kutu { background: linear-gradient(135deg, #1a2c44 0%, #1E3A5F 100%); border: none; }
.fd-bagis-kutu .fd-sidebar-baslik { color: rgba(255,255,255,.6); border-bottom-color: rgba(255,255,255,.1); }
.fd-bagis-kutu .fd-sidebar-baslik svg { stroke: rgba(255,255,255,.6); }
.fd-sidebar-metin { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 1rem; }
.fd-sidebar-bagis-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #c9a227, #e0b93d);
  color: #1a1a1a;
  font-weight: 800;
  font-size: .9rem;
  padding: .8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.fd-sidebar-bagis-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,162,39,.4); color: #1a1a1a; }

/* ── Paylaşım ── */
.fd-paylasim { display: flex; gap: 8px; flex-wrap: wrap; }
.fd-paylasim-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  padding: .45rem .8rem;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity .15s;
}
.fd-paylasim-btn:hover { opacity: .85; }
.fd-paylasim-btn.fb { background: #1877f2; color: #fff; }
.fd-paylasim-btn.tw { background: #1da1f2; color: #fff; }
.fd-paylasim-btn.wa { background: #25d366; color: #fff; }

/* ── Diğer Faaliyetler ── */
.fd-diger-liste { list-style: none; padding: 0; margin: 0; }
.fd-diger-liste li { border-bottom: 1px solid #f2f4f7; }
.fd-diger-liste li:last-child { border-bottom: none; }
.fd-diger-liste a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
  color: #444;
  text-decoration: none;
  font-size: .88rem;
  transition: color .15s;
}
.fd-diger-liste a:hover { color: #1e3a5f; }

/* ── Responsive ── */
@media (max-width: 991px) { .fd-sidebar { position: static; } }
@media (max-width: 767px) {
  .fd-hero { min-height: 340px; }
  .fd-hero-baslik { font-size: 1.9rem; }
  .fd-hero-ozet { font-size: .95rem; }
  .fd-stat-grid { grid-template-columns: 1fr 1fr; }
  .fd-cta-kutu { flex-direction: column; }
}
@media (max-width: 480px) { .fd-stat-grid { grid-template-columns: 1fr; } }
