/* ══════════════════════════════════════════════
   TEMEL DEĞİŞKENLER & RESET
══════════════════════════════════════════════ */
:root {
  --sky-light: #87CEEB;
  --sky-warm: #FFD580;
  --sun-orange: #FF8C00;
  --harvest-gold: #F5A623;
  --leaf-green: #4CAF50;
  --forest-green: #2E7D32;
  --plant-green: #2E7D32;
  --dark-forest: #1B3A1F;
  --earth-brown: #6D4C41;
  --wheat-cream: #FFF8E1;
  --deep-earth: #3E2723;
  --text-dark: #1B1B1B;
  --text-light: #FFFFFF;

  --font-display: 'Playfair Display', serif;
  --font-accent: 'Lora', serif;
  --font-body: 'Nunito', sans-serif;
  --font-num: 'Bebas Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--wheat-cream);
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 90px 0;
}

/* ══════════════════════════════════════════════
   FADE-IN-UP (Intersection Observer)
══════════════════════════════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

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

/* ══════════════════════════════════════════════
   SEKSİYON BAŞLIKLARI
══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--forest-green);
  line-height: 1.1;
  margin-bottom: 12px;
}

.sec-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--harvest-gold), var(--sun-orange));
  margin: 0 auto 18px;
  border-radius: 2px;
}

.sec-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--earth-brown);
  max-width: 580px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   CTA BUTON
══════════════════════════════════════════════ */
.hero-cta {
  display: inline-block;
  padding: 18px 52px;
  background: linear-gradient(135deg, var(--harvest-gold) 0%, var(--sun-orange) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 30px rgba(255, 140, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 140, 0, 0.6);
  filter: brightness(1.08);
}

.hero-cta:hover::after {
  background: rgba(255, 255, 255, 0.12);
}

/* ══════════════════════════════════════════════
   NAVBAR — Sticky Header
══════════════════════════════════════════════ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
  background: transparent;
}

#main-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, height 0.4s ease;
}

#main-header.scrolled .logo-img {
  filter: none;
  height: 50px;
}

.logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.4s ease;
}

#main-header.scrolled .logo-divider {
  background: rgba(255, 255, 255, 0.2);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F5A623;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #F5A623;
}

#main-header.scrolled .nav-link {
  color: #1B1B1B;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background: #F5A623;
  border-color: #F5A623;
  color: white;
}

#main-header.scrolled .lang-toggle {
  background: transparent;
  border: 2px solid #1B1B1B;
  color: #1B1B1B;
}

/* Share Button Trigger */
.share-btn-trigger {
  background: linear-gradient(135deg, var(--harvest-gold), var(--sun-orange));
  border: none;
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.share-btn-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
  filter: brightness(1.1);
}

#main-header.scrolled .share-btn-trigger {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  #share-btn-text {
    display: none;
  }

  .share-btn-trigger {
    padding: 10px;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
}

#main-header.scrolled .logo-divider {
  background: rgba(0, 0, 0, 0.2);
}

.mobile-nav-logos,
.mobile-nav-contact {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 60, 30, 0.97);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    text-align: center;
  }

  .header-nav.open {
    display: flex;
  }
}

/* ══════════════════════════════════════════════
   BÖLÜM 1: HERO — Profesyonel Fotoğraf Arka Planlı
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('images/hero-bg.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

/* İki kolon kap */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 100px 24px 80px;
}

