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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #f5f5f5;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;    border-radius: 8px;
}

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

section {
  padding-block: 1rem;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #f5f5f5;
}

.section-title .underline {
  position: relative;
  display: inline-block;
}

.section-title .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(90deg, #c62828, #ff9800);
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-heading p {
  color: rgba(245, 245, 245, 0.75);
  margin-top: 0.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background-image: linear-gradient(135deg, #c62828, #ff9800);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border-color: #c62828;
  color: #c62828;
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(circle at 100% 100%, rgba(255, 152, 0, 0.6), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.btn:hover .btn-glow {
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 99999;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
  backdrop-filter: blur(14px);
}

.site-ticker-stack {
  position: fixed;
  top: 95px;
  inset-inline: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.site-ticker-stack .quake-bar {
  position: relative;
  top: auto;
  inset-inline: auto;
}

.quake-bar {
  position: fixed;
  top: 95px;
  inset-inline: 0;
  z-index: 45;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.35), transparent),
    rgba(0, 0, 0, 0.9);
  color: #f5f5f5;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quake-bar--announce {
  background: radial-gradient(circle at 100% 0, rgba(13, 71, 161, 0.4), transparent),
    rgba(0, 0, 0, 0.92);
}

.announce-item a {
  color: inherit;
  text-decoration: none;
}

.announce-item a:hover {
  color: #90caf9;
  text-decoration: underline;
}

.quake-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.35rem;
}

.quake-bar-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  white-space: nowrap;
}

.quake-bar-list-wrapper {
  flex: 1;
  overflow: hidden;
}

.quake-bar-status {
  font-size: 0.8rem;
  opacity: 0.8;
}

.quake-bar-list {
  display: flex;
  gap: 1.4rem;
  white-space: nowrap;
  /* Süre script.js içinde kayıt sayısına göre ayarlanır */
  will-change: transform;
}

.quake-item {
  flex-shrink: 0;
  opacity: 0.9;
}

.quake-mag {
  font-weight: 700;
  color: #ff9800;
  margin-right: 0.25rem;
}

.quake-location {
  font-weight: 500;
  margin-right: 0.35rem;
}

.quake-time {
  opacity: 0.75;
  margin-right: 0.35rem;
}

.quake-depth {
  margin-right: 0.35rem;
  opacity: 0.85;
}

.quake-type {
  margin-right: 0.35rem;
  text-transform: uppercase;
  font-size: 0.75rem;
}

@keyframes quake-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes quake-marquee-pass {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes quake-marquee-full {
  0% {
    transform: translateX(var(--ticker-start, 100%));
  }
  100% {
    transform: translateX(calc(-1 * var(--ticker-distance, 100%)));
  }
}

@keyframes quake-marquee-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--ticker-loop-distance, 50%)));
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-images {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-main-image {
  height: 70px;
  width: auto;
  display: block;
  float: left;
}

.logo-partner-image {
  height: 70px;
  width: auto;
  display: block;
  float: left;
}

.logo-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-top: 0.1rem;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 0.86rem;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background-image: linear-gradient(90deg, #ff9800, #c62828);
  transition: width 0.18s ease;
}

.main-nav a:hover::before {
  width: 100%;
}

/* Kurumsal açılır menü */
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
}

.has-dropdown > a::after {
  content: "▾";
  font-size: 0.85rem;
  margin-left: 0.25rem;
  opacity: 0.8;
  display: inline-block;
  transition: transform 0.18s ease;
}

@media (min-width: 901px) {
  .has-dropdown:hover > a::after {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  position: absolute;
  top: 118%;
  left: 0;
  min-width: 190px;
  padding: 0.4rem 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 60;
}

.dropdown-menu li a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.dropdown-menu li a::after {
  display: none;
}

@media (min-width: 901px) {
  .has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.nav-cta {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background-image: linear-gradient(135deg, #c62828, #ff9800);
  font-weight: 600;
  font-size: 0.8rem;
}

.burger {
  display: none;
  width: 38px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 10rem;
  color: #fff;
  background-color: #10141a;
  overflow: hidden;
}

/* Projeler sayfası hero düzeni */
.projects-hero {
  min-height: 60vh;
  background-image: url("images/proje1.png");
  background-size: cover;
  background-position: center;
}

.projects-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 60vh;
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}

.projects-hero-inner .hero-content {
  max-width: 760px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

.hero-siren-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.7), transparent 60%);
  mix-blend-mode: screen;
  filter: blur(3px);
  opacity: 0.35;
  animation: siren-pulse 3.2s ease-in-out infinite;
  transform: translateX(-50%);
}

