@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800;900&display=swap');

/* =============================================
   KADINLARIN SESİ DERNEĞİ — PREMIUM DESIGN SYSTEM
   Professional NGO Aesthetic | Modern & Minimalist
   ============================================= */

:root {
  /* Core Colors */
  --gold: #a38048;
  --gold-light: #c5a47e;
  --gold-dark: #86663a;
  --brown-900: #1c1208;
  --brown-800: #2c1e0e;
  --brown-700: #3d2b17;
  --cream: #fdfaf5;
  --beige-100: #f4eee2;
  --white: #ffffff;
  
  /* Text Colors */
  --text-dark: #2c1e0e;
  --text-mid: #5a4b3c;
  --text-light: #8a7b6d;
  --text-muted: rgba(44, 30, 14, 0.4);
  
  /* UI Elements */
  --border: rgba(163, 128, 72, 0.15);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-dark: rgba(28, 18, 8, 0.8);
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 12px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 40px rgba(44, 30, 14, 0.1);
  --shadow-gold: 0 10px 30px rgba(163, 128, 72, 0.2);
  
  /* Sizing & Shape */
  --nav-h: 80px;
  --r-sm: 4px;
  --r-md: 12px;
  --r-lg: 24px;
  
  /* Motion */
  --tr: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
  font-family: 'Montserrat', sans-serif; 
  background: var(--cream); 
  color: var(--text-dark); 
  line-height: 1.7; 
  overflow-x: hidden; 
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; transition: var(--tr); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 120px 0; }

/* Global SVG Limiters */
svg { width: 24px; height: 24px; flex-shrink: 0; display: inline-block; vertical-align: middle; transition: var(--tr); }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Playfair Display', serif; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--brown-900);
  line-height: 1.1;
  margin-bottom: 24px;
}
/* ===== SCROLL ANIMATIONS (AOS REPLACEMENT) ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"] { transform: scale(0.92); }

.aos-visible {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Stagger delay classes */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }

/* ===== SECTION TITLES ANIMATION ===== */
.section-header .eyebrow { 
  opacity: 0; transform: translateX(-20px); transition: all 1s var(--easing); 
}
.aos-visible .eyebrow { opacity: 1; transform: translateX(0); }

.section-title span { 
  display: inline-block; position: relative; color: var(--gold);
}
.section-title span::after {
  content: ''; position: absolute; bottom: 8px; left: 0; width: 0; height: 8px;
  background: rgba(163, 128, 72, 0.1); z-index: -1; transition: width 1s var(--easing); transition-delay: 0.5s;
}
.aos-visible .section-title span::after { width: 100%; }

.section-header { text-align: center; margin-bottom: 80px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 5000;
  display: flex;
  align-items: center;
  transition: var(--tr);
  background: transparent;
  padding: 0 24px;
  transform: translateY(-100%);
  animation: slideDown 1s var(--easing) forwards;
}
@keyframes slideDown {
  to { transform: translateY(0); }
}
.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 70px;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 60px; /* Logo ve metni sağa kaydıralım */
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-img { 
  height: 52px; 
  width: auto; 
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: var(--tr);
}
.navbar.scrolled .logo-img { height: 44px; filter: none; }

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.4rem; 
  font-weight: 800;
  color: var(--white); 
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: var(--tr);
}
.logo-sub { 
  font-size: 0.65rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.8);
  transition: var(--tr);
}
.navbar.scrolled .logo-name { color: var(--brown-900); text-shadow: none; }
.navbar.scrolled .logo-sub { color: var(--gold); }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link {
  color: var(--white);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--gold); transition: var(--tr); transform: translateX(-50%);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 40%; }

.navbar.scrolled .nav-link { color: var(--brown-700); text-shadow: none; }
.navbar.scrolled .nav-link:hover { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--tr); }
.navbar.scrolled .hamburger span { background: var(--brown-900); }
 
 /* Language Switcher */
 .lang-switcher {
   display: flex;
   gap: 4px;
   margin-right: 20px;
   background: rgba(255,255,255,0.05);
   padding: 4px;
   border-radius: 20px;
   border: 1px solid rgba(255,255,255,0.1);
 }
 .navbar.scrolled .lang-switcher {
   background: var(--beige-100);
   border-color: var(--border);
 }
 .lang-btn {
   font-size: 0.65rem;
   font-weight: 700;
   color: var(--white);
   padding: 4px 10px;
   border-radius: 16px;
   opacity: 0.6;
 }
 .navbar.scrolled .lang-btn { color: var(--brown-700); }
 .lang-btn:hover { opacity: 1; color: var(--gold); }
 .lang-btn.active {
   background: var(--gold);
   color: var(--white) !important;
   opacity: 1;
 }

/* ===== HERO ===== */
.hero-section {
  height: clamp(600px, 100vh, 1080px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-900);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 1;
  animation: kenBurns 20s infinite alternate linear;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, -1%); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,18,8,0.85) 0%, transparent 40%, rgba(28,18,8,0.98) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