/* SOL KOLON */
.hero-left {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-org-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-org {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  color: #fff;
}

.hero-dept {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 13px;
  opacity: 0.75;
  color: #fff;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: #F5A623;
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.hero-title-sub {
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: #F5A623;
  display: block;
  letter-spacing: 2px;
}

.hero-slogan {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  color: #F5A623;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #FF8C00;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 6px 28px rgba(255, 140, 0, 0.45);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
}

.hero-cta:hover {
  background: #E65100;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 140, 0, 0.6);
}

/* SAĞ KOLON — Geri Sayım Kartı */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cd-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 28px;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.cd-card-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 12px;
}

.cd-card-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 20px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cd-val {
  font-family: var(--font-num);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 6px;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
}

.cd-val.flip {
  animation: flipNum 0.4s ease-out;
}

.cd-unit {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Scroll hint */

.cd-sep {
  font-family: var(--font-num);
  font-size: 3rem;
  opacity: 0.6;
  align-self: flex-start;
  padding-top: 4px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.7;
}

/* ══════════════════════════════════════════════
   DALGA GEÇİŞLERİ
══════════════════════════════════════════════ */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-sky-to-cream {
  background: linear-gradient(180deg, #FF6B35 0%, transparent 100%);
}

.footer-wave-top {
  background: #fff;
}

.footer-wave-top svg {
  height: 100px;
}

/* ══════════════════════════════════════════════
   BÖLÜM 2: HAKKINDA — Glassmorphism Kartlar
══════════════════════════════════════════════ */
.about {
  background: var(--wheat-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.about-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.card-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.card-icon {
  font-size: 2rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.about-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   BÖLÜM 3: YARIŞMA KONULARI
══════════════════════════════════════════════ */
.themes {
  background: #fff;
}

.theme-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.theme-intro strong {
  color: var(--forest-green);
}

.theme-intro-sub {
  margin-top: 15px;
  font-weight: 600;
  color: var(--forest-green);
}

.theme-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.topic-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.topic-icon {
  font-size: 1.8rem;
  color: var(--sun-orange);
  width: 40px;
  text-align: center;
}

.topic-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════
   BÖLÜM 4: NASIL KATILIRSIN?
══════════════════════════════════════════════ */
.howto {
  background: linear-gradient(135deg, #E8F5E9 0%, var(--wheat-cream) 100%);
}

.steps-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 50px;
}

.step-box {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 36px 20px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  margin: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--harvest-gold), var(--sun-orange));
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-num);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

/* Ok işareti step'ler arası */
.step-box:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--harvest-gold);
  z-index: 2;
  font-weight: bold;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--harvest-gold);
}

.step-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest-green);
  margin-bottom: 10px;
}

.step-box p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.howto-cta {
  text-align: center;
  margin: 30px 0;
}

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--wheat-cream);
  border-left: 5px solid var(--sun-orange);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.note-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-note p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   BÖLÜM 5: ÖDÜLLER
══════════════════════════════════════════════ */
.awards {
  position: relative;
  background: var(--dark-forest);
  overflow: hidden;
}

.awards::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/awards-bg.png') center/cover no-repeat;
  opacity: 0.15;
}

.awards .container {
  position: relative;
  z-index: 1;
}

.awards-title {
  color: #fff !important;
}

.podium-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.podium-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px 20px 0 0;
  text-align: center;
  padding: 30px 20px;
  color: #fff;
  width: 220px;
  transition: transform 0.3s ease;
}

.podium-box:hover {
  transform: translateY(-8px);
}

.podium-box.rank-1 {
  order: 2;
  height: 320px;
  background: rgba(255, 215, 0, 0.15);
  border-color: gold;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podium-box.rank-2 {
  order: 1;
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podium-box.rank-3 {
  order: 3;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podium-box .p-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.podium-medal {
  display: inline-block;
}

.rank-1-medal {
  color: gold;
}

.rank-2-medal {
  color: silver;
}

.rank-3-medal {
  color: #cd7f32;
}

.podium-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.podium-box p {
  font-size: 1.1rem;
  color: var(--sky-warm);
  font-weight: 700;
}

.extra-awards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.extra-award-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.3s ease;
}

.extra-award-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.extra-award-icon {
  font-size: 1.8rem;
  width: 40px;
  text-align: center;
}

.extra-award-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.extra-award-label {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.extra-award-label em {
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.extra-award-value {
  color: var(--sky-warm);
  font-weight: 600;
  font-size: 1rem;
}

.awards-payment-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 20px;
}

.awards-payment-note i {
  margin-right: 6px;
}

.awards-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-family: var(--font-accent);
}

/* ══════════════════════════════════════════════
   BÖLÜM 6: TAKVİM
══════════════════════════════════════════════ */
.timeline-sec {
  background: var(--wheat-cream);
}

.timeline-track {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding-left: 50px;
}

/* Dikey çizgi */
.timeline-track::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(180deg, var(--leaf-green), var(--sun-orange));
  border-radius: 2px;
}

.tl-item {
  position: relative;
  margin-bottom: 38px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tl-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.tl-item:last-child {
  margin-bottom: 0;
}

/* Renkli nokta */
.tl-dot {
  position: absolute;
  left: -40px;
  top: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--wheat-cream), 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.tl-date {
  display: block;
  font-family: var(--font-num);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--forest-green);
  margin-bottom: 4px;
}

.tl-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════
   BÖLÜM 7: SEÇİCİ KURUL (JÜRİ)
══════════════════════════════════════════════ */
.jury {
  background: #FFFFFF;
}

/* Seçici Kurul (Grid) */
.jury-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.jury-mobile-wrapper {
  position: relative;
  width: 100%;
}

.jury-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: var(--leaf-green);
  z-index: 10;
  cursor: pointer;
  display: none;
  /* Hidden on desktop */
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.jury-nav-btn:hover {
  background: var(--leaf-green);
  color: white;
}

.jury-nav-btn.prev {
  left: -22px;
}

.jury-nav-btn.next {
  right: -22px;
}

@media (max-width: 1200px) {
  .jury-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .jury-nav-btn.prev {
    left: 0;
  }

  .jury-nav-btn.next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .jury-nav-btn {
    display: flex;
  }

  .jury-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .jury-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .jury-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border-radius: 0;
    /* Simpler for full width */
    box-shadow: none;
  }

  .jury-mobile-wrapper {
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
}

.jury-card {
  background: white;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.jury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27, 58, 31, 0.15);
}