@keyframes siren-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translateX(-50%) scale(1.12);
    opacity: 0.3;
  }
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8.75rem; /* header + çift ticker şeridi */
  padding-bottom: 3rem;
}

.hero-content {
  max-width: 780px;
  text-align: center;
}

.hero-heading-stack {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.4rem;
}

.hero-heading-line {
  font-family: "Lexend", "Oswald", "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-heading-main {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
}

.hero-heading-sub {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 600;
}

.hero-heading-sub-alt {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
}

.hero-quote-main {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 600;
  margin-top: 0.8rem;
}

.hero-subtitle {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.hero-subtitle-center {
  max-width: 720px;
  margin-inline: auto;
}

.hero-quote-small {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-cta-center {
  justify-content: center;
}

.hero-slider-wrapper {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* İletişim sayfası hero hizalama */
.contact-hero {
  min-height: 50vh;
  background-image: url("images/iletisim.png");
  background-size: cover;
  background-position: center;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  /* min-height: 60vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Haberler sayfası hero hizalama */
.news-hero {
  min-height: 60vh;
  background-image: url("images/haber1.png");
  background-size: cover;
  background-position: center;
}

.news-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bağış yap sayfası hero hizalama */
.donation-hero {
  min-height: 60vh;
  background-image: url("images/bagis1.png");
  background-size: cover;
  background-position: center;
}

.donation-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Galeri sayfası hero hizalama */
.gallery-hero {
  min-height: 60vh;
  background-image: url("images/galeri1.png");
  background-size: cover;
  background-position: center;
}

.gallery-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Üye ol sayfası hero hizalama */
.membership-hero {
  min-height: 50vh;
  background-image: url("images/uyeol1.png");
  background-size: cover;
  background-position: center;
}

.membership-hero-inner {
  position: relative;
  z-index: 2;
  /* min-height: 60vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ana sayfa hero: eklentisiz fade slider (script.js initHeroSlider) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.hero-slide.hero-slide--active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

/* Eski index.html: Swiper CSS yokken aynı yerleşim */
.hero-swiper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-swiper .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.hero-swiper .swiper-slide.hero-slide.hero-slide--active {
  opacity: 1;
  z-index: 1;
}

/* Slider altı nokta göstergeleri */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.hero-dot.is-active {
  background: #ff9800;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  transform: scale(1.12);
}

.hero-slide-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 15% 15%, rgba(0, 0, 0, 0.2), transparent),
    linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent 50%);
}

.hero-overlay--in-slide {
  z-index: 1;
}

.hero-siren-glow--in-slide {
  z-index: 1;
}

/* Slayt içi: metin + CTA + noktalar (index.html düzenine yakın) */
.hero-inner--slide {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.25rem 3rem;
  box-sizing: border-box;
  pointer-events: auto;
}

.hero-inner--slide .hero-content {
  width: 100%;
  max-width: 780px;
}

.hero-slide-rich {
  text-align: center;
  color: #f5f5f5;
}

.hero-slide-rich h1,
.hero-slide-rich h2 {
  color: inherit;
  font-weight: 600;
  margin: 0.35rem 0;
}

.hero-slide-rich div {
  color: rgba(245, 245, 245, 0.9);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-inner--slide .hero-slide-rich + .hero-cta-group,
.hero-inner--slide .hero-heading-stack + .hero-cta-group,
.hero-inner--slide .hero-subtitle + .hero-cta-group {
  margin-top: 1.5rem;
}

.hero-slide-content {
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  bottom: 1.8rem;
  color: #fff;
}

.hero-slide-content h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.hero-slide-content p {
  font-size: 0.9rem;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.85);
}

.stats-section {
  background: radial-gradient(circle at 0 0, #c62828, transparent 55%),
    radial-gradient(circle at 100% 100%, #0d47a1, transparent 55%), #111;
  padding-block: 3.5rem;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.stats-item {
  text-align: center;
}

.stats-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.stats-value {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: #ff9800;
}

.about-section {
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.25), transparent),
    #050608;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-image {
  border-radius: 24px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
}

.about-badge {
  position: absolute;
  bottom: 10%;
  left: -6%;
  padding: 0.8rem 1.2rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8);
  font-size: 1.4rem;
  font-weight: 700;
}

.about-badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff9800;
}

.about-content p {
  margin-top: 1rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
}

.about-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.about-list li::before {
  content: "●";
  margin-right: 0.4rem;
  color: #ff9800;
}

.operations-section {
  background: radial-gradient(circle at 0 100%, rgba(13, 71, 161, 0.3), transparent),
    #050608;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.operation-card {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.55), transparent),
    #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  transform-style: preserve-3d;
  transform: perspective(900px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    translate 0.2s ease;
}

.operation-card:hover {
  transform: perspective(900px) translateY(-5px) rotateX(3deg) rotateY(-3deg);
  border-color: rgba(255, 152, 0, 0.65);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
}

.operation-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.85);
  margin-bottom: 1rem;
}

