/* ==========================================================================
   İMAYDER — Yerleşim Katmanı (üst bar, header, hero, footer)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Üst bar
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--brand-900);
  color: var(--brand-200);
  font-size: var(--fs-xs);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.topbar__inner, .topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.4rem; }
.topbar a { color: inherit; display: inline-flex; align-items: center; gap: 0.42rem; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; opacity: 0.75; }

.topbar__divider { width: 1px; height: 16px; background: rgba(255,255,255,0.14); }

.topbar__socials { display: flex; gap: 0.35rem; }
.topbar__socials a {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.topbar__socials a:hover { background: var(--gold-500); color: var(--brand-900); transform: translateY(-1px); }
.topbar__socials svg { width: 13px; height: 13px; opacity: 1; }

/* Hicri tarih rozeti */
.hijri {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--gold-300);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .topbar { display: none; }
  :root { --topbar-h: 0px; }
}

/* --------------------------------------------------------------------------
   2. Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              height var(--dur-base) var(--ease-out);
}
.header.is-stuck { box-shadow: 0 4px 24px rgba(13, 27, 35, 0.08); }

.header__inner, .header__in {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: height var(--dur-base) var(--ease-out);
}
.header.is-stuck .header__inner, .header.is-stuck .header__in { height: 70px; }

/* Logo */
.brand { display: inline-flex; align-items: center; gap: 0.85rem; flex: none; }
.brand__mark {
  height: 52px;
  width: auto;
  transition: height var(--dur-base) var(--ease-out);
}
.header.is-stuck .brand__mark { height: 44px; }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--brand-800);
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 480px) {
  .brand__text { display: none; }
}

/* Ana menü */
.nav { display: flex; align-items: center; gap: 0.15rem; }

.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.nav__link:hover { color: var(--brand-700); background: var(--brand-50); }
.nav__link svg.caret { width: 13px; height: 13px; opacity: 0.55; transition: transform var(--dur-fast) var(--ease-out); }
.nav__item:hover .nav__link svg.caret { transform: rotate(180deg); }

.nav__link.is-active { color: var(--brand-700); font-weight: 600; }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
}

/* Açılır menü */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 268px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              visibility var(--dur-base);
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px; height: 11px;
  background: var(--surface);
  border-left: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}

.dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.68rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-base);
  color: var(--ink-700);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.dropdown__link:hover { background: var(--brand-50); color: var(--brand-700); }
.dropdown__icon {
  width: 32px; height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  color: var(--brand-600);
}
.dropdown__link:hover .dropdown__icon { background: var(--brand-600); color: #fff; }
.dropdown__icon svg { width: 16px; height: 16px; }
.dropdown__meta { font-size: var(--fs-xs); color: var(--text-faint); display: block; margin-top: 1px; }
.dropdown__in { display: flex; flex-direction: column; gap: 2px; }

/* Header aksiyonları */
.header__actions, .header__tools { display: flex; align-items: center; gap: 0.55rem; flex: none; }

.icon-btn {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-600);
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
}
.icon-btn:hover { background: var(--brand-50); color: var(--brand-700); }
.icon-btn svg { width: 19px; height: 19px; }

.burger { display: none; }

@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: grid; }
  .header__cta { display: none; }
}

/* --------------------------------------------------------------------------
   3. Mobil çekmece
   -------------------------------------------------------------------------- */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 41, 58, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
  z-index: var(--z-drawer);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 88vw);
  height: 100dvh;
  background: var(--surface);
  box-shadow: var(--sh-xl);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  z-index: calc(var(--z-drawer) + 1);
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: none; }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  flex: none;
}
.drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.25rem 2rem; }
.drawer__foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-alt);
  flex: none;
}

.mnav { display: flex; flex-direction: column; }
.mnav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0.5rem;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--ink-700);
  border-bottom: 1px solid var(--border-soft);
}
.mnav__link:hover, .mnav__link.is-active { color: var(--brand-700); }
.mnav__link svg { width: 17px; height: 17px; opacity: 0.5; transition: transform var(--dur-fast) var(--ease-out); }
.mnav__group.is-open > .mnav__link svg { transform: rotate(180deg); }

.mnav__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-out);
}
.mnav__group.is-open .mnav__sub { grid-template-rows: 1fr; }
.mnav__sub-inner { overflow: hidden; }
.mnav__sub a {
  display: block;
  padding: 0.72rem 0.5rem 0.72rem 1.5rem;
  font-size: var(--fs-base);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.mnav__sub a::before {
  content: '';
  position: absolute;
  left: 0.45rem; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px;
  background: var(--gold-500);
}
.mnav__sub a:hover { color: var(--brand-700); }

/* --------------------------------------------------------------------------
   4. Arama katmanı
   -------------------------------------------------------------------------- */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 41, 58, 0.94);
  backdrop-filter: blur(10px);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }

.search-box {
  width: min(720px, 100%);
  transform: translateY(-20px);
  transition: transform var(--dur-slow) var(--ease-out);
}
.search-overlay.is-open .search-box { transform: none; }

.search-box__field {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}
.search-box__field svg { width: 22px; height: 22px; color: var(--brand-300); flex: none; }
.search-box__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 1.15rem;
  color: #fff;
  padding: 0.85rem 0;
}
.search-box__input::placeholder { color: rgba(255,255,255,0.44); }
.search-box__hint { margin-top: 1.25rem; color: rgba(255,255,255,0.5); font-size: var(--fs-sm); text-align: center; }
.search-box__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; }
.search-box__tags a {
  font-size: var(--fs-xs);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.14);
}
.search-box__tags a:hover { background: var(--gold-500); color: var(--brand-900); border-color: transparent; }

.search-close {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.search-close:hover { background: rgba(255,255,255,0.18); color: #fff; transform: rotate(90deg); }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-900);
  isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1400ms var(--ease-in-out);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9000ms linear;
}
.hero__slide.is-active img { transform: scale(1); }

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(6,41,58,0.96) 0%, rgba(6,41,58,0.82) 42%, rgba(6,41,58,0.42) 100%),
    linear-gradient(0deg, rgba(6,41,58,0.75) 0%, transparent 45%);
}

.hero .motif-grid { z-index: -1; opacity: 0.32; }

.hero__glow-1, .hero__glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.55;
}
.hero__glow-1 {
  width: 520px; height: 520px;
  background: rgba(26, 123, 163, 0.5);
  top: -180px; right: -110px;
  z-index: -1;
}
.hero__glow-2 {
  width: 420px; height: 420px;
  background: rgba(201, 162, 39, 0.22);
  bottom: -180px; left: 12%;
  z-index: -1;
}

.hero__inner, .hero__in {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 9vw, 7rem);
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1.1rem 0.5rem 0.6rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  font-size: var(--fs-xs);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 1.6rem;
}
.hero__eyebrow-dot {
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--brand-900);
}
.hero__eyebrow-dot svg { width: 12px; height: 12px; }

.hero__title {
  font-size: var(--fs-4xl);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-400);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.06em;
  width: 100%; height: 0.32em;
  background: rgba(201, 162, 39, 0.18);
  z-index: -1;
  border-radius: 2px;
}

.hero__text {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.72;
  color: rgba(233, 244, 248, 0.85);
  max-width: 56ch;
  margin-bottom: 2.25rem;
}

.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Hero alt bilgi şeridi */
.hero__strip, .hero__strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__strip .stat,
.hero__strip-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.35rem;
  color: #fff;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: background-color var(--dur-fast) var(--ease-out);
}
.hero__strip .stat:first-child,
.hero__strip-item:first-child { border-left: 0; }
.hero__strip .stat:hover,
.hero__strip-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.hero__strip .stat {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.15rem;
}
.hero__strip .stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-300);
}
.hero__strip .stat span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}
.hero__strip-icon {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  color: var(--gold-300);
}
.hero__strip-icon svg { width: 18px; height: 18px; }
.hero__strip-label { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); letter-spacing: 0.07em; text-transform: uppercase; }
.hero__strip-value { font-size: var(--fs-base); font-weight: 600; margin-top: 1px; }

@media (max-width: 1000px) {
  .hero__strip, .hero__strip-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__strip .stat:nth-child(3), .hero__strip-item:nth-child(3) { border-left: 0; }
  .hero__strip .stat:nth-child(n+3), .hero__strip-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 620px) {
  .hero { min-height: auto; }
  .hero__strip { position: static; background: var(--brand-800); }
  .hero__strip, .hero__strip-inner { grid-template-columns: 1fr; }
  .hero__strip .stat, .hero__strip-item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .hero__strip .stat:first-child, .hero__strip-item:first-child { border-top: 0; }
}

/* Hero noktaları */
.hero__dots {
  position: absolute;
  left: var(--gutter);
  bottom: 2.25rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero__dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.28);
  border-radius: var(--r-pill);
  transition: background-color var(--dur-base) var(--ease-out), width var(--dur-base) var(--ease-out);
}
.hero__dot.is-active { background: var(--gold-400); width: 46px; }
@media (max-width: 620px) { .hero__dots { display: none; } }