/* Staggered Hero Reveal */
.hero-title {
  opacity: 0; transform: translateY(30px);
  animation: revealUp 1s var(--easing) forwards;
  animation-delay: 0.2s;
}
.hero-subtitle {
  opacity: 0; transform: translateY(20px);
  animation: revealUp 1s var(--easing) forwards;
  animation-delay: 0.4s;
}
.hero-actions {
  opacity: 0; transform: translateY(15px);
  animation: revealUp 1s var(--easing) forwards;
  animation-delay: 0.6s;
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 650px;
  margin: 0 auto 48px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 20px; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  border-radius: 50px; /* Tam yuvarlak köşeler */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(163, 128, 72, 0.2);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(163, 128, 72, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--brown-900);
  transform: translateY(-4px);
}

/* Stats Bar */
.hero-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: var(--glass-dark);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0;
}
.hero-stats-row { display: flex; justify-content: center; align-items: center; gap: 80px; }
.hero-stat { text-align: center; }
.hs-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.hs-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.2em; }
.hs-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ===== HAKKIMIZDA ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 600px; object-fit: cover; transition: transform 0.8s var(--easing); }
.about-img-wrap:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; bottom: 50px; right: -30px;
  background: var(--white); padding: 40px; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); z-index: 5;
  border-left: 6px solid var(--gold);
}
.about-badge span { display: block; font-size: 3rem; font-weight: 900; color: var(--brown-900); line-height: 1; }
.about-badge p { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== FAALİYETLER ===== */
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.activity-card {
  background: var(--white); padding: 60px 40px; border-radius: var(--r-lg);
  text-align: center; border: 1px solid var(--border); transition: var(--tr);
}
.activity-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.activity-icon { 
  margin: 0 auto 32px; 
  width: 80px; height: 80px; 
  background: var(--cream); 
  border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  color: var(--gold);
}
.activity-icon svg { width: 44px; height: 44px; }
.activity-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--brown-900); margin-bottom: 20px; }
.activity-card p { font-size: 1rem; color: var(--text-mid); margin-bottom: 32px; }

/* ===== PROJECTS ===== */
.projects-layout { display: flex; gap: 60px; align-items: flex-start; }
.projects-visuals {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.project-main {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 9 / 16; height: 650px;
}
.project-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,18,8,0.95), transparent 40%);
  padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
}
.project-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.project-body p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 16px; }
.project-details { font-size: 0.75rem; color: var(--gold-light); display: flex; flex-direction: column; gap: 4px; }
.project-tag { font-size: 0.65rem; padding: 4px 10px; background: var(--gold); color: white; border-radius: 4px; width: fit-content; margin-bottom: 12px; }

/* ===== GALLERY ===== */
.gallery-grid-formal {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-item {
  position: relative; 
  height: auto !important; 
  cursor: pointer;
  transition: var(--tr);
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.gallery-item img { 
  width: 100% !important; 
  height: auto !important; 
  display: block;
  border-radius: var(--r-md);
}

/* ===== NEWS SECTION ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card-formal {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.news-card-formal:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.news-header {
  padding: 16px 24px;
  background: var(--beige-100);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-official {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.news-date { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }
.news-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.news-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown-900);
  margin-bottom: 16px;
  line-height: 1.4;
  transition: var(--tr);
}
.news-card-formal:hover h4 { color: var(--gold); }
.news-body p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 24px; line-height: 1.6; }

.project-row-body h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    color: var(--brown-900);
}

.project-row-body p {
    font-size: 0.85rem;
    color: #8a7b6d;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 6px;
    background: rgba(163, 128, 72, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.status-done, .status-ongoing {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-done { 
    background: #f0fdf4; 
    color: #166534; 
    border: 1px solid #bbf7d0;
}

.status-ongoing { 
    background: #fffbeb; 
    color: #92400e; 
    border: 1px solid #fef08a;
}

.news-link-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.news-link-btn:hover { transform: translateX(5px); color: var(--brown-900); }
.news-link-btn::after { content: '→'; font-size: 1.1rem; transition: var(--tr); }

/* ===== FOOTER ===== */
.footer { background: var(--brown-900); color: var(--white); padding: 100px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
.footer-logo { height: 70px !important; margin-bottom: 24px; }
.footer-brand p { color: rgba(255,255,255,0.6); margin-bottom: 30px; }
.footer-seal {
  background: rgba(255,255,255,0.05); padding: 24px; border-radius: var(--r-md); display: flex; gap: 16px; align-items: center; border-left: 3px solid var(--gold);
}
.seal-text strong { display: block; color: var(--gold-light); font-size: 1.1rem; }
.footer h5 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 32px; }
.footer ul li { margin-bottom: 16px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-weight: 500; }
.footer ul li a:hover { color: var(--gold-light); transform: translateX(8px); }

.newsletter-form { display: flex; gap: 12px; margin-top: 24px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 16px; color: var(--white); border-radius: var(--r-sm);
}
.newsletter-form button { background: var(--gold); color: var(--white); padding: 0 24px; font-weight: 700; border-radius: var(--r-sm); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 80px; padding-top: 40px; color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-social-links {
  display: flex;
  gap: 16px;
}
.footer-social-links a {
  color: rgba(255,255,255,0.4);
  transition: var(--tr);
}
.footer-social-links a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}
.footer-social-links svg { width: 22px; height: 22px; }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a { font-size: 0.8rem; font-weight: 500; }
.footer-legal a:hover { color: var(--gold-light); }

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: var(--tr);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-card-icon {
  width: 50px; height: 50px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-card-info h5 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--brown-900); margin-bottom: 4px; }
.contact-card-info p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.4; }