.operation-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.6));
}

.operation-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.operation-card p {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
}

.three-section {
  background: #050608;
  padding-top: 1.5rem;
}

.three-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.three-text p {
  margin-top: 1.1rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
}

.three-canvas-wrapper {
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.4), transparent),
    radial-gradient(circle at 100% 100%, rgba(13, 71, 161, 0.5), transparent),
    #050608;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8);
  padding: 1.2rem;
}

#rescueHelmetCanvas {
  width: 100%;
  height: 320px;
  display: block;
}

.map-section {
  background: radial-gradient(circle at 0 0, rgb(41 0 0), transparent), radial-gradient(circle at 100% 100%, rgb(255 94 0 / 40%), #00000000), #050608;
}

.map-dashboard {
  position: relative;
  margin-top: 2rem;
  padding: 2rem 0;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.35), transparent),
    radial-gradient(circle at 100% 100%, rgba(13, 71, 161, 0.4), transparent),
    #050608;
}

.map-container {
  width: min(1100px, 100% - 3rem);
  margin-inline: auto;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.8);
}

.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-radar-pulse {
  position: absolute;
  top: 18%;
  right: 18%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
  animation: radar-pulse 2.6s ease-out infinite;
}

@keyframes radar-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.map-status-list {
  position: absolute;
  bottom: 1.8rem;
  right: 10%;
  display: grid;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
}

.map-status-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid currentColor;
  animation: status-blink 1.4s ease-in-out infinite;
}

@keyframes status-blink {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.status-earthquake {
  background: #ff9800;
  color: #ff9800;
}

.status-fire {
  background: #c62828;
  color: #c62828;
}

.status-flood {
  background: #0d47a1;
  color: #0d47a1;
}

.status-other {
  background: #7b1fa2;
  color: #7b1fa2;
}

.fire-section {
  position: relative;
  background-image: linear-gradient(to bottom, #111, #050608);
  color: #f5f5f5;
  overflow: hidden;
}

.fire-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0 100%, rgba(198, 40, 40, 0.6), transparent),
    radial-gradient(circle at 100% 80%, rgba(255, 152, 0, 0.4), transparent);
  opacity: 0.82;
}

.fire-inner {
  position: relative;
  z-index: 2;
}

.fire-content {
  max-width: 680px;
}

.fire-embers-layer {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 0);
  background-size: 160px 160px;
  mix-blend-mode: screen;
  opacity: 0.2;
  animation: embers-rise 26s linear infinite;
}

@keyframes embers-rise {
  0% {
    transform: translate3d(0, 40px, 0);
  }
  100% {
    transform: translate3d(0, -40px, 0);
  }
}

.projects-section {
  background: #050608;
}

.projects-list-section {
  padding-top: 3.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.project-card {
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 152, 0, 0.7);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
}

.project-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease;
}

.project-card:hover .project-image {
  transform: scale(1.04);
}

.project-content {
  padding: 1.4rem 1.4rem 1.6rem;
}

.project-content p {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  margin-top: 0.4rem;
}

