/* =====================================
   Türk Hristiyan Birliği Kiliseleri
   style.css
   ===================================== */

:root {
  --navy: #0b1a30;
  --navy-deep: #071120;
  --navy-soft: #16294a;
  --gold: #c9a24b;
  --gold-light: #dfbc6a;
  --gold-tint: rgba(201, 162, 75, 0.12);
  --cream: #f8f5ef;
  --white: #ffffff;
  --ink: #16202e;
  --ink-soft: #5d6b7c;
  --line: #e6e1d7;

  --shadow-sm: 0 2px 10px rgba(11, 26, 48, 0.05);
  --shadow-md: 0 12px 30px rgba(11, 26, 48, 0.09);
  --shadow-lg: 0 28px 60px rgba(11, 26, 48, 0.16);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.35s var(--ease);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1200px;
  --header-h: 78px;
  --radius: 10px;
  --radius-sm: 6px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.75;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

::selection {
  background-color: var(--gold);
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  z-index: 2000;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* =====================================
   Okuma ilerleme çubuğu
   ===================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1100;
  transition: width 0.1s linear;
}

/* =====================================
   Üst bar
   ===================================== */
.top-bar {
  background-color: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  padding: 9px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}
.top-bar-item i {
  color: var(--gold);
  font-size: 0.8rem;
}
a.top-bar-item:hover {
  color: #fff;
}

.top-bar-social {
  display: flex;
  gap: 14px;
}
.top-bar-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color var(--t);
}
.top-bar-social a:hover {
  color: var(--gold);
}

/* =====================================
   Header
   ===================================== */
.site-header {
  background-color: rgba(11, 26, 48, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color var(--t), box-shadow var(--t);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header.scrolled {
  background-color: rgba(7, 17, 32, 0.985);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.site-header .container {
  max-width: 1400px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
  margin-right: auto;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
  display: block;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-type {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.logo-sub {
  font-size: 0.66rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

/* Navigasyon */
.main-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 9px 10px;
  transition: color var(--t);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.2px;
  position: relative;
  white-space: nowrap;
  display: block;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-link:hover {
  color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  transition: var(--t);
  position: relative;
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

.menu-toggle.open .hamburger {
  background-color: transparent;
}
.menu-toggle.open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =====================================
   Butonlar
   ===================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--t);
  cursor: pointer;
  border: 1.5px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.83rem;
}
.btn-lg {
  padding: 17px 42px;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201, 162, 75, 0.28);
}
.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 162, 75, 0.42);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background-color: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background-color: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

.text-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t), color var(--t);
}
.text-link i {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform var(--t);
}
.text-link:hover {
  color: var(--gold);
}
.text-link:hover i {
  transform: translateX(4px);
}

/* =====================================
   HERO
   ===================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 110px 0 190px;
}

/* Mobil tarayıcılarda adres çubuğu yüzünden 100vh taşıyor */
@supports (height: 100svh) {
  .hero {
    min-height: calc(100svh - var(--header-h));
  }
}

.hero-bg {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.1) translate(1%, -1.5%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 32, 0.86) 0%,
    rgba(11, 26, 48, 0.7) 45%,
    rgba(7, 17, 32, 0.94) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 26px;
}

.eyebrow-line {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
  margin-bottom: 26px;
  letter-spacing: -0.5px;
  line-height: 1.12;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 660px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll-line {
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollcue 1.8s ease-in-out infinite;
}

@keyframes scrollcue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 0;
  }
}

/* =====================================
   İbadet saatleri kartı (hero üstüne biner)
   ===================================== */
.service-section {
  position: relative;
  margin-top: -120px;
  z-index: 5;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-top: 3px solid var(--gold);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 32px;
  transition: background-color var(--t);
}
.service-item + .service-item {
  border-left: 1px solid var(--line);
}
.service-item:hover {
  background-color: var(--cream);
}