.jury-photo-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f0f0f0;
}

.jury-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: grayscale(100%) contrast(1.1);
}

.jury-card:hover .jury-photo-wrapper img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1);
}

.jury-card-body {
  padding: 20px 15px;
  text-align: center;
  background: white;
  flex-grow: 1;
}

.jury-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.jury-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--leaf-green);
  line-height: 1.4;
}

/* Hover Overlay (Kısa detay bandı) */
.jury-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--harvest-gold), var(--sun-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.jury-card:hover::after {
  transform: scaleX(1);
}

/* Portre Fotoğraf Stili */
.jury-photo-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f0f0f0;
}

.jury-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Alt içerik */
.jury-card-body {
  padding: 18px 20px 22px;
  text-align: center;
}

.jury-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1B3A1F;
  margin-bottom: 8px;
}

.jury-title {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: #6D8B74;
  line-height: 1.5;
  padding: 6px 12px;
  background: #F1F8E9;
  border-radius: 20px;
  display: inline-block;
}

/* ══════════════════════════════════════════════
   BÖLÜM 8: FOTOKAMP ALANLARI
══════════════════════════════════════════════ */
.photocamps {
  background: #fff;
}

.camps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

.camp-card {
  background: var(--wheat-cream);
  border: 2px solid var(--harvest-gold);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.camp-card:hover {
  background: linear-gradient(135deg, var(--harvest-gold), var(--sun-orange));
  color: #fff;
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.35);
}

.camp-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sun-orange);
  transition: color 0.3s ease;
}

.camp-card:hover .camp-icon {
  color: #fff;
}

.camp-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.camp-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   BÖLÜM 8: FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--dark-forest);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.footer-col h3 {
  font-family: var(--font-display);
  color: var(--sky-warm);
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 2;
}

.footer-center {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sky-warm);
  font-weight: 900;
}

.footer-brand-sub {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.soc-btn:hover {
  background: var(--harvest-gold);
  border-color: var(--harvest-gold);
  transform: translateY(-3px);
}

.footer-right {
  text-align: right;
}

.footer-right p {
  line-height: 2.2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.footer-icon {
  color: var(--harvest-gold);
  font-size: 1.1rem;
  margin-top: 5px;
}

/* Kök deseni */
.root-pattern {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 30px;
}

.root-pattern svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Footer Signature & Copyright */
.footer-bottom {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.footer-sig {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sig-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.sig-dept {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sky-warm);
  opacity: 0.9;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer-bottom {
    padding: 30px 20px;
  }
}

/* ══════════════════════════════════════════════
   İŞTİRAKLER / DESTEKLEYENLER
══════════════════════════════════════════════ */
.partners {
  background: #FFFFFF;
  padding: 60px 0;
  width: 100%;
}

.partners-wrapper {
  width: 100%;
  padding: 0 4%;
  /* Ekranın sağ ve sol ucundan hafif boşluk kalsın, tam silsin istenmezse sıfırlanabilir. */
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.partners-grid img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  /* Tüm logoları ilk başta uyumlu durması için hafif grileştirme tonlaması */
  filter: grayscale(0%) opacity(0.9);
}

.partners-grid img:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-4px) scale(1.08);
}

/* ══════════════════════════════════════════════
   YUKARI ÇIK BUTONU
══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--plant-green, #2E7D32);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #1B5E20;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* ══════════════════════════════════════════════
   KEYFRAME ANİMASYONLAR
══════════════════════════════════════════════ */
@keyframes cloudDrift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50px);
  }
}