.project-tag {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.gallery-section {
  background: radial-gradient(circle at 0 100%, rgba(13, 71, 161, 0.35), transparent),
    #050608;
}

.gallery-empty {
  grid-column: 1 / -1;
  column-span: all;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.85);
  line-height: 1.6;
}

.gallery-empty code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  break-inside: avoid;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  padding: 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #f5f5f5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  width: 90%;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  font-size: 2rem;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.volunteer-section {
  position: relative;
  background: #050608;
  color: #f5f5f5;
  overflow: hidden;
}

.volunteer-parallax {
  position: absolute;
  inset: 0;
  background-image: url("images/operasyon3.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transform: translateY(0);
}

.volunteer-inner {
  position: relative;
  z-index: 2;
}

.volunteer-content {
  max-width: 640px;
}

.volunteer-content p {
  margin-top: 1rem;
  color: rgba(245, 245, 245, 0.86);
}

.volunteer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.donation-section {
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.35), transparent),
    #050608;
}

.donation-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.donation-content p {
  margin-top: 1rem;
  color: rgba(245, 245, 245, 0.8);
}

.donation-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.donation-list li::before {
  content: "➜";
  margin-right: 0.4rem;
  color: #ff9800;
}

.donation-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.donation-card {
  padding: 1.6rem 1.4rem;
  border-radius: 20px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.donation-card p {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
}

.donation-accounts {
  margin-top: 1rem;
}

.donation-accounts-empty {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.82);
}

.donation-accounts-empty a {
  color: #ff9800;
  text-decoration: underline;
}

.donation-amounts-label {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* IBAN tek satır, tıklanınca kopyala (bağış + hesap numaraları) */
.iban-copy-list .account-row--iban-copy {
  flex-wrap: wrap;
  align-items: flex-start;
}

.iban-copy-list .account-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.iban-copy-list .account-iban--copy-block {
  flex: 1;
  min-width: min(100%, 220px);
  text-align: right;
}

.iban-copy-list .iban-copy-btn.iban-copy-pill {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0 auto;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 152, 0, 0.45);
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.35), rgba(255, 152, 0, 0.12));
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

.accounts-card .iban-copy-list .iban-copy-btn.iban-copy-pill {
  border-color: rgba(249, 188, 3, 0.4);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(249, 188, 3, 0.1));
}

.iban-copy-list .iban-copy-btn.iban-copy-pill:hover {
  border-color: #ff9800;
  box-shadow: 0 4px 14px rgba(255, 152, 0, 0.2);
  transform: translateY(-1px);
}

.accounts-card .iban-copy-list .iban-copy-btn.iban-copy-pill:hover {
  border-color: #f9bc03;
  box-shadow: 0 4px 14px rgba(249, 188, 3, 0.2);
}

.iban-copy-list .iban-copy-btn.iban-copy-pill:active {
  transform: translateY(0);
}

.iban-copy-list .iban-copy-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.iban-copy-list .account-iban--copy-block .account-iban-label {
  margin-top: 0.35rem;
}