.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.service-time {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 2px;
}
.service-note {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* =====================================
   Bölüm temelleri
   ===================================== */
.section {
  padding: 110px 0;
}
.section.bg-light {
  background-color: var(--cream);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow.centered {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.section-heading.light .section-title {
  color: var(--white);
}
.section-heading.light .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.lead-text {
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.8;
}

.split-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* =====================================
   Asimetrik ikili düzen + kemerli çerçeve
   ===================================== */
.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.split-layout.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

/* Kilise mimarisinden gelen kemer formu */
.arch-frame {
  position: relative;
  border-radius: 260px 260px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.arch-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.8s var(--ease);
}
.arch-frame:hover img {
  transform: scale(1.04);
}
.arch-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 246px 246px var(--radius-sm) var(--radius-sm);
  pointer-events: none;
}

/* Kitap kapağı: kırpılmadan, kendi oranıyla gösterilir */
.split-layout.wide-media {
  grid-template-columns: 1.15fr 0.85fr;
}

.book-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}
.book-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease);
}
.book-frame:hover img {
  transform: scale(1.03);
}

.split-badge {
  position: absolute;
  right: -18px;
  bottom: 42px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.split-badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.split-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inline-quote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 28px 0;
}
.inline-quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
}
.inline-quote cite {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--gold);
  font-weight: 600;
}
.fact-value {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.4;
}

/* =====================================
   İman bildirgesi (koyu bölüm)
   ===================================== */
.verse-section {
  background-color: var(--navy);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.verse-section::before,
.verse-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.12);
}
.verse-section::before {
  top: -210px;
  left: -120px;
}
.verse-section::after {
  bottom: -240px;
  right: -140px;
}

.verse-mark {
  display: block;
  width: 46px;
  margin: 0 auto 28px;
  color: var(--gold);
  opacity: 0.85;
}
.verse-mark svg {
  width: 100%;
  display: block;
}

.verse {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.verse p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 24px;
}
.verse cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.creed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 960px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.creed-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: var(--t);
}
.creed-card:hover {
  border-color: rgba(201, 162, 75, 0.4);
  background: rgba(201, 162, 75, 0.05);
}

.creed-step {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.creed-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.creed-card > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  margin-bottom: 18px;
}

.creed-names {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}
.creed-names li {
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--t);
}
.creed-names li:hover {
  background: var(--gold);
  color: var(--navy);
}

.creed-note {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

.creed-quote {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin-top: 4px;
}
.creed-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
}

.creed-closing {
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.creed-closing p {
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
}

/* =====================================
   Localar
   ===================================== */
.lodge-grid {
  display: grid;
  /* min() olmadan dar telefonlarda sütun kutudan taşıyor */
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 26px;
  margin-bottom: 40px;
}

.lodge-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px 40px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.lodge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.lodge-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 75, 0.35);
}
.lodge-card:hover::before {
  transform: scaleX(1);
}
.lodge-card.featured {
  border-color: var(--gold);
  box-shadow: 0 12px 34px rgba(201, 162, 75, 0.16);
}
.lodge-card.featured::before {
  transform: scaleX(1);
}

.lodge-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.28;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.lodge-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.lodge-motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.lodge-card > p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.lodge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.lodge-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.55;
}
.lodge-list i {
  color: var(--gold);
  font-size: 0.72rem;
  margin-top: 7px;
  flex-shrink: 0;
}

.lodge-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.lodge-footnote i {
  color: var(--gold);
}

/* Topluluk coğrafyası notu */
.communities-geo {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: -26px 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.communities-geo i {
  color: var(--gold);
}

/* Bölgesel bölüm notu */
.regional-note {
  text-align: center;
  margin-top: 34px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================
   Değer kartları
   ===================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.value-card {
  background: var(--white);
  padding: 44px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 75, 0.35);
}
.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* =====================================
   İstatistikler (koyu)
   ===================================== */
.stats-section {
  background-color: var(--navy-deep);
  color: var(--white);
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: var(--t);
  background: rgba(255, 255, 255, 0.015);
}
.stat-card:hover {
  border-color: rgba(201, 162, 75, 0.4);
  background: rgba(201, 162, 75, 0.05);
  transform: translateY(-5px);
}

.stat-number {
  /* Rakamlar veri gibi okunsun diye gövde fontu; sabit genişlikli
     rakamlar sayaç animasyonunda titremeyi de önlüyor. */
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
  font-variant-numeric: tabular-nums;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.stats-note {
  text-align: center;
  margin-top: 34px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.4px;
}

/* İstatistik dökümü */
.stats-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 26px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.breakdown-item {
  text-align: center;
}
.breakdown-num {
  display: block;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}
.breakdown-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  display: block;
  margin-top: 4px;
}

/* =====================================
   Yönetim kurulu
   ===================================== */
.leader-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 16px 44px rgba(201, 162, 75, 0.16);
}

