/*
Theme Name: Destek1Yuva
Theme URI:  https://birdestekbiryuva.com
Author:     İhtiyaç Haritası
Author URI: https://birdestekbiryuva.com
Description: 1Destek1Yuva 
Version:     1.7.1
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: destek1yuva
*/
/* ———————— Buradan sonrası sizin mevcut style.css içeriğiniz ———————— */

.bosluk {
padding: 0px;
	margin: 0px;
}

/* Slider wrapper & taşmayı gizleme */
.sp-slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

/* Kaydırılabilir içerik */
.sp-slider {
  display: flex;
  transition: transform 0.3s ease;
}

/* Her bir slide: container genişliğinin tamamı kadar */
.sp-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  box-sizing: border-box;
  padding: 1rem;
}

/* Scrollbar’ı gizlemek isteğe bağlı */
.sp-slider-container::-webkit-scrollbar {
  display: none;
}

/* Prev/Next butonlar */
.sp-prev-btn,
.sp-next-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 0 .5rem;
}

/* Eğer section’ı flex ile yan yana kullanıyorsanız */
.sp-supporters {
  display: flex;
  align-items: center;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.sp-slide img {
  display: block;
  margin: 0 auto;      /* ortaya hizalar */
  max-width: 80%;       /* genişliği %80’e düşürdük */
  max-height: 200px;    /* yüksekliği 200px’i aşmasın */
  height: auto;
  width: auto;
  object-fit: contain;  /* orantılı kırpmadan sığdırır */
}


:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}
html {
  overflow-y: scroll;
}

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

/* Header */
.header { position:fixed; top:0; left:0; right:0; background:rgba(255,255,255,0.95); backdrop-filter:blur(10px); border-bottom:1px solid var(--border-color); z-index:1000; }


.nav { display:flex; align-items:center; justify-content:space-between; padding:0.5rem 1.5rem; max-width:1200px; margin:0 auto; }


.nav-brand h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 100px 0 60px;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: none;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Cities Section */
.cities-section {
    background: #ffffff;
    padding: 80px 0;
}

.cities-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.cities-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem;
}


.city-card {
    background: var(--background-white);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 16px 16px 0 0;
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.city-header {
    text-align: center;
    padding: 1.5rem 1rem 0.75rem;
    background: rgba(37, 99, 235, 0.02);
}

.city-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: -0.025em;
    color: var(--primary-color);
}

.city-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.8;
}

.city-stats-container {
    flex: 1;
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.city-main-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.main-stat-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(229, 231, 235, 0.6);
    transition: all 0.3s ease;
}

.main-stat-card:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    letter-spacing: -0.025em;
    display: block;
    line-height: 1;
}

.main-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.city-additional-info {
    background: rgba(37, 99, 235, 0.02);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.06);
}

.additional-info-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.additional-info-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.additional-info-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    border: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.3s ease;
}

.additional-info-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.additional-info-item span:first-child {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.additional-info-item span:last-child {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.city-detail-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 0.025em;
}

.city-detail-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Modal Popup Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
}