@keyframes sunPulse {

  0%,
  100% {
    box-shadow: 0 0 40px #FFD54F, 0 0 80px #FF8F00;
  }

  50% {
    box-shadow: 0 0 60px #FFE066, 0 0 120px #FFB300;
  }
}

@keyframes flipNum {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.85);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px 60px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .cd-card {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-right {
    text-align: left;
  }

  .podium-row {
    align-items: center;
    flex-direction: column;
  }

  .podium-box.rank-1,
  .podium-box.rank-2,
  .podium-box.rank-3 {
    height: auto;
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
  }

  .podium-box.rank-1 {
    order: 1;
  }

  .podium-box.rank-2 {
    order: 2;
  }

  .podium-box.rank-3 {
    order: 3;
  }
}

@media (max-width: 768px) {
  .partners {
    padding: 40px 0;
  }

  .partners-grid {
    gap: 20px;
  }

  .partners-grid img {
    height: 45px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cd-box {
    min-width: 64px;
  }

  .cd-val {
    font-size: 2.8rem;
    min-width: 60px;
  }

  .cd-sep {
    display: none;
  }

  .about-grid,
  .theme-grid,
  .camps-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-box {
    max-width: 100%;
    width: 100%;
  }

  .step-box:not(:last-child)::after {
    content: '↓';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -28px;
    transform: translateX(-50%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .timeline-track {
    padding-left: 40px;
  }

  .tl-dot {
    left: -35px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .cd-val {
    font-size: 1.8rem;
  }
}

/* ══════════════════════════════════════════════
   PDF MODAL
══════════════════════════════════════════════ */
.pdf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-modal.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.pdf-modal-content {
  background-color: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.pdf-modal.show .pdf-modal-content {
  transform: translateY(0);
}

.pdf-modal-header {
  padding: 15px 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}

.pdf-modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #1B3A1F;
  margin: 0;
}

.pdf-close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.pdf-close:hover,
.pdf-close:focus {
  color: #E53935;
  text-decoration: none;
}

.pdf-modal-body {
  flex-grow: 1;
  padding: 30px;
  overflow-y: auto;
  background-color: #fdfdfd;
}

/* Scrollbar styling for better look */
.pdf-modal-body::-webkit-scrollbar {
  width: 8px;
}

.pdf-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.pdf-modal-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.pdf-modal-body::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

.sartname-html-content {
  color: #333;
  line-height: 1.6;
  font-family: var(--font-body);
}

.sartname-html-content h1,
.sartname-html-content h2,
.sartname-html-content h3,
.sartname-html-content h4 {
  color: #000000;
  text-align: center;
  margin: 1.5rem 0 1rem;
}

.sartname-html-content h1 {
  font-size: 1.6rem;
}

.sartname-html-content h2 {
  font-size: 1.4rem;
}

.sartname-html-content h3 {
  font-size: 1.2rem;
}

.sartname-html-content .madde-title {
  font-weight: 800;
  margin-top: 25px;
  color: #000000;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  display: block;
}

.sartname-html-content .content {
  margin: 10px 0 15px 15px;
  font-size: 0.95rem;
}

.sartname-html-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.sartname-html-content th,
.sartname-html-content td {
  border: 1px solid #efefef;
  padding: 12px 15px;
  text-align: left;
}

.sartname-html-content th {
  background: var(--forest-green);
  color: white;
  font-weight: 700;
}

.sartname-html-content tr:nth-child(even) {
  background: #f9f9f9;
}

.sartname-html-content .eklenen-madde {
  color: #e67e22;
  font-weight: 700;
}

.loader-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  font-style: italic;
  color: #999;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--harvest-gold), var(--sun-orange));
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.pdf-download-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
  filter: brightness(1.1);
}

.pdf-download-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.pdf-modal-footer {
  padding: 15px 25px;
  border-top: 1px solid #eee;
  text-align: right;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.pdf-download-btn:hover {
  background-color: #388E3C;
}

@media (max-width: 768px) {
  .pdf-modal-content {
    width: 95%;
    height: 90vh;
  }
}

/* ══════════════════════════════════════════════
   ÜST DÜZEY MOBİL MENU VE HEADER DÜZENİ
══════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Logo sığdırma çözümü */
  .header-logos {
    gap: 12px;
  }

  .logo-img {
    height: 38px !important;
    max-width: 130px;
    object-fit: contain;
  }

  .logo-divider {
    height: 28px;
  }

  /* Hamburger Menü İkon Dönüşümü - Native App Kalitesi */
  .hamburger {
    display: flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    z-index: 1000;
    transition: all 0.3s ease;
    flex-direction: column;
    padding: 0;
    position: relative;
  }

  #main-header.scrolled .hamburger {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
  }

  #main-header.scrolled .hamburger span {
    background: #1B3A1F !important;
  }

  .hamburger.open span {
    background: white !important;
  }

  /* Cross Animation */
  .hamburger span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    border-radius: 2px;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-6px);
  }

  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }

  .hamburger span:nth-child(3) {
    transform: translateY(6px);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  /* Gelişmiş Mobil Menü Arka Planı (Glassmorphism) */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(27, 58, 31, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 999;
  }

  .header-nav.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-link::after {
    display: none;
  }

  .header-nav.open .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .mobile-nav-logos img {
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0 auto;
  }

  .mobile-logo-main {
    height: 75px;
    max-width: 260px;
  }

  .mobile-logo-sub {
    height: 40px;
    max-width: 200px;
  }

  .mobile-nav-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .mobile-nav-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
  }

  .header-nav.open .mobile-nav-logos {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }

  /* Linklere ardışık açılma efekti */
  .header-nav.open .nav-link:nth-child(2) {
    transition-delay: 0.15s;
  }

  .header-nav.open .nav-link:nth-child(3) {
    transition-delay: 0.2s;
  }

  .header-nav.open .nav-link:nth-child(4) {
    transition-delay: 0.25s;
  }

  .header-nav.open .nav-link:nth-child(5) {
    transition-delay: 0.3s;
  }

  .header-nav.open .nav-link:nth-child(6) {
    transition-delay: 0.35s;
  }

  .header-nav.open .mobile-nav-contact {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
  }

  .lang-toggle {
    margin-top: 10px;
    font-size: 1rem;
    padding: 12px 30px;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 30px !important;
    max-width: 110px;
  }

  .header-logos {
    gap: 8px;
  }
}