.leader-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--cream);
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.8s var(--ease);
}
.leader-card:hover .leader-photo img {
  transform: scale(1.03);
}

.leader-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-body h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}
.leader-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.leader-body > p:last-child {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Departmanlar */
.dept-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.dept-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: var(--t);
}
.dept-item:hover {
  background: var(--navy);
}
.dept-item:hover h4 {
  color: var(--white);
}
.dept-item i {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.dept-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--t);
}

/* =====================================
   Tesisler
   ===================================== */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.facility-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: var(--t);
}
.facility-item i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--t);
}
.facility-item span {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.facility-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 75, 0.4);
}
.facility-item:hover i {
  transform: scale(1.12);
}

/* =====================================
   Faaliyet kartları
   ===================================== */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.activity-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.activity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.7s var(--ease);
}
.activity-card:hover .activity-media img {
  transform: scale(1.05);
}

.activity-body {
  padding: 32px 34px 38px;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-tint);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.activity-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.activity-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Topluluklar */
.communities {
  text-align: center;
}
.communities-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}

.community-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 46px;
}

.community-list li {
  background: var(--white);
  padding: 11px 22px;
  border-radius: 50px;
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 9px;
}
.community-list li i {
  color: var(--gold);
  font-size: 0.85rem;
}
.community-list li:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-3px);
}
.community-list li:hover i {
  color: var(--gold);
}

.center-image-container {
  margin: 0 auto;
}

.wide-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Kare/dikey fotoğraflar kırpılmadan, doğal oranıyla gösterilir */
.wide-image.contain {
  max-width: 720px;
  max-height: none;
  object-fit: contain;
  margin: 0 auto;
}

/* =====================================
   Tarihçe / zaman tüneli
   ===================================== */
.timeline {
  list-style: none;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold) 12%,
    var(--gold) 88%,
    transparent
  );
}

.timeline-item {
  position: relative;
  padding: 0 0 42px 40px;
  display: flex;
  flex-direction: column;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 12px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  transition: var(--t);
}
.timeline-item:hover::before {
  background: var(--gold);
  transform: scale(1.25);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.timeline-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* =====================================
   Görsel gridleri
   ===================================== */
.gallery-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 50px;
}

.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* Özellik listesi */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 16px;
}

.feature-item {
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--t);
}
.feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 75, 0.35);
}

.feature-list.on-dark .feature-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}
.feature-list.on-dark .feature-item:hover {
  background: rgba(201, 162, 75, 0.1);
  border-color: rgba(201, 162, 75, 0.42);
}

/* Bölgesel bölüm (koyu) */
.regional-section {
  background-color: var(--navy);
  color: var(--white);
}

/* =====================================
   Etkinlikler
   ===================================== */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.event-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  gap: 26px;
  align-items: center;
  transition: var(--t);
}
.event-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 75, 0.4);
}

.event-date {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.event-day {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
}
.event-month {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
}

.event-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.event-body p {
  color: var(--ink-soft);
  font-size: 0.93rem;
}
.event-meta {
  margin-top: 8px;
  font-size: 0.82rem !important;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.event-meta i {
  color: var(--gold);
}
.event-sep {
  opacity: 0.4;
}

/* =====================================
   Haberler
   ===================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.7s var(--ease);
}
.news-card:hover .news-media img {
  transform: scale(1.05);
}

.news-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.news-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-body > p:not(.news-date) {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex: 1;
}

/* =====================================
   Masonry galeri + lightbox
   ===================================== */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 20px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.masonry-item.tall {
  grid-row: span 2;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.7s var(--ease);
}
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(7, 17, 32, 0.82) 100%
  );
  opacity: 0;
  transition: opacity var(--t);
}
.masonry-item figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--t);
}
.masonry-item:hover img {
  transform: scale(1.07);
}
.masonry-item:hover::after,
.masonry-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 32, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}
.lightbox.open {
  display: flex;
}

.lightbox-figure {
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}
.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 18px;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.lightbox-close {
  top: 26px;
  right: 26px;
}
.lightbox-nav.prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-nav.next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