.donation-amounts {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.donation-amount {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.donation-amount:hover {
  background: rgba(255, 152, 0, 0.2);
  border-color: #ff9800;
  transform: translateY(-1px);
}

.news-section {
  background: #050608;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.news-card {
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
}

.news-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.news-content {
  padding: 1.3rem 1.4rem 1.5rem;
}

.news-date {
  font-size: 0.8rem;
  opacity: 0.8;
}

.news-content h3 {
  margin-top: 0.3rem;
  font-size: 1.05rem;
}

.news-content p {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
}

.contact-section {
  background: radial-gradient(circle at 100% 0, rgba(13, 71, 161, 0.4), transparent),
    #050608;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.contact-form-wrapper p {
  margin-top: 1rem;
  color: rgba(245, 245, 245, 0.8);
}

.contact-form-wrapper .danger-text {
  color: rgb(255, 0, 0);
  font-size: 1rem;
  margin-top: 0.5rem;
}
.contact-form {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}
.required{color: rgb(255, 0, 0);}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.form-field label {
  color: rgba(245, 245, 245, 0.9);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #ff9800;
  box-shadow: 0 0 0 1px rgba(255, 152, 0, 0.6);
  background: rgba(0, 0, 0, 0.9);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.2rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field select:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.form-field option {
  background: #0b0d10;
  color: #f5f5f5;
}

.contact-map-placeholder {
  display: grid;
  gap: 1rem;
  margin-top: 20px;
}

.contact-map-card {
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.contact-mini-map {
  border-radius: 16px;
  padding: 2px;
  text-align: center;
  background: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 4px,
      transparent 4px,
      transparent 8px
    ),
    #050608;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  font-size: 0.9rem;
}

/* Gömülü Google Haritası — koyu görünüm (API koyu tema vermediği için filtre) */
.contact-map-frame {
  overflow: hidden;
  border-radius: 14px;
  line-height: 0;
  background: #0a0c10;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 350px;
  margin: 0 auto;
  border: 0;
  vertical-align: bottom;
}

.contact-map-frame--dark iframe {
  filter: invert(88%) hue-rotate(180deg) brightness(0.92) contrast(1.08) saturate(0.82);
}

@media (prefers-reduced-motion: reduce) {
  .contact-map-frame--dark iframe {
    /* filter: none; */
  }
}
/* Hakkımızda sayfası */
.about-hero {
  padding-top: 10rem;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.35), transparent),
    #050608;
}

.about-hero-subtitle {
  margin-top: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
  max-width: 640px;
}

/* Bağış Hesaplarımız sayfası */
.accounts-hero {
  padding-top: 10rem;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.35), transparent),
    #050608;
}

.accounts-hero-subtitle {
  margin-top: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
  max-width: 720px;
}

/* KVKK sayfası */
.kvkk-hero {
  padding-top: 10rem;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.35), transparent),
    #050608;
}

.kvkk-hero-subtitle {
  margin-top: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
  max-width: 760px;
}

.kvkk-section {
  background: #050608;
}

.kvkk-card {
  background: #0b1120;
  border-radius: 18px;
  padding: 1.7rem 1.7rem 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.94rem;
  color: rgba(248, 250, 252, 0.9);
}

.kvkk-card h2 {
  font-size: 1.05rem;
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}

.kvkk-card h2:first-of-type {
  margin-top: 0;
}

.kvkk-card p {
  margin-bottom: 0.4rem;
}

.kvkk-card ul {
  margin: 0.2rem 0 0.8rem 1.2rem;
  display: grid;
  gap: 0.3rem;
}

.kvkk-card li {
  list-style: disc;
}

.kvkk-card a {
  color: #f9bc03;
  text-decoration: underline;
}

.kvkk-contact-card {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.6);
}

.kvkk-contact-card h2 {
  margin-top: 0;
}

.kvkk-contact-card ul {
  margin-left: 1.1rem;
}

.accounts-section {
  background: #050608;
}

.accounts-card {
  background: #0b1120;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
  margin-bottom: 1.8rem;
}

.accounts-card h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.accounts-empty {
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.55;
  margin-top: 0.15rem;
}

.accounts-empty a {
  color: #f9bc03;
  text-decoration: underline;
}

.account-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.account-row:first-of-type {
  border-top: none;
}

.account-bank-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.account-bank-owner {
  font-size: 0.85rem;
  color: #9ca3af;
}

.account-iban {
  text-align: right;
  font-size: 0.9rem;
}

.account-iban-number {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.account-iban-label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.15rem;
}

.accounts-notes-card {
  background: #0f172a;
  border-radius: 18px;
  padding: 1.5rem 1.6rem 1.8rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.5);
}

.accounts-notes-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.accounts-notes-card ul {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.accounts-notes-card li {
  list-style: disc;
  margin-left: 1.2rem;
}

.accounts-notes-card a {
  color: #f9bc03;
  text-decoration: underline;
}

/* Acil durum müdahale sayfası */
.emergency-hero {
  padding-top: 10rem;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.35), transparent),
    #050608;
}

.emergency-hero-subtitle {
  margin-top: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
  max-width: 820px;
}

.emergency-section {
  background: #050608;
}

.emergency-card {
  margin-top: 1.2rem;
  background: radial-gradient(circle at 0 0, rgba(249, 188, 3, 0.25), transparent),
    #0b1120;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(249, 188, 3, 0.45);
}