/* ══════════════════════════════════════════════
   SHARE MODAL
   ══════════════════════════════════════════════ */
.share-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.share-modal.show {
  display: flex;
  opacity: 1;
}

.share-modal-content {
  background: white;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.share-modal.show .share-modal-content {
  transform: scale(1);
}

.share-modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.share-header-left h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.share-header-left p {
  font-size: 0.9rem;
  color: #666;
}

.share-close {
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.share-close:hover {
  color: #E53935;
}

.share-modal-body {
  padding: 24px 30px 32px;
}

.share-preview-label,
.share-section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.share-section-label {
  margin-top: 24px;
  color: var(--text-dark);
}

.share-preview-box {
  background: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 16px;
}

.share-preview-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.share-preview-info {
  flex-grow: 1;
}

.share-preview-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.share-preview-info p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.share-preview-url {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sun-orange);
}

.share-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.share-social-btn {
  height: 52px;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.2s ease;
  background: white;
}

.share-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.share-social-btn.facebook {
  color: #1877F2;
}

.share-social-btn.whatsapp {
  color: #25D366;
}

.share-social-btn.twitter {
  color: #000000;
}

.share-social-btn.linkedin {
  color: #0A66C2;
}

.share-social-btn.telegram {
  color: #0088CC;
}

.share-social-btn.reddit {
  color: #FF4500;
}

.share-social-btn.tumblr {
  color: #35465C;
}

.share-social-btn.email {
  color: #EA4335;
}

.share-copy-wrapper {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  margin-top: 10px;
}

.share-link-icon {
  color: #999;
  margin-right: 12px;
}

#share-copy-input {
  background: transparent;
  border: none;
  flex-grow: 1;
  font-size: 0.9rem;
  color: #666;
  font-family: var(--font-body);
  outline: none;
}

.share-copy-btn {
  background: #00AEEF;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.share-copy-btn:hover {
  background: #009BD6;
}

.share-copy-btn:active {
  transform: scale(0.9);
}

.share-copy-btn.copied {
  background: #4CAF50;
}