/* =====================================
   Yayınlar
   ===================================== */
.publisher-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 28px;
}
.publisher-card i {
  font-size: 1.6rem;
  color: var(--gold);
}
.publisher-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}
.publisher-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 !important;
}
.publisher-card a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--t);
}
.publisher-card a:hover {
  color: var(--gold);
}

/* =====================================
   Üyelik
   ===================================== */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-bottom: 50px;
}

.membership-card {
  background: var(--white);
  padding: 44px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: var(--t);
  position: relative;
}
.membership-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.membership-card.featured {
  border-color: var(--gold);
  box-shadow: 0 12px 34px rgba(201, 162, 75, 0.18);
}

.membership-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.membership-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.membership-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.membership-currency {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}
.membership-note {
  color: var(--ink-soft);
  font-size: 0.86rem;
  margin-top: 6px;
}

.membership-cta {
  text-align: center;
}
.membership-cta p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* =====================================
   Bağış CTA (koyu)
   ===================================== */
.donate-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.donate-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -100px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.16);
}

.donate-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.donate-text .section-title {
  color: var(--white);
  margin-bottom: 14px;
}
.donate-text p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

.donate-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =====================================
   İletişim
   ===================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 40px;
}

.contact-info,
.contact-form {
  background: var(--white);
  padding: 42px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-info h3,
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 26px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list i {
  color: var(--gold);
  font-size: 1rem;
  width: 22px;
  text-align: center;
  margin-top: 5px;
  flex-shrink: 0;
}
.contact-list div {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  line-height: 1.6;
  min-width: 0;
  /* uzun e-posta adresi dar ekranda kutudan taşmasın */
  overflow-wrap: anywhere;
}
.contact-list span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-list a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t);
}
.contact-list a:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--t);
}
.contact-social a:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-3px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--t);
  background-color: #fcfbf9;
  color: var(--ink);
}
.form-group textarea {
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
  background-color: #fff;
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #c0562f;
  background-color: #fdf6f4;
}

.form-error {
  display: block;
  color: #c0562f;
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 1em;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 1.4em;
}
.form-status.success {
  color: #2b7a5e;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-wrapper iframe {
  filter: grayscale(0.35) contrast(1.05);
  transition: filter var(--t);
}
.map-wrapper:hover iframe {
  filter: grayscale(0);
}

/* =====================================
   Footer
   ===================================== */
.site-footer {
  background-color: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-top: 74px;
  padding-bottom: 54px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 360px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--t);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--t);
}
.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  overflow-wrap: anywhere;
}
.footer-contact i {
  color: var(--gold);
  margin-top: 6px;
  width: 15px;
  flex-shrink: 0;
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color var(--t);
}
.footer-legal a:hover {
  color: var(--gold);
}

/* =====================================
   Yukarı çık
   ===================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--navy);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
  transition: var(--t);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background-color: var(--gold-light);
  transform: translateY(-3px);
}

/* =====================================
   Dil seçici
   ===================================== */
.lang-switch {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  padding: 9px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--t);
}
.lang-btn:hover {
  background: rgba(201, 162, 75, 0.18);
  border-color: var(--gold);
  color: #fff;
}
.lang-btn i:first-child {
  color: var(--gold);
  font-size: 0.85rem;
}
.lang-caret {
  font-size: 0.6rem !important;
  opacity: 0.7;
  transition: transform var(--t);
}
.lang-switch.open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--t);
  z-index: 1200;
}
.lang-switch.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: var(--t);
}
.lang-menu button:hover {
  background: var(--cream);
  color: var(--navy);
}
.lang-menu button.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

/* =====================================
   Animasyonlar
   ===================================== */
/* Daktilo imleci */
.type-caret {
  color: var(--gold);
  font-weight: 300;
  margin-left: 3px;
  animation: caret-blink 1.05s steps(1) infinite;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
  .hero-bg {
    animation: none;
  }
}

/* =====================================
   Responsive
   ===================================== */
@media (max-width: 1400px) {
  /* Yatay menünün sığdığı son aralık: logo ve dil düğmesi biraz daralır */
  .logo-name {
    font-size: 1.24rem;
  }
  .lang-btn {
    padding: 8px 12px;
  }
  .lang-btn i:first-child {
    display: none;
  }
}