.contact-form-col {
  background: var(--white);
  padding: 50px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-col h4 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--brown-900); margin-bottom: 30px; }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 18px; 
  background: var(--beige-100); 
  border: 1px solid transparent; 
  border-radius: var(--r-sm); 
  font-family: inherit; font-size: 1rem; color: var(--text-dark);
  transition: var(--tr);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(163, 128, 72, 0.1);
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--brown-800);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 24px;
  width: 100%;
}
.map-directions-btn:hover { background: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.map-wrapper {
  height: 350px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-wrapper iframe { width: 100%; height: 100%; border:0; }

.contact-social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.contact-social-item {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--tr);
}
.contact-social-item:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ===== RESPONSIVE SYSTEM ===== */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .hero-stats-row { gap: 40px; }
  .about-grid, .footer-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .projects-layout { flex-direction: column; align-items: center; gap: 40px; }
  .projects-visuals { flex-direction: column; width: 100%; align-items: center; }
  .projects-list { width: 100%; }
  .activities-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid-formal { grid-template-columns: 1fr 1fr; gap: 15px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  
  .container { padding: 0 20px; }
  section { padding: 60px 0; }

  /* Navbar Mobile Reset */
  .nav-container { padding-left: 20px; } /* Sağa kaydırmayı mobilde sıfırlayalım */
  .logo-img { height: 40px; }
  .logo-name { font-size: 1.1rem; }
  
  .hamburger { display: flex; cursor: pointer; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; width: 100%; height: calc(100vh - var(--nav-h));
    background: var(--white); flex-direction: column; padding: 40px; gap: 24px; z-index: 4000;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
  }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
  .nav-links.open { display: flex; }
  .nav-links.open .nav-link { color: var(--brown-900) !important; text-shadow: none; font-size: 1.1rem; border-bottom: 1px solid var(--beige-100); width: 100%; padding-bottom: 10px; }
  
  /* Gallery Mobile 1-Column */
  .gallery-grid-formal { 
    grid-template-columns: 1fr !important; 
    gap: 20px !important; 
  }
  .gallery-item { height: auto !important; }
  
  /* Hero Mobile */
  .hero-section { height: auto; min-height: 100vh; padding: 120px 0 60px; }
  .hero-title { font-size: 2.8rem; }
  .hero-stats-row { flex-wrap: wrap; gap: 20px; justify-content: space-around; }
  .hs-divider { display: none; }
  .hero-stat { width: 45%; padding: 15px; }

  /* About Mobile */
  .about-badge { position: relative; bottom: 0; right: 0; margin-top: -40px; width: 80%; margin-left: auto; padding: 20px; }
  .about-img-wrap img { height: 350px; }

  /* Contact Mobile */
  .contact-form-col { padding: 30px 20px; }
  .contact-form-col h4 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 2.4rem; }
  .activities-grid, .news-grid { grid-template-columns: 1fr; }
  /* Gallery already handled by 768px media query with !important */
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn { width: 100%; justify-content: center; }
  .hero-stat { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-bottom-row { text-align: center; justify-content: center; }
}

/* ===== UTILITIES ===== */
.back-to-top {
  position: fixed; bottom: 20px; right: 20px; 
  width: 44px; height: 44px; background: var(--brown-800); color: white;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--tr); z-index: 5000;
  border-radius: var(--r-sm); border: 1px solid var(--gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); transform: translateY(-5px); }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); justify-content: center; align-items: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90%; max-height: 80%; object-fit: contain; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 20px; right: 20px; font-size: 1.8rem; color: white; cursor: pointer; }

/* ===== NEW SECTIONS STYLES ===== */

.mission-box {
  background: #fdfaf6;
  border-left: 4px solid #b8863a;
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.mission-box h3 {
  color: #b8863a;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.mission-box p {
  line-height: 1.7;
  color: #555;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.story-card {
  background: white;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(184, 134, 58, 0.05);
  border: 1px solid #f0e6d8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(184, 134, 58, 0.1);
}

.story-icon {
  font-size: 2rem;
  color: #b8863a;
  margin-bottom: 15px;
  font-weight: 300;
}

.story-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: #2c2c2c;
  line-height: 1.4;
}

.story-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
  }
}

.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-24 { margin-top: 24px; }

/* Specific image positioning removed as per user request for original proportions */