@media (max-width: 480px) {
  .share-modal-content {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    position: absolute;
    bottom: 0;
  }

  .share-modal.show .share-modal-content {
    transform: translateY(0);
  }

  .share-modal-content {
    transform: translateY(100%);
  }

  .share-social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ══════════════════════════════════════════════
   BAŞVURU MODALI CSS
══════════════════════════════════════════════ */
.basvuru-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.basvuru-modal-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}
.basvuru-modal-content {
  background: white;
  width: 95%;
  max-width: 850px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 100px rgba(0,0,0,0.4);
  margin: auto;
  border: 1px solid rgba(255,255,255,0.2);
}
.modal-kapat-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal-kapat-btn:hover {
  background: var(--danger, #ef4444);
  color: white;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .basvuru-modal-content {
    padding: 30px 20px;
  }
  .modal-kapat-btn {
    top: 15px;
    right: 15px;
  }
}

/* ══════════════════════════════════════════════
   BAŞVURU FORMU STİLLERİ (MODAL İÇİ)
══════════════════════════════════════════════ */
.basvuru-form {
  font-family: var(--font-body);
}

.basvuru-form-section {
  background: white;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.basvuru-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark-forest);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--wheat-cream);
  padding-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-group {
  margin-bottom: 15px;
  flex: 1;
  min-width: 250px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus {
  border-color: var(--plant-green);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 50px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
  color: #444;
}

.zorunlu {
  color: var(--danger, #ef4444);
}

.opsiyonel {
  font-size: 0.8rem;
  color: #888;
  font-weight: normal;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
}

.basvuru-submit-btn {
  background: var(--plant-green, #2E7D32);
  color: #fff !important;
  border: 2px solid rgba(0, 0, 0, 0.05);
  padding: 16px 50px;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
  min-width: 220px;
}
.basvuru-submit-btn:hover:not(:disabled) {
  background: #152d18;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.basvuru-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-error {
  color: var(--danger, #ef4444);
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}
.form-error.hidden {
  display: none;
}

.form-genel-hata {
  background: #ffebee;
  color: #c62828;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  border-left: 4px solid #c62828;
}
.form-genel-hata.hidden {
  display: none;
}

/* FOTOĞRAF YÜKLEME ALANLARI */
.fotograf-alanlari-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.foto-upload-box {
  position: relative;
  border: 2px dashed #d1d5db;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  transition: all 0.3s ease;
  overflow: hidden;
}

.foto-upload-box:hover {
  border-color: var(--plant-green);
  background: #f0fdf4;
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.foto-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #666;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.foto-label i {
  font-size: 2rem;
  color: #999;
  transition: color 0.3s ease;
}
.foto-upload-box:hover .foto-label i {
  color: var(--harvest-gold);
}

.foto-label span {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.foto-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.foto-preview.hidden {
  display: none;
}

.foto-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.foto-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255,0,0,0.8);
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.3s ease;
}
.foto-remove:hover {
  background: red;
}

.foto-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 0.7rem;
  padding: 4px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.dosya-kurallari {
  background: #f1f8e9;
  padding: 15px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #33691e;
}
.kural-item {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kural-uyari {
  color: #c62828;
  font-weight: 600;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #444;
}

.checkbox-label input {
  margin-top: 4px;
  transform: scale(1.2);
}

.form-link {
  color: var(--plant-green);
  text-decoration: underline;
  font-weight: 600;
}

.basari-kart {
  text-align: center;
  padding: 40px;
}
.basari-ikon {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: 20px;
}
.basari-kod-kutu {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 300px;
  border: 2px dashed #ccc;
}
.basari-kod {
  font-family: monospace;
  font-size: 2rem;
  font-weight: bold;
  color: var(--sun-orange);
  letter-spacing: 2px;
}
.ek-foto-link {
  background: transparent;
  border: 2px solid var(--plant-green);
  color: var(--plant-green);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.ek-foto-link:hover {
  background: var(--plant-green);
  color: white;
}

/* YARDIMCI SINIFLAR */
.hidden {
  display: none !important;
}

/* EKRAN 1 KARTLARI */
.welcome-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.welcome-card {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-family: var(--font-body);
}
.welcome-card:hover {
  background: #fff;
  border-color: var(--plant-green);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}
.welcome-card .w-icon {
  font-size: 3.5rem;
  color: var(--plant-green);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.welcome-card:hover .w-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--harvest-gold);
}
.welcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark-forest);
  margin-bottom: 10px;
}
.welcome-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* GERİ BUTONU */
.btn-back {
  background: transparent;
  border: none;
  color: #666;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  transition: color 0.2s ease;
}
.btn-back:hover {
  color: var(--plant-green);
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--plant-green);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.footer-legal-link {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-legal-link:hover {
  color: var(--sun-orange);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column !important;
    text-align: center;
    gap: 15px;
  }
  .footer-legal-links {
    justify-content: center;
  }
}