/* --------------------------------------------------------------------------
   6. Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */

.page-head {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(760px 300px at 82% 8%, rgba(26,123,163,0.34), transparent 60%),
    linear-gradient(140deg, var(--brand-900) 0%, var(--brand-800) 62%, #062231 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-head .motif-grid { opacity: 0.28; z-index: -1; }
.page-head__inner, .page-head__in { position: relative; z-index: 1; }
.page-head__title { color: #fff; font-size: var(--fs-3xl); margin-block: 0.85rem 0.7rem; }
.page-head__desc { color: rgba(233,244,248,0.78); max-width: 62ch; font-size: var(--fs-md); }

.page-head__deco {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 320px; height: 320px;
  opacity: 0.09;
  z-index: -1;
}

/* --------------------------------------------------------------------------
   7. İçerik + kenar çubuğu ızgarası
   -------------------------------------------------------------------------- */

.with-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
.with-side__aside { position: sticky; top: calc(var(--header-h) + 24px); }

@media (max-width: 1080px) {
  .with-side { grid-template-columns: minmax(0, 1fr); }
  .with-side__aside { position: static; }
}

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */

.footer {
  position: relative;
  background: linear-gradient(180deg, #072433 0%, var(--brand-900) 100%);
  color: var(--brand-200);
  overflow: hidden;
  isolation: isolate;
}
.footer .motif-grid { opacity: 0.26; z-index: -1; }

/* Bülten şeridi */
.newsletter {
  position: relative;
  margin-bottom: -1px;
  background: linear-gradient(120deg, var(--brand-700), var(--brand-600) 55%, var(--brand-500));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  isolation: isolate;
}
.newsletter__in {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.newsletter::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  z-index: -1;
}
.newsletter__title { color: #fff; font-size: var(--fs-2xl); margin-bottom: 0.4rem; }
.newsletter__text { color: rgba(255,255,255,0.78); font-size: var(--fs-base); max-width: 48ch; }

.newsletter__form { display: flex; gap: 0.6rem; min-width: min(440px, 100%); }
.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: #fff;
  outline: none;
  transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter__input:focus { background: rgba(255,255,255,0.2); border-color: #fff; }

@media (max-width: 860px) {
  .newsletter, .newsletter__in { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
}

.footer__main {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

@media (max-width: 1000px) { .footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__main { grid-template-columns: 1fr; } }

.footer__brand { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.35rem; }
.footer__brand img { height: 58px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.35rem; color: #fff; letter-spacing: 0.04em; }
.footer__brand-sub { font-size: 0.6rem; letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; }

.footer__about { font-size: var(--fs-base); line-height: 1.75; color: rgba(166, 214, 232, 0.72); }

.footer__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: #fff;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer__title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: var(--gold-500);
}

.footer__links { display: flex; flex-direction: column; gap: 0.72rem; }
.footer__links a {
  color: rgba(166, 214, 232, 0.78);
  font-size: var(--fs-base);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.footer__links a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold-500);
  transform: rotate(45deg);
  flex: none;
  opacity: 0.65;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.footer__links a:hover { color: #fff; transform: translateX(4px); }
.footer__links a:hover::before { opacity: 1; }

.footer__contact { display: flex; flex-direction: column; gap: 1.1rem; }
.footer__contact-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.footer__contact-icon {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  color: var(--gold-400);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer__contact-icon svg { width: 17px; height: 17px; }
.footer__contact-label { font-size: var(--fs-xs); color: rgba(166,214,232,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.footer__contact-value { color: #fff; font-size: var(--fs-base); font-weight: 500; margin-top: 2px; }
.footer__contact-value:hover { color: var(--gold-300); }

.footer__socials { display: flex; gap: 0.6rem; margin-top: 1.6rem; }
.footer__socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  transition: all var(--dur-fast) var(--ease-out);
}
.footer__socials a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--brand-900);
  transform: translateY(-3px);
}
.footer__socials svg { width: 17px; height: 17px; }

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: rgba(166, 214, 232, 0.6);
}
.footer__bottom a { color: inherit; }
.footer__bottom a:hover { color: #fff; }
.footer__bottom-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__bottom-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
}

/* Besmele şeridi */
.basmala {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 1.4rem;
  color: rgba(236, 212, 143, 0.5);
  position: relative;
  z-index: 1;
}
.basmala .ornament { flex: 1 1 auto; max-width: 160px; }
.basmala p.arabic { margin: 0; flex: none; direction: rtl; }