@media (max-width: 1300px) {
  /* 9 gezinme bağlantısı + logo + dil seçici + bağış butonu bu genişlikten
     sonra yan yana sığmıyor (Rusça etiketler en uzunu). Taşma yerine
     tam ekran menüye geçiliyor. */
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .nav-cta-mobile {
    display: block;
    margin-top: 18px;
  }

  /* Header'daki backdrop-filter, içindeki position:fixed menüyü ekrana
     değil header kutusuna sabitliyor (68px'e hapsoluyordu). Mobilde blur
     kaldırılıyor; arka plan zaten neredeyse opak. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background-color: rgba(7, 17, 32, 0.985);
    backdrop-filter: blur(8px);
    /* blok + overflow: kısa ekranlarda (yatay telefon) menü kaydırılabilir
       kalsın; flex ortalamada taşan maddelere ulaşılamıyordu */
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
    z-index: 1000;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-height: 100%;
    padding: calc(var(--header-h) + 24px) 20px 40px;
  }
  .nav-link {
    font-size: 1.15rem;
    padding: 12px 24px;
  }
  .nav-link::after {
    display: none;
  }
}

@media (max-width: 1080px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .split-layout.reverse .split-media {
    order: 0;
  }
  .arch-frame img {
    aspect-ratio: 3 / 2;
  }
  .arch-frame {
    border-radius: 200px 200px var(--radius) var(--radius);
  }
  .arch-frame::after {
    border-radius: 188px 188px var(--radius-sm) var(--radius-sm);
  }
  .split-badge {
    right: 16px;
    bottom: 16px;
  }
  .service-card {
    grid-template-columns: 1fr;
  }
  .service-item + .service-item {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .creed-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid-2,
  .gallery-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .donate-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .donate-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .top-bar-item:not(:first-child) {
    display: none;
  }
  .top-bar-inner {
    justify-content: space-between;
  }

  .hero {
    min-height: 78vh;
    padding: 80px 0 170px;
  }
  .hero-scroll {
    display: none;
  }

  .section {
    padding: 74px 0;
  }
  .service-section {
    margin-top: -90px;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }
  .leader-photo {
    min-height: 300px;
  }
  .leader-body {
    padding: 32px 26px 38px;
  }

  .gallery-grid-2,
  .gallery-grid-3 {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 250px;
  }

  /* 21 görsel tek sütunda telefonda ~5 metrelik kaydırma demekti;
     iki sütun + kısa satır yüksekliği ile makul uzunlukta kalıyor */
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 168px;
    gap: 12px;
  }
  .masonry-item figcaption,
  .masonry-item::after {
    opacity: 1;
    transform: none;
  }
  .masonry-item figcaption {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .event-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .event-item:hover {
    transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* 16px altındaki alanlarda iOS Safari odaklanınca sayfayı yakınlaştırıyor */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .contact-info,
  .contact-form {
    padding: 32px 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 54px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Ok düğmeleri görselin üstünü kapatmasın: alta, başparmak hizasına */
  .lightbox {
    padding: 64px 12px 96px;
  }
  .lightbox-figure img {
    max-height: 64vh;
  }
  .lightbox-nav.prev,
  .lightbox-nav.next {
    top: auto;
    bottom: 24px;
    transform: none;
  }
  .lightbox-nav.prev {
    left: calc(50% - 62px);
  }
  .lightbox-nav.next {
    right: calc(50% - 62px);
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .timeline {
    padding-left: 22px;
  }
  .timeline-item {
    padding-left: 30px;
  }
  .timeline-item::before {
    left: -22px;
  }

  .lang-btn {
    padding: 8px 11px;
    font-size: 0.75rem;
  }
  .lang-btn .lang-caret {
    display: none;
  }
  .lang-menu {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .logo-name {
    font-size: 1.08rem;
  }
  .logo-mark {
    width: 34px;
    height: 34px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    padding: 14px 26px;
  }
  .split-badge {
    padding: 14px 18px;
  }
  .split-badge-num {
    font-size: 2.1rem;
  }
  .value-card,
  .membership-card,
  .lodge-card,
  .creed-card {
    padding: 34px 24px;
  }
  .lodge-num {
    font-size: 2.6rem;
  }
  .activity-body {
    padding: 26px 24px 30px;
  }
}