.emergency-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: #f9fafb;
}

.emergency-card-intro {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.emergency-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  font-size: 0.9rem;
}

.emergency-card-col p {
  margin-bottom: 0.35rem;
  color: #e5e7eb;
}

.link-highlight {
  color: #f9bc03;
  text-decoration: underline;
  font-weight: 500;
}

/* Online kurslar sayfası */
.courses-hero {
  padding-top: 10rem;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 0 0, rgba(13, 71, 161, 0.4), transparent),
    #050608;
}

.courses-hero-subtitle {
  margin-top: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
  max-width: 720px;
}

.courses-section {
  background: #050608;
  padding-top: 2rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.course-card {
  border-radius: 18px;
  background: #0b1120;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
  border-color: rgba(249, 188, 3, 0.7);
}

.course-card-header {
  height: 6px;
  background: linear-gradient(90deg, #1d4ed8, #22c55e, #f97316);
}

.course-card-body {
  padding: 1.5rem 1.5rem 1.7rem;
}

.course-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.course-desc {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 1.1rem;
}

.course-meta {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
}

.course-meta-item {
  display: grid;
  gap: 0.1rem;
}

.course-meta-label {
  color: #9ca3af;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.course-meta-value {
  font-weight: 600;
}

.course-meta-success {
  color: #22c55e;
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #f9bc03;
}

.course-link:hover {
  text-decoration: underline;
}

.courses-steps-section {
  background: #050608;
  padding-top: 0;
  padding-bottom: 4rem;
}

.courses-steps-card {
  margin-top: 3rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.85);
  padding: 2rem 2.1rem 2.4rem;
  text-align: center;
}

.courses-steps-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.courses-steps-card p {
  font-size: 0.94rem;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 1.6rem;
}

.courses-steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.courses-step {
  display: grid;
  gap: 0.25rem;
  justify-items: center;
  min-width: 70px;
}

.courses-step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.4), transparent),
    rgba(15, 23, 42, 0.95);
}

.courses-step-label {
  font-size: 0.85rem;
}

.courses-steps-action .btn {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .course-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Teşkilat şeması sayfası */
.org-hero {
  padding-top: 10rem;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.35), transparent),
    #050608;
}

.org-hero-subtitle {
  margin-top: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
  max-width: 640px;
}

.org-tree-section {
  background: #050608;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.org-tree {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.org-level-bottom {
  margin-top: 2.5rem;
}

.org-node {
  min-width: 220px;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  color: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6);
}

.org-node-top {
  min-width: 260px;
}