.modal-body {
    padding: 2rem;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.detail-table th,
.detail-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.detail-table th {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.detail-table td {
    font-size: 1rem;
    color: var(--text-secondary);
}

.detail-table tr:last-child td {
    border-bottom: none;
}

.detail-table tr:hover {
    background: #f8fafc;
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-stat {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.detail-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.detail-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Responsive Design for Cities */
@media (max-width: 1200px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .city-card {
        min-height: 450px;
    }
    
    .city-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .city-header h3 {
        font-size: 2.2rem;
    }
    
    .city-stats-container {
        padding: 0 1.5rem 2rem;
    }
    
    .main-stat-number {
        font-size: 2.5rem;
    }
    
    .cities-section {
        padding: 80px 0;
    }
    
    .city-detail-btn {
        width: calc(100% - 2rem);
        margin: 0 1rem 1.5rem;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .detail-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-stat {
        padding: 1rem;
    }

    .detail-stat-number {
        font-size: 2rem;
    }

    .detail-table th,
    .detail-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .city-main-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .additional-info-items {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .city-header h3 {
        font-size: 2rem;
    }
    
    .main-stat-number {
        font-size: 2.2rem;
    }

    .modal-content {
        width: 98%;
        border-radius: 12px;
    }

    .modal-header {
        padding: 1rem;
        border-radius: 12px 12px 0 0;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .detail-table {
        font-size: 0.8rem;
    }

    .detail-table th,
    .detail-table td {
        padding: 0.5rem;
    }

    .detail-stat-number {
        font-size: 1.8rem;
    }

    .detail-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Indicators */
.indicators {
    background: var(--background-white);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.indicator {
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.indicator:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.indicator-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.indicator-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Map Section */
.map-section {
    background: var(--background-light);
    padding: 100px 0;
    text-align: center;
}

.map-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.map-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

/* About Section */
.about {
    background: var(--background-white);
    padding: 100px 0;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.about p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* Supporters Section */
.supporters {
    background: #f8fafc;
    padding: 80px 0;
}

.supporters-header {
    text-align: center;
    margin-bottom: 4rem;
}

.supporters h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.supporters-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Container */
.supporters-slider-container {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 80px;
}

.supporters-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 20px 0;
}

.supporter-slide {
    min-width: 350px;
    background: var(--background-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.supporter-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 16px 16px 0 0;
}

.supporter-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.supporter-logo {
    width: 220px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(5, 150, 105, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.supporter-slide:hover .supporter-logo {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.supporter-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.supporter-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.supporter-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.supporter-contribution {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1e40af);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.become-supporter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.become-supporter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.become-supporter-content {
    position: relative;
    z-index: 1;
}

.become-supporter h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.become-supporter p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.become-supporter .btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    font-size: 1.1rem;
    padding: 20px 40px;
}

.become-supporter .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Supporters */
@media (max-width: 768px) {
    .supporters-slider-container {
        padding: 0 60px;
    }
    
    .supporter-slide {
        min-width: 320px;
        padding: 2rem;
    }
    
    .supporter-logo {
        width: 100px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .supporter-info h3 {
        font-size: 1.2rem;
    }
    
    .supporter-category {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .become-supporter {
        padding: 3rem 2rem;
    }
    
    .become-supporter h3 {
        font-size: 2rem;
    }
    
    .become-supporter p {
        font-size: 1.1rem;
    }
    
    .supporters {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .supporters-slider-container {
        padding: 0 50px;
    }
    
    .supporter-slide {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .supporter-logo {
        width: 80px;
        height: 60px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .become-supporter {
        padding: 2rem 1.5rem;
    }
    
    .become-supporter h3 {
        font-size: 1.8rem;
    }
    
    .become-supporter .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact Section */
.contact {
    background: var(--background-white);
    padding: 100px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--background-light);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #475569;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .indicators-grid,
    .features,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.indicator {
    animation: countUp 0.8s ease-out;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.logo img { height:48px; width:auto; }


header.site-header {
  height: 200px;
}

/* Slider’ı saracak, taşanı gizleyecek */
.supporters-slider-container {
  overflow: hidden!important;
}

/* Slayt grubu: tek satırda, kaydırılabilir */
.supporters-slider {
  display: flex!important;
  transition: transform 0.3s ease;
}

/* Her bir slide: container genişliğinin tamamı kadar */
.supporter-slide {
  flex: 0 0 100%;
  box-sizing: border-box!important;
  /* isterseniz iç boşluk, border, vs ekleyin */
}

/* Prev/Next butonları ve dot’lar istediğiniz gibi stilize edilebilir */
.supporters-prev,
.supporters-next {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 2rem;
}
.supporters-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.supporters-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  margin: 0 .25rem;
  border: none;
  opacity: .5;
  cursor: pointer;
  transition: opacity .2s;
}
.supporters-dots .dot.active {
  opacity: 1;
}
/* --- Temel Header Stilleri --- */
.sd-header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  /* position: fixed; */    /* Bu satırı kaldırdık */
  /* top: 0; */             /* Bu satırı kaldırdık */
  /* z-index: 1000; */      /* İsterseniz z-index’i de kaldırabilirsiniz */
  padding: 0.25rem 0;       /* Yüksekliği küçültmek için yukarı-aşağı boşluk */
}

.sd-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 1rem;
}

.sd-nav__logo {
  width: 225px;
  height: 75px;
  object-fit: contain;
}

/* --- Menü Öğeleri --- */
.sd-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.sd-nav__item {
  margin-left: 1.5rem;
}

.sd-nav__link {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  border-bottom: 2px solid transparent;  /* Başta görünmez çizgi */
  padding-bottom: 2px;                    /* Çizgi için boşluk */
  transition: color 0.3s, border-color 0.3s;
}
.sd-nav__link:hover {
  color: #2563eb;
  border-color: #2563eb;
}

/* --- Hamburger Butonu --- */
.sd-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.sd-nav__toggle-bar {
  height: 3px;
  border-radius: 2px;
  background-color: #333;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .sd-nav__menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    width: 200px;
    border: 1px solid #eaeaea;
    display: none;
  }
  .sd-nav__item {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .sd-nav__link {
    display: block;
    padding: 0.75rem 1rem;
  }
  .sd-nav__toggle {
    display: flex;
  }
  /* Açık menü sınıfı eklendiğinde gösterilir */
  .sd-nav__menu--open {
    display: flex;
  }
}