.org-node-red {
  /* Genel Başkan - sitenin kırmızı/primer vurgusuna yakın sıcak ton */
  background: linear-gradient(135deg, #c62828, #ff9800);
}

.org-node-green {
  /* Genel Başkan Yardımcısı - yeşil yerine ikincil koyu ton + sarı vurgu */
  background: linear-gradient(135deg, #303131, #f9bc03);
  margin-top: 1.8rem;
}

.org-node-purple {
  /* Alt başlıklar - sitenin mor yerine koyu gri + sarı geçiş */
  background: linear-gradient(135deg, #1f2933, #f9bc03);
}

.org-node-title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.org-node-subtitle {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.org-connector-vertical {
  width: 2px;
  height: 40px;
  margin: 0.25rem auto 0 auto;
  background: rgba(148, 163, 184, 0.7);
}

.org-connector-split {
  position: relative;
  margin: 1.6rem auto 0 auto;
  width: 60%;
  max-width: 420px;
  height: 32px;
}

.org-connector-split span {
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 2px;
  background: rgba(148, 163, 184, 0.7);
}

.org-roles-section {
  background: #050608;
  padding-top: 1rem;
}

.org-roles-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.org-role-card {
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.8rem;
  background: rgba(249, 188, 3, 0.06);
  border: 1px solid rgba(249, 188, 3, 0.4);
  color: #e5e7eb;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  font-size: 0.94rem;
}

.org-role-right {
  background: rgba(48, 49, 49, 0.85);
  border-color: rgba(249, 188, 3, 0.35);
  color: #e5e7eb;
}

.org-role-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.org-role-card ul {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.org-role-card ul li {
  list-style: disc;
}

/* Başkanlıklarımız sayfası */
.province-section {
  background: #050608;
  padding-top: 2.5rem;
}

.province-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-bottom: 1.8rem;
}

.province-stat-card {
  background: #111827;
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(249, 188, 3, 0.35);
}

.province-stat-label {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.province-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f9bc03;
}

.province-stat-meta {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.1rem;
}

.province-map-card {
  background: #0b1120;
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.province-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.province-map-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.province-refresh-btn {
  border: none;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  background: linear-gradient(135deg, #0f172a, #4b5563);
  color: #e5e7eb;
  cursor: pointer;
}

.province-map-container {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

/* Leaflet — başkanlık işaretçisi hover (tooltip) */
.leaflet-tooltip.province-marker-tooltip {
  background: rgba(15, 23, 42, 0.96) !important;
  color: #e5e7eb !important;
  border: 1px solid rgba(148, 163, 184, 0.4) !important;
  border-radius: 10px !important;
  padding: 0.5rem 0.7rem !important;
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5) !important;
  max-width: min(340px, 92vw);
}

.leaflet-tooltip.province-marker-tooltip .province-tip-jobtitle {
  display: block;
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-top: 0.15rem;
  line-height: 1.35;
}

.leaflet-tooltip.province-marker-tooltip .province-tip-line1 {
  display: block;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.leaflet-tooltip.province-marker-tooltip .province-tip-line2 {
  display: block;
  margin-top: 0.2rem;
  color: #cbd5e1;
  font-weight: 500;
}

.leaflet-tooltip.province-marker-tooltip::before {
  border-top-color: rgba(15, 23, 42, 0.96) !important;
}

.province-map-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
}

.province-map-info h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.province-map-info p {
  color: #9ca3af;
}

.province-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 0.25rem;
}

.legend-cold {
  background: #0ea5e9;
}

.legend-medium {
  background: #f59e0b;
}

.legend-hot {
  background: #ef4444;
}

.province-map-metrics ul {
  list-style: disc;
  padding-left: 1.1rem;
  color: #9ca3af;
}

.province-cta-card {
  margin-top: 2.2rem;
  background: radial-gradient(circle at 0 0, rgba(249, 188, 3, 0.25), transparent),
    #111827;
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.8rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.province-cta-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #f9fafb;
}

.province-cta-card p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 1.1rem;
}

.province-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.province-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 7000;
}

.province-modal.is-open {
  display: flex;
}

/* Harita altı il detayı (modal yerine sayfa içi; içerik stilleri modal ile aynı) */
.province-detail-panel {
  display: none;
  margin-top: 1.25rem;
}

.province-detail-panel.is-open {
  display: block;
}

.province-detail-inner {
  background: #2c334f;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.8rem;
  width: 100%;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.province-detail-panel h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f9fafb;
  padding-right: 2rem;
}

.province-detail-close {
  color: #e5e7eb;
}

@media (max-width: 720px) {
  .province-detail-panel .province-modal-grid {
    grid-template-columns: 1fr;
  }
}

.province-modal-content {
  background: #2c334f;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.8rem;
  width: min(680px, 100% - 2.5rem);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.4);
  position: relative;
}

.province-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.province-modal h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.province-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.province-modal-col {
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
}

.province-modal-weather {
  /* background: #eff6ff; */
}

.province-modal-president {
  background: #222845;
}

.province-president-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: min(48vh, 380px);
  overflow-y: auto;
  padding-right: 0.35rem;
  margin-right: -0.2rem;
}

.province-modal-col h3 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.province-modal-weather ul {
  display: grid;
  gap: 0.35rem;
}

.province-modal-weather li {
  display: flex;
  justify-content: space-between;
}

.province-president-card {
  border-radius: 12px;
  background: #201f3f;
  padding: 0.7rem 0.8rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.province-president-role {
  font-size: 0.8rem;
  color: #16a34a;
  margin-bottom: 0.1rem;
  line-height: 1.35;
  word-break: break-word;
}

.province-president-name {
  font-weight: 600;
}

.province-president-jobtitle {
  font-size: 0.82rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-top: 0.2rem;
  line-height: 1.35;
}

.province-president-contact {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.35rem;
}

.about-page-content {
  background: #050608;
}

.about-page-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-page-text p {
  margin-top: 1rem;
  color: rgba(245, 245, 245, 0.85);
  font-size: 0.95rem;
}

.about-page-text p:first-of-type {
  margin-top: 0;
}

.about-page-highlight {
  padding: 1.6rem 1.5rem 1.8rem;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(13, 71, 161, 0.35), transparent),
    #0b0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.about-page-highlight h2 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.about-page-highlight ul {
  margin: 0.4rem 0 1.4rem 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.85);
}

.about-page-highlight ul li {
  list-style: disc;
}

.about-page-highlight .btn {
  width: 100%;
  justify-content: center;
}

/* SSS (Sıkça Sorulan Sorular) sayfası */
.faq-page {
  background: #050608;
  color: #f5f5f5;
  min-height: 100vh;
  padding-top: 10rem;
}

.faq-section {
  padding-top: 10rem;
  background: radial-gradient(circle at 0 100%, rgba(13, 71, 161, 0.3), transparent),    #050608;
}

.faq-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-contact-card {
  margin: 2.5rem auto 0 auto;
  max-width: 900px;
  background: radial-gradient(circle at 0 0, rgba(198, 40, 40, 0.4), transparent),
    #0b0d10;
  color: #f5f5f5;
  border-radius: 18px;
  padding: 2rem 2.2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.faq-contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.faq-contact-card p {
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 1.4rem;
}

.faq-contact-card .btn {
  font-size: 0.9rem;
}

.faq-item {
  border-radius: 16px;
  background: #0c0e10;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.3rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  text-align: left;
  color: #f5f5f5;
}

.faq-question-text {
  font-size: 0.98rem;
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.faq-item.is-open .faq-icon {
  background: #ff9800;
  border-color: #ff9800;
  color: #111;
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.3rem;
  color: rgba(245, 245, 245, 0.85);
  font-size: 0.92rem;
  line-height: 1.7;
  transition: max-height 0.25s ease, padding-bottom 0.2s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 1rem;
  background: radial-gradient(circle at 0 100%, rgb(171 8 8 / 30%), #0b162a), #050608;
  padding-top: 15px;
}

.site-footer {
  background: #050608;
  padding-top: 3rem;
  color: rgba(245, 245, 245, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 0.6rem;
}

.footer-column ul {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.footer-hotline {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-social a:hover {
  background: #ff9800;
  color: #111;
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 0.65rem;
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.8;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

[data-reveal="visible"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr);
  }

  .hero-slider-wrapper {
    margin-top: 1.8rem;
  }

  .map-status-list {
    right: 6%;
  }

  .donation-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .three-inner {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(14px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.3rem;
    flex-shrink: 0;
  }
.main-nav > ul > li {
background:#263653;width:100%;border-radius:6px;padding:10px;margin-bottom:-5px;
  }
  .main-nav li a {
  width:100%;
  }

  .has-dropdown > ul > li {
    background: #2E4979;
    width: 100%;
    margin-top: 5px;
    padding-left: 10px;
    border-radius: 6px;
  }

  .main-nav .has-dropdown > .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0.15rem 0 0.3rem;
    margin-left: 0.2rem;
  }

  .main-nav .has-dropdown.is-open > .dropdown-menu {
    display: block;
  }

  .main-nav .has-dropdown.is-open > a::after {
    transform: rotate(180deg);
  }

  .main-nav .dropdown-menu li a {
    padding-left: 0;
    font-size: 0.83rem;
    opacity: 0.9;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    max-height: calc(100dvh - 5.25rem);
    max-height: calc(100vh - 5.25rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .burger {
    display: flex;
  }

  .burger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .burger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-grid,
  .projects-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  section {
    padding-block: 4rem;
  }

  .header-inner {
    padding-block: 0.6rem;
  }

  .hero-inner {
    padding-bottom: 3rem;
  }

  .stats-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .operations-grid,
  .projects-grid,
  .news-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    column-count: 1;
  }

  .about-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .three-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading {
    text-align: left;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-status-list {
    right: 50%;
    transform: translateX(50%);
    bottom: 1.2rem;
  }
}

